From 475fd549c117e4bb0c11bb6d44a1dab74cdbdaa0 Mon Sep 17 00:00:00 2001 From: "Heesterman, Peter J" Date: Thu, 16 Jun 2022 14:49:49 +0100 Subject: [PATCH 1/4] Build ADURL with ci-scripts on Ubuntu using out GitLab server. --- .ci-local/adcore_hook.sh | 63 + .ci-local/adsupport_hook.sh | 33 + .ci-local/adurl_WINE_install.log | 30534 ++++++++++++++++++++++++++++ .ci-local/adurl_install.log | 30534 ++++++++++++++++++++++++++++ .ci-local/adurl_install.sh | 29 + .ci-local/adurl_install_Linux.log | 10573 ++++++++++ .ci-local/area_detector_hook.sh | 71 + .ci-local/hackmake.sh | 4 + .ci-local/stable.set | 23 + .gitlab-ci.yml | 107 + iocs/urlIOC/configure/RELEASE | 2 +- urlApp/src/Makefile | 5 + 12 files changed, 71977 insertions(+), 1 deletion(-) create mode 100644 .ci-local/adcore_hook.sh create mode 100644 .ci-local/adsupport_hook.sh create mode 100644 .ci-local/adurl_WINE_install.log create mode 100644 .ci-local/adurl_install.log create mode 100644 .ci-local/adurl_install.sh create mode 100644 .ci-local/adurl_install_Linux.log create mode 100644 .ci-local/area_detector_hook.sh create mode 100644 .ci-local/hackmake.sh create mode 100644 .ci-local/stable.set create mode 100644 .gitlab-ci.yml diff --git a/.ci-local/adcore_hook.sh b/.ci-local/adcore_hook.sh new file mode 100644 index 00000000..506aa6f1 --- /dev/null +++ b/.ci-local/adcore_hook.sh @@ -0,0 +1,63 @@ +#!/bin/bash + +# This script installs ADCore R3-11 +# +# check if user has right permissions +if [ "$(id -u)" != "0" ]; then + echo "Sorry, you are not root. Please try again using sudo." + exit 1 +fi + +# terminate script after first line that fails +set -e + +if [ -z "$EPICS_HOST_ARCH" ] +then + EPICS_HOST_ARCH=linux-x86_64 +fi + +# The directory above +SUPPORT="$(dirname "${PWD}")" + +# This won't have been set yet on the ADCore pass. +ADCORE=$PWD + +# This file will have been written by ci-scripts cue.py +source $SUPPORT/RELEASE.local + +# Hack RELEASE_LIBS.local file +sed -i -e "/^ADCORE\s*=/ s,=.*,=$ADCORE," $AREA_DETECTOR/configure/RELEASE_LIBS.local + +# Hack RELEASE_PRODS.local file +sed -i -e "/^ADCORE\s*=/ s,=.*,=$ADCORE," $AREA_DETECTOR/configure/RELEASE_PRODS.local + +# These are example plugin files, but we will just use them +if [ ! -f $ADCORE/iocBoot/commonPlugins.cmd ]; then + cp $ADCORE/iocBoot/EXAMPLE_commonPlugins.cmd $ADCORE/iocBoot/commonPlugins.cmd +fi + +# Hack commonPlugins.cmd - we need sseq_settings.req, which is in the calc module +sed -i "s/#set_requestfile_path(\"\$(CALC)\/calcApp\/Db\")/set_requestfile_path(\"\$(CALC)\/calcApp\/Db\")/" $ADCORE/iocBoot/commonPlugins.cmd +if [ ! -f $ADCORE/iocBoot/commonPlugin_settings.req ]; then + cp $ADCORE/iocBoot/EXAMPLE_commonPlugin_settings.req $ADCORE/iocBoot/commonPlugin_settings.req +fi + +# Hack the make file to allow multiple definition of `_Unwind_Resume on Linux. +# sed -i -e '/^include \$(TOP)\/ADApp\/commonLibraryMakefile/i ifeq (mingw, \$(findstring mingw, \$(T_A)))' $ADCORE/ADApp/pluginSrc/Makefile +# sed -i -e '/^include \$(TOP)\/ADApp\/commonLibraryMakefile/i \ \ USR_LDFLAGS += -Wl,-allow-multiple-definition' $ADCORE/ADApp/pluginSrc/Makefile +# sed -i -e '/^include \$(TOP)\/ADApp\/commonLibraryMakefile/i endif' $ADCORE/ADApp/pluginSrc/Makefile + + +if [ "$WINE" == "64" ]; then + if [ ! -f /usr/bin/x86_64-w64-mingw32-g++-win32 ]; then + apt-get install -y g++-mingw-w64-x86-64 + fi + # see https://github.com/randombit/botan/issues/2039 + update-alternatives --set x86_64-w64-mingw32-g++ /usr/bin/x86_64-w64-mingw32-g++-win32 +elif [ "$WINE" == "32" ]; then + if [ ! -f /usr/bin/i686-w64-mingw32-g++-win32 ]; then + apt-get install -y g++-mingw-w64-i686 + fi + update-alternatives --set i686-w64-mingw32-g++ /usr/bin/i686-w64-mingw32-g++-win32 +fi + diff --git a/.ci-local/adsupport_hook.sh b/.ci-local/adsupport_hook.sh new file mode 100644 index 00000000..408de4f5 --- /dev/null +++ b/.ci-local/adsupport_hook.sh @@ -0,0 +1,33 @@ +#!/bin/bash + +# This script configures ADSupport R1-9 +# +# check if user has right permissions +if [ "$(id -u)" != "0" ]; then + echo "Sorry, you are not root. Please try again using sudo." + exit 1 +fi + +# terminate script after first line that fails +set -e + +if [ -z "$EPICS_HOST_ARCH" ]; then + EPICS_HOST_ARCH=linux-x86_64 +fi +apt-get install -y libx11-dev libxext-dev + +# The directory above +SUPPORT="$(dirname "${PWD}")" + +# This won't have been set yet on the ADSupport pass. +ADSUPPORT=$PWD + +# This file will have been written by ci-scripts cue.py +source $SUPPORT/RELEASE.local + +# Hack RELEASE_LIBS.local file +sed -i -e "/^ADSUPPORT\s*=/ s,=.*,=$ADSUPPORT," $AREA_DETECTOR/configure/RELEASE_LIBS.local + +# Hack RELEASE_PRODS.local file +sed -i -e "/^ADSUPPORT\s*=/ s,=.*,=$ADSUPPORT," $AREA_DETECTOR/configure/RELEASE_PRODS.local + diff --git a/.ci-local/adurl_WINE_install.log b/.ci-local/adurl_WINE_install.log new file mode 100644 index 00000000..5a13c430 --- /dev/null +++ b/.ci-local/adurl_WINE_install.log @@ -0,0 +1,30534 @@ +DEBUG:__main__:Detected a build hosted on gitlab, using gcc on linux (x64) configured as shared-optimized (test: True, clean_deps: False) +Build using gcc compiler on linux (x64) hosted by gitlab +Python setup +2.7.18 (default, Mar 8 2021, 13:02:45) +[GCC 9.3.0] +PYTHONPATH + /builds/DATAnet/adurl/.ci + /usr/lib/python2.7 + /usr/lib/python2.7/plat-x86_64-linux-gnu + /usr/lib/python2.7/lib-tk + /usr/lib/python2.7/lib-old + /usr/lib/python2.7/lib-dynload + /usr/local/lib/python2.7/dist-packages + /usr/lib/python2.7/dist-packages +platform = linux-x86_64 +Opening setup file .ci-local/stable.set +DEBUG:__main__:.ci-local/stable.set: setup[MODULES] = sncseq sscan calc asyn autosave busy area_Detector ADSupport ADCore +DEBUG:__main__:.ci-local/stable.set: setup[BASE] = R7.0.3.1 +DEBUG:__main__:.ci-local/stable.set: setup[SNCSEQ] = R2-2-9 +DEBUG:__main__:.ci-local/stable.set: setup[SSCAN] = R2-11-5 +DEBUG:__main__:.ci-local/stable.set: setup[CALC] = R3-7-3 +DEBUG:__main__:.ci-local/stable.set: setup[ASYN] = R4-41 +DEBUG:__main__:.ci-local/stable.set: setup[BUSY] = R1-7-1 +DEBUG:__main__:.ci-local/stable.set: setup[AUTOSAVE] = R5-7-1 +DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR] = R3-10 +DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR_REPOURL] = https://github.com/areaDetector/areaDetector +DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR_RECURSIVE] = NO +DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR_HOOK] = .ci-local/area_detector_hook.sh +DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT] = master +DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT_REPOURL] = https://github.com/pheest/ADSupport +DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT_RECURSIVE] = NO +DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT_HOOK] = .ci-local/adsupport_hook.sh +DEBUG:__main__:.ci-local/stable.set: setup[ADCORE] = R3-10 +DEBUG:__main__:.ci-local/stable.set: setup[ADCORE_REPOURL] = https://github.com/areaDetector/ADCore +DEBUG:__main__:.ci-local/stable.set: setup[ADCORE_RECURSIVE] = NO +DEBUG:__main__:.ci-local/stable.set: setup[ADCORE_HOOK] = .ci-local/adcore_hook.sh +DEBUG:__main__:Done with setup file .ci-local/stable.set +Opening setup file .ci/defaults.set +DEBUG:__main__:.ci/defaults.set: setup[BASE_DIRNAME] = base +DEBUG:__main__:.ci/defaults.set: setup[BASE_REPONAME] = epics-base +DEBUG:__main__:.ci/defaults.set: setup[BASE_REPOOWNER] = epics-base +DEBUG:__main__:.ci/defaults.set: setup[BASE_VARNAME] = EPICS_BASE +DEBUG:__main__:.ci/defaults.set: setup[PVDATA_DIRNAME] = pvData +DEBUG:__main__:.ci/defaults.set: setup[PVDATA_REPONAME] = pvDataCPP +DEBUG:__main__:.ci/defaults.set: setup[PVDATA_REPOOWNER] = epics-base +DEBUG:__main__:.ci/defaults.set: setup[PVACCESS_DIRNAME] = pvAccess +DEBUG:__main__:.ci/defaults.set: setup[PVACCESS_REPONAME] = pvAccessCPP +DEBUG:__main__:.ci/defaults.set: setup[PVACCESS_REPOOWNER] = epics-base +DEBUG:__main__:.ci/defaults.set: setup[NTYPES_DIRNAME] = normativeTypes +DEBUG:__main__:.ci/defaults.set: setup[NTYPES_REPONAME] = normativeTypesCPP +DEBUG:__main__:.ci/defaults.set: setup[NTYPES_REPOOWNER] = epics-base +DEBUG:__main__:.ci/defaults.set: setup[SNCSEQ_REPOURL] = https://www-csr.bessy.de/control/SoftDist/sequencer/repo/branch-2-2.git +DEBUG:__main__:.ci/defaults.set: setup[SNCSEQ_DEPTH] = 0 +DEBUG:__main__:.ci/defaults.set: setup[SNCSEQ_DIRNAME] = seq +DEBUG:__main__:.ci/defaults.set: setup[STREAM_REPONAME] = StreamDevice +DEBUG:__main__:.ci/defaults.set: setup[STREAM_REPOOWNER] = paulscherrerinstitute +DEBUG:__main__:Done with setup file .ci/defaults.set +DEBUG:__main__:ENV assignment: BASE_RECURSIVE = YES +DEBUG:__main__:Loaded setup +DEBUG:__main__: ADCORE = "R3-10" +DEBUG:__main__: ADCORE_DEPTH = "-1" +DEBUG:__main__: ADCORE_DIRNAME = "adcore" +DEBUG:__main__: ADCORE_HOOK = ".ci-local/adcore_hook.sh" +DEBUG:__main__: ADCORE_RECURSIVE = "NO" +DEBUG:__main__: ADCORE_REPONAME = "adcore" +DEBUG:__main__: ADCORE_REPOOWNER = "epics-modules" +DEBUG:__main__: ADCORE_REPOURL = "https://github.com/areaDetector/ADCore" +DEBUG:__main__: ADCORE_VARNAME = "ADCORE" +DEBUG:__main__: ADD_MODULES = "" +DEBUG:__main__: ADSUPPORT = "master" +DEBUG:__main__: ADSUPPORT_DEPTH = "-1" +DEBUG:__main__: ADSUPPORT_DIRNAME = "adsupport" +DEBUG:__main__: ADSUPPORT_HOOK = ".ci-local/adsupport_hook.sh" +DEBUG:__main__: ADSUPPORT_RECURSIVE = "NO" +DEBUG:__main__: ADSUPPORT_REPONAME = "adsupport" +DEBUG:__main__: ADSUPPORT_REPOOWNER = "epics-modules" +DEBUG:__main__: ADSUPPORT_REPOURL = "https://github.com/pheest/ADSupport" +DEBUG:__main__: ADSUPPORT_VARNAME = "ADSUPPORT" +DEBUG:__main__: AREA_DETECTOR = "R3-10" +DEBUG:__main__: AREA_DETECTOR_DEPTH = "-1" +DEBUG:__main__: AREA_DETECTOR_DIRNAME = "area_detector" +DEBUG:__main__: AREA_DETECTOR_HOOK = ".ci-local/area_detector_hook.sh" +DEBUG:__main__: AREA_DETECTOR_RECURSIVE = "NO" +DEBUG:__main__: AREA_DETECTOR_REPONAME = "area_detector" +DEBUG:__main__: AREA_DETECTOR_REPOOWNER = "epics-modules" +DEBUG:__main__: AREA_DETECTOR_REPOURL = "https://github.com/areaDetector/areaDetector" +DEBUG:__main__: AREA_DETECTOR_VARNAME = "AREA_DETECTOR" +DEBUG:__main__: ASYN = "R4-41" +DEBUG:__main__: ASYN_DEPTH = "-1" +DEBUG:__main__: ASYN_DIRNAME = "asyn" +DEBUG:__main__: ASYN_RECURSIVE = "YES" +DEBUG:__main__: ASYN_REPONAME = "asyn" +DEBUG:__main__: ASYN_REPOOWNER = "epics-modules" +DEBUG:__main__: ASYN_REPOURL = "https://github.com/epics-modules/asyn.git" +DEBUG:__main__: ASYN_VARNAME = "ASYN" +DEBUG:__main__: AUTOSAVE = "R5-7-1" +DEBUG:__main__: AUTOSAVE_DEPTH = "-1" +DEBUG:__main__: AUTOSAVE_DIRNAME = "autosave" +DEBUG:__main__: AUTOSAVE_RECURSIVE = "YES" +DEBUG:__main__: AUTOSAVE_REPONAME = "autosave" +DEBUG:__main__: AUTOSAVE_REPOOWNER = "epics-modules" +DEBUG:__main__: AUTOSAVE_REPOURL = "https://github.com/epics-modules/autosave.git" +DEBUG:__main__: AUTOSAVE_VARNAME = "AUTOSAVE" +DEBUG:__main__: BASE = "R7.0.3.1" +DEBUG:__main__: BASE_DEPTH = "-1" +DEBUG:__main__: BASE_DIRNAME = "base" +DEBUG:__main__: BASE_RECURSIVE = "YES" +DEBUG:__main__: BASE_REPONAME = "epics-base" +DEBUG:__main__: BASE_REPOOWNER = "epics-base" +DEBUG:__main__: BASE_REPOURL = "https://github.com/epics-base/epics-base.git" +DEBUG:__main__: BASE_VARNAME = "EPICS_BASE" +DEBUG:__main__: BUSY = "R1-7-1" +DEBUG:__main__: BUSY_DEPTH = "-1" +DEBUG:__main__: BUSY_DIRNAME = "busy" +DEBUG:__main__: BUSY_RECURSIVE = "YES" +DEBUG:__main__: BUSY_REPONAME = "busy" +DEBUG:__main__: BUSY_REPOOWNER = "epics-modules" +DEBUG:__main__: BUSY_REPOURL = "https://github.com/epics-modules/busy.git" +DEBUG:__main__: BUSY_VARNAME = "BUSY" +DEBUG:__main__: CALC = "R3-7-3" +DEBUG:__main__: CALC_DEPTH = "-1" +DEBUG:__main__: CALC_DIRNAME = "calc" +DEBUG:__main__: CALC_RECURSIVE = "YES" +DEBUG:__main__: CALC_REPONAME = "calc" +DEBUG:__main__: CALC_REPOOWNER = "epics-modules" +DEBUG:__main__: CALC_REPOURL = "https://github.com/epics-modules/calc.git" +DEBUG:__main__: CALC_VARNAME = "CALC" +DEBUG:__main__: MODULES = "sncseq sscan calc asyn autosave busy area_Detector ADSupport ADCore" +DEBUG:__main__: NTYPES_DIRNAME = "normativeTypes" +DEBUG:__main__: NTYPES_REPONAME = "normativeTypesCPP" +DEBUG:__main__: NTYPES_REPOOWNER = "epics-base" +DEBUG:__main__: PVACCESS_DIRNAME = "pvAccess" +DEBUG:__main__: PVACCESS_REPONAME = "pvAccessCPP" +DEBUG:__main__: PVACCESS_REPOOWNER = "epics-base" +DEBUG:__main__: PVDATA_DIRNAME = "pvData" +DEBUG:__main__: PVDATA_REPONAME = "pvDataCPP" +DEBUG:__main__: PVDATA_REPOOWNER = "epics-base" +DEBUG:__main__: REPOOWNER = "epics-modules" +DEBUG:__main__: SNCSEQ = "R2-2-9" +DEBUG:__main__: SNCSEQ_DEPTH = "0" +DEBUG:__main__: SNCSEQ_DIRNAME = "seq" +DEBUG:__main__: SNCSEQ_RECURSIVE = "YES" +DEBUG:__main__: SNCSEQ_REPONAME = "sncseq" +DEBUG:__main__: SNCSEQ_REPOOWNER = "epics-modules" +DEBUG:__main__: SNCSEQ_REPOURL = "https://www-csr.bessy.de/control/SoftDist/sequencer/repo/branch-2-2.git" +DEBUG:__main__: SNCSEQ_VARNAME = "SNCSEQ" +DEBUG:__main__: SSCAN = "R2-11-5" +DEBUG:__main__: SSCAN_DEPTH = "-1" +DEBUG:__main__: SSCAN_DIRNAME = "sscan" +DEBUG:__main__: SSCAN_RECURSIVE = "YES" +DEBUG:__main__: SSCAN_REPONAME = "sscan" +DEBUG:__main__: SSCAN_REPOOWNER = "epics-modules" +DEBUG:__main__: SSCAN_REPOURL = "https://github.com/epics-modules/sscan.git" +DEBUG:__main__: SSCAN_VARNAME = "SSCAN" +DEBUG:__main__: STREAM_REPONAME = "StreamDevice" +DEBUG:__main__: STREAM_REPOOWNER = "paulscherrerinstitute" +DEBUG:__main__:Effective module list: ['BASE', 'SNCSEQ', 'SSCAN', 'CALC', 'ASYN', 'AUTOSAVE', 'BUSY', 'AREA_DETECTOR', 'ADSUPPORT', 'ADCORE'] +DEBUG:__main__:EXEC 'git config --global advice.detachedHead false' in /builds/DATAnet/adurl +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Adding dependency BASE with tag R7.0.3.1 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-base/epics-base.git R7.0.3.1' in /builds/DATAnet/adurl +9cd04f577222ab0eecae23dfc143d1c494d06e2e refs/tags/R7.0.3.1 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency BASE: directory /builds/DATAnet/adurl/.cache/base-R7.0.3.1 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit 34834dfe973a577f342503441e7b33b7fe322de5, git head is 34834dfe973a577f342503441e7b33b7fe322de5 +Found R7.0.3.1 of dependency BASE up-to-date in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 +DEBUG:__main__:RELEASE.local does not exist, creating it +DEBUG:__main__:Opening RELEASE.local for adding 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding new definition: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency SNCSEQ with tag R2-2-9 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://www-csr.bessy.de/control/SoftDist/sequencer/repo/branch-2-2.git R2-2-9' in /builds/DATAnet/adurl +b21d8a8763599326115ebbba6c62905d814b3ccb refs/tags/R2-2-9 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency SNCSEQ: directory /builds/DATAnet/adurl/.cache/seq-R2-2-9 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/seq-R2-2-9 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit e5e361509df1c0d3c667872243d8f7a9894514b4, git head is e5e361509df1c0d3c667872243d8f7a9894514b4 +Found R2-2-9 of dependency SNCSEQ up-to-date in /builds/DATAnet/adurl/.cache/seq-R2-2-9 +DEBUG:__main__:Opening RELEASE.local for adding 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency SSCAN with tag R2-11-5 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/sscan.git R2-11-5' in /builds/DATAnet/adurl +f4ed91fa90d81eee5ba92d0d0c00d8d5d0b269da refs/tags/R2-11-5 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency SSCAN: directory /builds/DATAnet/adurl/.cache/sscan-R2-11-5 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/sscan-R2-11-5 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit f4ed91fa90d81eee5ba92d0d0c00d8d5d0b269da, git head is f4ed91fa90d81eee5ba92d0d0c00d8d5d0b269da +Found R2-11-5 of dependency SSCAN up-to-date in /builds/DATAnet/adurl/.cache/sscan-R2-11-5 +DEBUG:__main__:Opening RELEASE.local for adding 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency CALC with tag R3-7-3 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/calc.git R3-7-3' in /builds/DATAnet/adurl +2a3ceff7afee73fd82a2c60d637611020cb65bca refs/tags/R3-7-3 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency CALC: directory /builds/DATAnet/adurl/.cache/calc-R3-7-3 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/calc-R3-7-3 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit 2a3ceff7afee73fd82a2c60d637611020cb65bca, git head is 2a3ceff7afee73fd82a2c60d637611020cb65bca +Found R3-7-3 of dependency CALC up-to-date in /builds/DATAnet/adurl/.cache/calc-R3-7-3 +DEBUG:__main__:Opening RELEASE.local for adding 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency ASYN with tag R4-41 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/asyn.git R4-41' in /builds/DATAnet/adurl +0c70f16c4b27f6717920f40e8c8e0fb2182cac64 refs/tags/R4-41 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency ASYN: directory /builds/DATAnet/adurl/.cache/asyn-R4-41 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/asyn-R4-41 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit 0c70f16c4b27f6717920f40e8c8e0fb2182cac64, git head is 0c70f16c4b27f6717920f40e8c8e0fb2182cac64 +Found R4-41 of dependency ASYN up-to-date in /builds/DATAnet/adurl/.cache/asyn-R4-41 +DEBUG:__main__:Opening RELEASE.local for adding 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency AUTOSAVE with tag R5-7-1 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/autosave.git R5-7-1' in /builds/DATAnet/adurl +31e041c2ba4e0212f11ce5cf5541b572d1d1e887 refs/tags/R5-7-1 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency AUTOSAVE: directory /builds/DATAnet/adurl/.cache/autosave-R5-7-1 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/autosave-R5-7-1 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit 31e041c2ba4e0212f11ce5cf5541b572d1d1e887, git head is 31e041c2ba4e0212f11ce5cf5541b572d1d1e887 +Found R5-7-1 of dependency AUTOSAVE up-to-date in /builds/DATAnet/adurl/.cache/autosave-R5-7-1 +DEBUG:__main__:Opening RELEASE.local for adding 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency BUSY with tag R1-7-1 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/busy.git R1-7-1' in /builds/DATAnet/adurl +adb6da968ceac134d4d67be495e9f196c31a1b3d refs/tags/R1-7-1 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency BUSY: directory /builds/DATAnet/adurl/.cache/busy-R1-7-1 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/busy-R1-7-1 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit adb6da968ceac134d4d67be495e9f196c31a1b3d, git head is adb6da968ceac134d4d67be495e9f196c31a1b3d +Found R1-7-1 of dependency BUSY up-to-date in /builds/DATAnet/adurl/.cache/busy-R1-7-1 +DEBUG:__main__:Opening RELEASE.local for adding 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency AREA_DETECTOR with tag R3-10 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/areaDetector/areaDetector R3-10' in /builds/DATAnet/adurl +9739d42659d180f88e08104cad4d02cbd414a75f refs/tags/R3-10 +DEBUG:__main__:EXEC DONE +Cloning R3-10 of dependency AREA_DETECTOR into /builds/DATAnet/adurl/.cache/area_detector-R3-10 +DEBUG:__main__:EXEC 'git clone --quiet --depth 5 --branch R3-10 https://github.com/areaDetector/areaDetector area_detector-R3-10' in /builds/DATAnet/adurl/.cache +DEBUG:__main__:EXEC DONE +commit 9739d42659d180f88e08104cad4d02cbd414a75f +Author: Mark Rivers +Date: Sun Sep 20 15:28:44 2020 -0500 + + Notes for R3-10 +DEBUG:__main__:Setting do_recompile = True (all following modules will be recompiled +Running hook .ci-local/area_detector_hook.sh in /builds/DATAnet/adurl/.cache/area_detector-R3-10 +Reading package lists... +Building dependency tree... +Reading state information... +libxext-dev is already the newest version (2:1.3.4-0ubuntu1). +libx11-dev is already the newest version (2:1.6.9-2ubuntu1.2). +The following package was automatically installed and is no longer required: + libfwupdplugin1 +Use 'sudo apt autoremove' to remove it. +0 to upgrade, 0 to newly install, 0 to remove and 8 not to upgrade. +/builds/DATAnet/adurl/.cache/area_detector-R3-10/configure /builds/DATAnet/adurl/.cache/area_detector-R3-10 +Copying from example. +/builds/DATAnet/adurl/.cache/area_detector-R3-10 +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/area_detector-R3-10 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Writing hash of checked-out dependency (9739d42659d180f88e08104cad4d02cbd414a75f) to marker file +DEBUG:__main__:Opening RELEASE.local for adding 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency ADSUPPORT with tag master +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/pheest/ADSupport master' in /builds/DATAnet/adurl +1b5b589b560b90fb37d152ed7440aef4162119b5 refs/heads/master +DEBUG:__main__:EXEC DONE +Cloning master of dependency ADSUPPORT into /builds/DATAnet/adurl/.cache/adsupport-master +DEBUG:__main__:EXEC 'git clone --quiet --depth 5 --branch master https://github.com/pheest/ADSupport adsupport-master' in /builds/DATAnet/adurl/.cache +DEBUG:__main__:EXEC DONE +commit 1b5b589b560b90fb37d152ed7440aef4162119b5 +Author: Heesterman, Peter J +Date: Thu May 19 16:55:57 2022 +0100 + + Need to define XMLPUBFUN __declspec(dllimport) for DLL importing builds. + There's no need for any difference between Visual Studio and MingW build defines. +DEBUG:__main__:Setting do_recompile = True (all following modules will be recompiled +Running hook .ci-local/adsupport_hook.sh in /builds/DATAnet/adurl/.cache/adsupport-master +Reading package lists... +Building dependency tree... +Reading state information... +libxext-dev is already the newest version (2:1.3.4-0ubuntu1). +libx11-dev is already the newest version (2:1.6.9-2ubuntu1.2). +The following package was automatically installed and is no longer required: + libfwupdplugin1 +Use 'sudo apt autoremove' to remove it. +0 to upgrade, 0 to newly install, 0 to remove and 8 not to upgrade. +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/adsupport-master +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Writing hash of checked-out dependency (1b5b589b560b90fb37d152ed7440aef4162119b5) to marker file +DEBUG:__main__:Opening RELEASE.local for adding 'ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency ADCORE with tag R3-10 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/areaDetector/ADCore R3-10' in /builds/DATAnet/adurl +7fd8c0f2f3c96083193d5eaee61e85ea5f5e9fe1 refs/tags/R3-10 +DEBUG:__main__:EXEC DONE +Cloning R3-10 of dependency ADCORE into /builds/DATAnet/adurl/.cache/adcore-R3-10 +DEBUG:__main__:EXEC 'git clone --quiet --depth 5 --branch R3-10 https://github.com/areaDetector/ADCore adcore-R3-10' in /builds/DATAnet/adurl/.cache +DEBUG:__main__:EXEC DONE +commit 7fd8c0f2f3c96083193d5eaee61e85ea5f5e9fe1 +Author: Mark Rivers +Date: Sun Sep 20 12:35:28 2020 -0500 + + Notes for R3-10 +DEBUG:__main__:Setting do_recompile = True (all following modules will be recompiled +Running hook .ci-local/adcore_hook.sh in /builds/DATAnet/adurl/.cache/adcore-R3-10 +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/adcore-R3-10 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Writing hash of checked-out dependency (7fd8c0f2f3c96083193d5eaee61e85ea5f5e9fe1) to marker file +DEBUG:__main__:Opening RELEASE.local for adding 'ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-10' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' +DEBUG:__main__:Writing line to RELEASE.local: 'ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-10' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Setting up the build environment +DEBUG:__main__:Using EPICS Base at /builds/DATAnet/adurl/.cache/base-R7.0.3.1 +DEBUG:__main__:Running script to detect EPICS host architecture in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 +DEBUG:__main__:/builds/DATAnet/adurl/.cache/base-R7.0.3.1/src/tools/EpicsHostArch.pl returned: linux-x86_64 +DEBUG:__main__:Check if EPICS Base is a 3.14 series: False +DEBUG:__main__:Check if make is a 3.x series: False +EPICS_HOST_ARCH = linux-x86_64 +$ make --version +DEBUG:__main__:EXEC 'make --version' in /builds/DATAnet/adurl +GNU Make 4.2.1 +Built for x86_64-pc-linux-gnu +Copyright (C) 1988-2016 Free Software Foundation, Inc. +Licence GPLv3+: GNU GPL version 3 or later +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law. +DEBUG:__main__:EXEC DONE +$ perl --version + +This is perl 5, version 30, subversion 0 (v5.30.0) built for x86_64-linux-gnu-thread-multi +(with 50 registered patches, see perl -V for more detail) + +Copyright 1987-2019, Larry Wall + +Perl may be copied only under the terms of either the Artistic License or the +GNU General Public License, which may be found in the Perl 5 source kit. + +Complete documentation for Perl, including FAQ lists, should be found on +this system using "man perl" or "perldoc perl". If you have access to the +Internet, point your browser at http://www.perl.org/, the Perl Home Page. + +$ gcc --version +gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 +Copyright (C) 2019 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. + +$ g++ --version +g++ (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 +Copyright (C) 2019 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. + +SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9 +SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5 +CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3 +ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41 +AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1 +BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1 +AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10 +ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master +ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-10 +EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1 + +-include $(TOP)/../RELEASE.local + +-include $(TOP)/../RELEASE.local + +9739d42659d180f88e08104cad4d02cbd414a75f + +7fd8c0f2f3c96083193d5eaee61e85ea5f5e9fe1 + +1b5b589b560b90fb37d152ed7440aef4162119b5 + +-include $(TOP)/../RELEASE.local + +DEBUG:__main__:EXEC 'make -j2 -Otarget' in /builds/DATAnet/adurl/.cache/area_detector-R3-10 +Building dependency AREA_DETECTOR in /builds/DATAnet/adurl/.cache/area_detector-R3-10 +make -C /builds/DATAnet/adurl/.cache/adsupport-master install +make -C ./configure install +make -C ./supportApp install +make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../.. +make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' +make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../.. +make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' +make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' +mkdir -p O.Common +make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' +make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ + T_A=linux-x86_64 install +make -C ./jpegSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease +make -C O.windows-x64-mingw -f ../Makefile TOP=../.. \ + T_A=windows-x64-mingw install +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompressJPEG.d ../decompressJPEG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemnobs.d ../jmemnobs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemmgr.d ../jmemmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jutils.d ../jutils.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant2.d ../jquant2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant1.d ../jquant1.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctfst.d ../jidctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctint.d ../jidctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctflt.d ../jidctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctint.d ../jfdctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctfst.d ../jfdctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctflt.d ../jfdctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jerror.d ../jerror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdtrans.d ../jdtrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdsample.d ../jdsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdpostct.d ../jdpostct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmerge.d ../jdmerge.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmaster.d ../jdmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmarker.d ../jdmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmainct.d ../jdmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdinput.d ../jdinput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdhuff.d ../jdhuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jddctmgr.d ../jddctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcolor.d ../jdcolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcoefct.d ../jdcoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatasrc.d ../jdatasrc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatadst.d ../jdatadst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdarith.d ../jdarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapistd.d ../jdapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapimin.d ../jdapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jctrans.d ../jctrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcsample.d ../jcsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcprepct.d ../jcprepct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcparam.d ../jcparam.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcomapi.d ../jcomapi.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmaster.d ../jcmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmarker.d ../jcmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmainct.d ../jcmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcinit.d ../jcinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jchuff.d ../jchuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcdctmgr.d ../jcdctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccolor.d ../jccolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccoefct.d ../jccoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcarith.d ../jcarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapistd.d ../jcapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapimin.d ../jcapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make -C ./zlibSrc install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jaricom.d ../jaricom.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zutil.d ../zutil.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uncompr.d ../uncompr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +mkdir ../../../include +mkdir ../../../include/os +mkdir ../../../include/os/Linux +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF trees.d ../trees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inftrees.d ../inftrees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inflate.d ../inflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inffast.d ../inffast.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF infback.d ../infback.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzwrite.d ../gzwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzread.d ../gzread.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzlib.d ../gzlib.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzclose.d ../gzclose.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF deflate.d ../deflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crc32.d ../crc32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d ../compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF adler32.d ../adler32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../decompressJPEG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jaricom.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../adler32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../crc32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jccoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jccolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../deflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcdctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzclose.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzlib.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzread.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jchuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../infback.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../inffast.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcomapi.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../inflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcparam.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../inftrees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcprepct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../trees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../uncompr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../zutil.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jctrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +/usr/bin/ar -rc libzlib.a adler32.o compress.o crc32.o deflate.o gzclose.o gzlib.o gzread.o gzwrite.o infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +/usr/bin/ranlib libzlib.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +g++ -o libzlib.so -shared -fPIC -Wl,-hlibzlib.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 adler32.o compress.o crc32.o deflate.o gzclose.o gzlib.o gzread.o gzwrite.o infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdatadst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zutil.d -MT zutil.obj ../zutil.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uncompr.d -MT uncompr.obj ../uncompr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdatasrc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF trees.d -MT trees.obj ../trees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inftrees.d -MT inftrees.obj ../inftrees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inflate.d -MT inflate.obj ../inflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inffast.d -MT inffast.obj ../inffast.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF infback.d -MT infback.obj ../infback.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzwrite.d -MT gzwrite.obj ../gzwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzread.d -MT gzread.obj ../gzread.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzlib.d -MT gzlib.obj ../gzlib.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzclose.d -MT gzclose.obj ../gzclose.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF deflate.d -MT deflate.obj ../deflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crc32.d -MT crc32.obj ../crc32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d -MT compress.obj ../compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdcoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF adler32.d -MT adler32.obj ../adler32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +mkdir ../../../include/os/WIN32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdcolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o adler32.obj -c ../adler32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o compress.obj -c ../compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jddctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o crc32.obj -c ../crc32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdhuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdinput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o deflate.obj -c ../deflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o gzclose.obj -c ../gzclose.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o gzlib.obj -c ../gzlib.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o gzread.obj -c ../gzread.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o gzwrite.obj -c ../gzwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o infback.obj -c ../infback.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmerge.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdpostct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o inffast.obj -c ../inffast.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdtrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jerror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jfdctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jfdctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o inflate.obj -c ../inflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o inftrees.obj -c ../inftrees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o trees.obj -c ../trees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o uncompr.obj -c ../uncompr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zutil.obj -c ../zutil.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o zlib.dll -shared -Wl,--out-implib,libzlib.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +mkdir ../../../bin +mkdir ../../../bin/windows-x64-mingw +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make -C ./szipSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF sz_api.d ../sz_api.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF rice.d ../rice.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d ../encoding.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jfdctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../encoding.c +../encoding.c:16:15: warning: ‘szip_encoder_status’ initialized and declared ‘extern’ + 16 | extern char * szip_encoder_status = "SZIP ENCODER ENABLED"; + | ^~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jidctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jidctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jidctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jquant1.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jquant2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jutils.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jmemmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jmemnobs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../rice.c +../rice.c: In function ‘encode_scanline’: +../rice.c:1478:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1478 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1479:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1479 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1480:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1480 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1481:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1481 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1482:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1482 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1483:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1483 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1484:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1484 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1492:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1492 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1519:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1519 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1520:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1520 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1521:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1521 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1522:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1522 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1523:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1523 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1524:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1524 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1525:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1525 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1533:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1533 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1560:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1560 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1561:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1561 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1562:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1562 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1563:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1563 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1567:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1567 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1568:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1568 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1576:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1576 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1603:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1603 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1604:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1604 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1605:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1605 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1609:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1609 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1610:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1610 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1611:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1611 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1619:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1619 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1646:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1646 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1647:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1647 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1651:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1651 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1652:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1652 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1656:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1656 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1664:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1664 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1689:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1689 | value = (value << 6) | *s++ & 0x3f; + | ~~~~~^~~~~~ +../rice.c:1706:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1706 | value = (value << 7) | *s++ & 0x7f; + | ~~~~~^~~~~~ +../rice.c:1723:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1723 | value = (value << 8) | *s++ & 0xff; + | ~~~~~^~~~~~ +../rice.c: In function ‘rice_decode’: +../rice.c:4977:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4977 | *(s+1) = (*(s+1) << 1) | (data_word >> 30) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4978:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4978 | *(s+2) = (*(s+2) << 1) | (data_word >> 29) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4979:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4979 | *(s+3) = (*(s+3) << 1) | (data_word >> 28) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4980:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4980 | *(s+4) = (*(s+4) << 1) | (data_word >> 27) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4981:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4981 | *(s+5) = (*(s+5) << 1) | (data_word >> 26) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4982:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4982 | *(s+6) = (*(s+6) << 1) | (data_word >> 25) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4983:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4983 | *(s+7) = (*(s+7) << 1) | (data_word >> 24) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4998:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4998 | *(s+0) = (*(s+0) << 2) | (data_word >> 30) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4999:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4999 | *(s+1) = (*(s+1) << 2) | (data_word >> 28) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5000:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5000 | *(s+2) = (*(s+2) << 2) | (data_word >> 26) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5001:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5001 | *(s+3) = (*(s+3) << 2) | (data_word >> 24) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5002:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5002 | *(s+4) = (*(s+4) << 2) | (data_word >> 22) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5003:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5003 | *(s+5) = (*(s+5) << 2) | (data_word >> 20) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5004:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5004 | *(s+6) = (*(s+6) << 2) | (data_word >> 18) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5005:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5005 | *(s+7) = (*(s+7) << 2) | (data_word >> 16) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5017:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5017 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5018:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5018 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5019:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5019 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5020:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5020 | *(s+3) = (*(s+3) << 3) | (data_word >> 20) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5021:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5021 | *(s+4) = (*(s+4) << 3) | (data_word >> 17) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5031:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5031 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5032:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5032 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5033:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5033 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5048:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5048 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5049:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5049 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5050:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5050 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5051:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5051 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5058:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5058 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5059:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5059 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5060:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5060 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5061:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5061 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5073:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5073 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5074:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5074 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5075:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5075 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5085:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5085 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5086:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5086 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5087:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5087 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5097:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5097 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5098:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5098 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5113:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5113 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5114:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5114 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5124:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5124 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5125:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5125 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5135:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5135 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5136:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5136 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5146:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5146 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5147:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5147 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5162:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5162 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5163:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5163 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5173:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5173 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5174:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5174 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5184:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5184 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5185:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5185 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5195:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5195 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5196:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5196 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5211:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5211 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5212:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5212 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5219:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5219 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5220:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5220 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5227:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5227 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5228:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5228 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5235:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5235 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5236:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5236 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5358:8: warning: ‘ext2_bit’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 5358 | if (ext2_bit) + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +/usr/bin/ar -rc libjpeg.a jaricom.o jcapimin.o jcapistd.o jcarith.o jccoefct.o jccolor.o jcdctmgr.o jchuff.o jcinit.o jcmainct.o jcmarker.o jcmaster.o jcomapi.o jcparam.o jcprepct.o jcsample.o jctrans.o jdapimin.o jdapistd.o jdarith.o jdatadst.o jdatasrc.o jdcoefct.o jdcolor.o jddctmgr.o jdhuff.o jdinput.o jdmainct.o jdmarker.o jdmaster.o jdmerge.o jdpostct.o jdsample.o jdtrans.o jerror.o jfdctflt.o jfdctfst.o jfdctint.o jidctflt.o jidctfst.o jidctint.o jquant1.o jquant2.o jutils.o jmemmgr.o jmemnobs.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +/usr/bin/ranlib libjpeg.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../sz_api.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +g++ -o libjpeg.so -shared -fPIC -Wl,-hlibjpeg.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jaricom.o jcapimin.o jcapistd.o jcarith.o jccoefct.o jccolor.o jcdctmgr.o jchuff.o jcinit.o jcmainct.o jcmarker.o jcmaster.o jcomapi.o jcparam.o jcprepct.o jcsample.o jctrans.o jdapimin.o jdapistd.o jdarith.o jdatadst.o jdatasrc.o jdcoefct.o jdcolor.o jddctmgr.o jdhuff.o jdinput.o jdmainct.o jdmarker.o jdmaster.o jdmerge.o jdpostct.o jdsample.o jdtrans.o jerror.o jfdctflt.o jfdctfst.o jfdctint.o jidctflt.o jidctfst.o jidctint.o jquant1.o jquant2.o jutils.o jmemmgr.o jmemnobs.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +/usr/bin/ar -rc libszip.a encoding.o rice.o sz_api.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +/usr/bin/ranlib libszip.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +g++ -o libszip.so -shared -fPIC -Wl,-hlibszip.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 encoding.o rice.o sz_api.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +/usr/bin/ar -rc libdecompressJPEG.a decompressJPEG.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +/usr/bin/ranlib libdecompressJPEG.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +g++ -o libdecompressJPEG.so -shared -fPIC -Wl,-hlibdecompressJPEG.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 decompressJPEG.o -ljpeg -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF sz_api.d -MT sz_api.obj ../sz_api.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF rice.d -MT rice.obj ../rice.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompressJPEG.d -MT decompressJPEG.obj ../decompressJPEG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemnobs.d -MT jmemnobs.obj ../jmemnobs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d -MT encoding.obj ../encoding.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemmgr.d -MT jmemmgr.obj ../jmemmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jutils.d -MT jutils.obj ../jutils.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant2.d -MT jquant2.obj ../jquant2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant1.d -MT jquant1.obj ../jquant1.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctint.d -MT jidctint.obj ../jidctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctfst.d -MT jidctfst.obj ../jidctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctflt.d -MT jidctflt.obj ../jidctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctint.d -MT jfdctint.obj ../jfdctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctfst.d -MT jfdctfst.obj ../jfdctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctflt.d -MT jfdctflt.obj ../jfdctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o encoding.obj -c ../encoding.c +../encoding.c:16:15: warning: ‘szip_encoder_status’ initialized and declared ‘extern’ + 16 | extern char * szip_encoder_status = "SZIP ENCODER ENABLED"; + | ^~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jerror.d -MT jerror.obj ../jerror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdtrans.d -MT jdtrans.obj ../jdtrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdsample.d -MT jdsample.obj ../jdsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdpostct.d -MT jdpostct.obj ../jdpostct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmerge.d -MT jdmerge.obj ../jdmerge.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmaster.d -MT jdmaster.obj ../jdmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmarker.d -MT jdmarker.obj ../jdmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmainct.d -MT jdmainct.obj ../jdmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdinput.d -MT jdinput.obj ../jdinput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdhuff.d -MT jdhuff.obj ../jdhuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jddctmgr.d -MT jddctmgr.obj ../jddctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcolor.d -MT jdcolor.obj ../jdcolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcoefct.d -MT jdcoefct.obj ../jdcoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatasrc.d -MT jdatasrc.obj ../jdatasrc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatadst.d -MT jdatadst.obj ../jdatadst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdarith.d -MT jdarith.obj ../jdarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapistd.d -MT jdapistd.obj ../jdapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapimin.d -MT jdapimin.obj ../jdapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jctrans.d -MT jctrans.obj ../jctrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcsample.d -MT jcsample.obj ../jcsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcprepct.d -MT jcprepct.obj ../jcprepct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcparam.d -MT jcparam.obj ../jcparam.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcomapi.d -MT jcomapi.obj ../jcomapi.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmaster.d -MT jcmaster.obj ../jcmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmarker.d -MT jcmarker.obj ../jcmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmainct.d -MT jcmainct.obj ../jcmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcinit.d -MT jcinit.obj ../jcinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jchuff.d -MT jchuff.obj ../jchuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcdctmgr.d -MT jcdctmgr.obj ../jcdctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccolor.d -MT jccolor.obj ../jccolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccoefct.d -MT jccoefct.obj ../jccoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcarith.d -MT jcarith.obj ../jcarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapistd.d -MT jcapistd.obj ../jcapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapimin.d -MT jcapimin.obj ../jcapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jaricom.d -MT jaricom.obj ../jaricom.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Circular libjpeg.dll.a <- decompressJPEG.dll dependency dropped. +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jaricom.obj -c ../jaricom.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcapimin.obj -c ../jcapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcapistd.obj -c ../jcapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcarith.obj -c ../jcarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jccoefct.obj -c ../jccoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jccolor.obj -c ../jccolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcdctmgr.obj -c ../jcdctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jchuff.obj -c ../jchuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcinit.obj -c ../jcinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcmainct.obj -c ../jcmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o rice.obj -c ../rice.c +../rice.c: In function ‘encode_scanline’: +../rice.c:1478:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1478 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1479:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1479 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1480:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1480 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1481:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1481 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1482:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1482 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1483:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1483 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1484:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1484 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1492:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1492 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1519:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1519 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1520:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1520 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1521:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1521 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1522:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1522 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1523:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1523 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1524:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1524 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1525:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1525 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1533:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1533 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1560:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1560 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1561:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1561 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1562:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1562 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1563:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1563 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1567:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1567 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1568:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1568 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1576:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1576 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1603:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1603 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1604:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1604 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1605:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1605 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1609:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1609 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1610:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1610 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1611:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1611 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1619:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1619 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1646:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1646 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1647:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1647 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1651:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1651 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1652:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1652 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1656:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1656 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1664:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1664 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1689:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1689 | value = (value << 6) | *s++ & 0x3f; + | ~~~~~^~~~~~ +../rice.c:1706:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1706 | value = (value << 7) | *s++ & 0x7f; + | ~~~~~^~~~~~ +../rice.c:1723:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1723 | value = (value << 8) | *s++ & 0xff; + | ~~~~~^~~~~~ +../rice.c: In function ‘rice_decode’: +../rice.c:4977:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4977 | *(s+1) = (*(s+1) << 1) | (data_word >> 30) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4978:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4978 | *(s+2) = (*(s+2) << 1) | (data_word >> 29) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4979:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4979 | *(s+3) = (*(s+3) << 1) | (data_word >> 28) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4980:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4980 | *(s+4) = (*(s+4) << 1) | (data_word >> 27) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4981:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4981 | *(s+5) = (*(s+5) << 1) | (data_word >> 26) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4982:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4982 | *(s+6) = (*(s+6) << 1) | (data_word >> 25) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4983:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4983 | *(s+7) = (*(s+7) << 1) | (data_word >> 24) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4998:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4998 | *(s+0) = (*(s+0) << 2) | (data_word >> 30) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4999:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4999 | *(s+1) = (*(s+1) << 2) | (data_word >> 28) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5000:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5000 | *(s+2) = (*(s+2) << 2) | (data_word >> 26) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5001:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5001 | *(s+3) = (*(s+3) << 2) | (data_word >> 24) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5002:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5002 | *(s+4) = (*(s+4) << 2) | (data_word >> 22) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5003:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5003 | *(s+5) = (*(s+5) << 2) | (data_word >> 20) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5004:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5004 | *(s+6) = (*(s+6) << 2) | (data_word >> 18) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5005:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5005 | *(s+7) = (*(s+7) << 2) | (data_word >> 16) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5017:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5017 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5018:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5018 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5019:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5019 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5020:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5020 | *(s+3) = (*(s+3) << 3) | (data_word >> 20) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5021:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5021 | *(s+4) = (*(s+4) << 3) | (data_word >> 17) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5031:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5031 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5032:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5032 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5033:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5033 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5048:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5048 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5049:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5049 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5050:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5050 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5051:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5051 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5058:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5058 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5059:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5059 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5060:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5060 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5061:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5061 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5073:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5073 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5074:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5074 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5075:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5075 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5085:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5085 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5086:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5086 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5087:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5087 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5097:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5097 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5098:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5098 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5113:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5113 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5114:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5114 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5124:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5124 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5125:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5125 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5135:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5135 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5136:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5136 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5146:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5146 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5147:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5147 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5162:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5162 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5163:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5163 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5173:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5173 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5174:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5174 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5184:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5184 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5185:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5185 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5195:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5195 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5196:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5196 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5211:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5211 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5212:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5212 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5219:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5219 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5220:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5220 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5227:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5227 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5228:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5228 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5235:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5235 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5236:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5236 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5358:8: warning: ‘ext2_bit’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 5358 | if (ext2_bit) + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o sz_api.obj -c ../sz_api.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o szip.dll -shared -Wl,--out-implib,libszip.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ encoding.obj rice.obj sz_api.obj -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +make -C ./bitshuffleSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcmarker.obj -c ../jcmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Nothing to be done for 'install'. +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Nothing to be done for 'install'. +make -C ./cbfSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF md5c.d ../md5c.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_ws.d ../cbf_ws.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_write_binary.d ../cbf_write_binary.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_write.d ../cbf_write.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_uncompressed.d ../cbf_uncompressed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcmaster.obj -c ../jcmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_tree.d ../cbf_tree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_stx.d ../cbf_stx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_string.d ../cbf_string.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcomapi.obj -c ../jcomapi.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_simple.d ../cbf_simple.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_read_mime.d ../cbf_read_mime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_read_binary.d ../cbf_read_binary.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_predictor.d ../cbf_predictor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_packed.d ../cbf_packed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_lex.d ../cbf_lex.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_getopt.d ../cbf_getopt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_file.d ../cbf_file.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_context.d ../cbf_context.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_compress.d ../cbf_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_codes.d ../cbf_codes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_canonical.d ../cbf_canonical.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_byte_offset.d ../cbf_byte_offset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcparam.obj -c ../jcparam.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_binary.d ../cbf_binary.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_ascii.d ../cbf_ascii.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_alloc.d ../cbf_alloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf.d ../cbf.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcprepct.obj -c ../jcprepct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcsample.obj -c ../jcsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jctrans.obj -c ../jctrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdapimin.obj -c ../jdapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdapistd.obj -c ../jdapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdarith.obj -c ../jdarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdatadst.obj -c ../jdatadst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdatasrc.obj -c ../jdatasrc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdcoefct.obj -c ../jdcoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdcolor.obj -c ../jdcolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jddctmgr.obj -c ../jddctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf.c +../cbf.c: In function ‘cbf_validate’: +../cbf.c:7388:8: warning: ignoring return value of ‘fscanf’, declared with attribute warn_unused_result [-Wunused-result] + 7388 | fscanf(fout, "%s", output); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cbf.c:7493:8: warning: ignoring return value of ‘fscanf’, declared with attribute warn_unused_result [-Wunused-result] + 7493 | fscanf(fout, "%s", output); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cbf.c: In function ‘cbf_drel’: +../cbf.c:8417:2: warning: ignoring return value of ‘system’, declared with attribute warn_unused_result [-Wunused-result] + 8417 | system(preprocess); + | ^~~~~~~~~~~~~~~~~~ +../cbf.c:8425:2: warning: ignoring return value of ‘system’, declared with attribute warn_unused_result [-Wunused-result] + 8425 | system(evaluate); + | ^~~~~~~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from ../cbf.c:264: +In function ‘strncpy’, + inlined from ‘cbf_validate’ at ../cbf.c:7362:6: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 80 bytes from a string of length 81 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘cbf_validate’ at ../cbf.c:7441:19: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 80 bytes from a string of length 81 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_alloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdhuff.obj -c ../jdhuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_ascii.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdinput.obj -c ../jdinput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_binary.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdmainct.obj -c ../jdmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_byte_offset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdmarker.obj -c ../jdmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_canonical.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdmaster.obj -c ../jdmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdmerge.obj -c ../jdmerge.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdpostct.obj -c ../jdpostct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdsample.obj -c ../jdsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdtrans.obj -c ../jdtrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jerror.obj -c ../jerror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jfdctflt.obj -c ../jfdctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jfdctfst.obj -c ../jfdctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_codes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_context.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_file.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_getopt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jfdctint.obj -c ../jfdctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jidctflt.obj -c ../jidctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_lex.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jidctfst.obj -c ../jidctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_packed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_predictor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_read_binary.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_read_mime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_simple.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_string.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jidctint.obj -c ../jidctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jquant1.obj -c ../jquant1.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_stx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_tree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_uncompressed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jquant2.obj -c ../jquant2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_write.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jutils.obj -c ../jutils.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_write_binary.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jmemmgr.obj -c ../jmemmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jmemnobs.obj -c ../jmemnobs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o decompressJPEG.obj -c ../decompressJPEG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o jpeg.dll -shared -Wl,--out-implib,libjpeg.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ jaricom.obj jcapimin.obj jcapistd.obj jcarith.obj jccoefct.obj jccolor.obj jcdctmgr.obj jchuff.obj jcinit.obj jcmainct.obj jcmarker.obj jcmaster.obj jcomapi.obj jcparam.obj jcprepct.obj jcsample.obj jctrans.obj jdapimin.obj jdapistd.obj jdarith.obj jdatadst.obj jdatasrc.obj jdcoefct.obj jdcolor.obj jddctmgr.obj jdhuff.obj jdinput.obj jdmainct.obj jdmarker.obj jdmaster.obj jdmerge.obj jdpostct.obj jdsample.obj jdtrans.obj jerror.obj jfdctflt.obj jfdctfst.obj jfdctint.obj jidctflt.obj jidctfst.obj jidctint.obj jquant1.obj jquant2.obj jutils.obj jmemmgr.obj jmemnobs.obj -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_ws.c +../cbf_ws.c: In function ‘cbf_find_bracketstring’: +../cbf_ws.c:1087:26: warning: ‘tokentype’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1087 | tokentype[depth-1]= *stringtype; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o decompressJPEG.dll -shared -Wl,--out-implib,libdecompressJPEG.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ decompressJPEG.obj -ljpeg -lws2_32 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make -C ./bloscSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../md5c.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle.d ../../../supportApp/bloscSrc/blosc/shuffle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bitshuffle-generic.d ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle-generic.d ../../../supportApp/bloscSrc/blosc/shuffle-generic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +/usr/bin/ar -rc libcbfad.a cbf.o cbf_alloc.o cbf_ascii.o cbf_binary.o cbf_byte_offset.o cbf_canonical.o cbf_codes.o cbf_compress.o cbf_context.o cbf_file.o cbf_getopt.o cbf_lex.o cbf_packed.o cbf_predictor.o cbf_read_binary.o cbf_read_mime.o cbf_simple.o cbf_string.o cbf_stx.o cbf_tree.o cbf_uncompressed.o cbf_write.o cbf_write_binary.o cbf_ws.o md5c.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +/usr/bin/ranlib libcbfad.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosclz.d ../../../supportApp/bloscSrc/blosc/blosclz.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc.d ../../../supportApp/bloscSrc/blosc/blosc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +g++ -o libcbfad.so -shared -fPIC -Wl,-hlibcbfad.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 cbf.o cbf_alloc.o cbf_ascii.o cbf_binary.o cbf_byte_offset.o cbf_canonical.o cbf_codes.o cbf_compress.o cbf_context.o cbf_file.o cbf_getopt.o cbf_lex.o cbf_packed.o cbf_predictor.o cbf_read_binary.o cbf_read_mime.o cbf_simple.o cbf_string.o cbf_stx.o cbf_tree.o cbf_uncompressed.o cbf_write.o cbf_write_binary.o cbf_ws.o md5c.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4hc.d ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4.d ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Nothing to be done for 'install'. +make -C ./tiffSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_unix.d ../tif_unix.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_zip.d ../tif_zip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_write.d ../tif_write.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_warning.d ../tif_warning.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_version.d ../tif_version.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_tile.d ../tif_tile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-stubs-internal.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-sinksource.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_thunder.d ../tif_thunder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_swab.d ../tif_swab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_strip.d ../tif_strip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-c.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_read.d ../tif_read.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_print.d ../tif_print.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_predict.d ../tif_predict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_decompress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_pixarlog.d ../tif_pixarlog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_decompress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_packbits.d ../tif_packbits.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstdmt_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_open.d ../tif_open.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_ojpeg.d ../tif_ojpeg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_next.d ../tif_next.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_lzw.d ../tif_lzw.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_common.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xxhash.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_luv.d ../tif_luv.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threading.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg_12.d ../tif_jpeg_12.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pool.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_decompress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg.d ../tif_jpeg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error_private.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jbig.d ../tif_jbig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_getimage.d ../tif_getimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_flush.d ../tif_flush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3sm.d ../tif_fax3sm.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3.d ../tif_fax3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_extension.d ../tif_extension.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entropy_common.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_error.d ../tif_error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dumpmode.d ../tif_dumpmode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirwrite.d ../tif_dirwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirread.d ../tif_dirread.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirinfo.d ../tif_dirinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dir.d ../tif_dir.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_compress.d ../tif_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_color.d ../tif_color.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_codec.d ../tif_codec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_close.d ../tif_close.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_aux.d ../tif_aux.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_aux.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_close.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_codec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_color.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dir.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dirinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dirread.c +../tif_dirread.c: In function ‘EstimateStripByteCounts’: +../tif_dirread.c:4272:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 4272 | if( !_TIFFFillStriles( tif ) ) + | ^~ +../tif_dirread.c:4275:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 4275 | if (td->td_stripbytecount) + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dirwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dumpmode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_extension.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_fax3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_fax3sm.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_flush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_getimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_jbig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_jpeg.c +In file included from ../../../include/os/Linux/jpeglib.h:27, + from ../tif_jpeg.c:88: +../../../include/os/Linux/jmorecfg.h:248: warning: "EXTERN" redefined + 248 | #define EXTERN(type) extern type + | +In file included from ../tiffiop.h:66, + from ../tif_jpeg.c:30: +../os/default/tiffio.h:91: note: this is the location of the previous definition + 91 | # define EXTERN extern + | +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_jpeg_12.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_luv.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_lzw.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_next.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_ojpeg.c +In file included from ../../../include/os/Linux/jpeglib.h:27, + from ../tif_ojpeg.c:217: +../../../include/os/Linux/jmorecfg.h:248: warning: "EXTERN" redefined + 248 | #define EXTERN(type) extern type + | +In file included from ../tiffiop.h:66, + from ../tif_ojpeg.c:126: +../os/default/tiffio.h:91: note: this is the location of the previous definition + 91 | # define EXTERN extern + | +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_open.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_packbits.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_pixarlog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_predict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_print.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_read.c +../tif_read.c: In function ‘TIFFFillStrip’: +../tif_read.c:495:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 495 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) + | ^~ +../tif_read.c:498:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 498 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) + | ^~ +../tif_read.c: In function ‘TIFFFillTile’: +../tif_read.c:798:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 798 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) + | ^~ +../tif_read.c:801:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 801 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) + | ^~ +../tif_read.c: In function ‘TIFFStartStrip’: +../tif_read.c:960:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 960 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) + | ^~ +../tif_read.c:963:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 963 | if ((tif->tif_flags & TIFF_CODERSETUP) == 0) { + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_strip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_swab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_thunder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_tile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_version.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_warning.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::Append(const char*, size_t)’: +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1013:33: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long unsigned int’} [-Wsign-compare] + 1013 | if (curr_iov_index_ + 1 >= output_iov_count_) { + | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::AppendFromSelf(size_t, size_t)’: +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1095:35: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long unsigned int’} [-Wsign-compare] + 1095 | if (curr_iov_index_ + 1 >= output_iov_count_) { + | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: At global scope: +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:567:13: warning: ‘void snappy::ComputeTable()’ defined but not used [-Wunused-function] + 567 | static void ComputeTable() { + | ^~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_write.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_zip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_unix.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +/usr/bin/ar -rc libtiff.a tif_aux.o tif_close.o tif_codec.o tif_color.o tif_compress.o tif_dir.o tif_dirinfo.o tif_dirread.o tif_dirwrite.o tif_dumpmode.o tif_error.o tif_extension.o tif_fax3.o tif_fax3sm.o tif_flush.o tif_getimage.o tif_jbig.o tif_jpeg.o tif_jpeg_12.o tif_luv.o tif_lzw.o tif_next.o tif_ojpeg.o tif_open.o tif_packbits.o tif_pixarlog.o tif_predict.o tif_print.o tif_read.o tif_strip.o tif_swab.o tif_thunder.o tif_tile.o tif_version.o tif_warning.o tif_write.o tif_zip.o tif_unix.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +/usr/bin/ranlib libtiff.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +g++ -o libtiff.so -shared -fPIC -Wl,-hlibtiff.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 tif_aux.o tif_close.o tif_codec.o tif_color.o tif_compress.o tif_dir.o tif_dirinfo.o tif_dirread.o tif_dirwrite.o tif_dumpmode.o tif_error.o tif_extension.o tif_fax3.o tif_fax3sm.o tif_flush.o tif_getimage.o tif_jbig.o tif_jpeg.o tif_jpeg_12.o tif_luv.o tif_lzw.o tif_next.o tif_ojpeg.o tif_open.o tif_packbits.o tif_pixarlog.o tif_predict.o tif_print.o tif_read.o tif_strip.o tif_swab.o tif_thunder.o tif_tile.o tif_version.o tif_warning.o tif_write.o tif_zip.o tif_unix.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_win32.d -MT tif_win32.obj ../tif_win32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_zip.d -MT tif_zip.obj ../tif_zip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_write.d -MT tif_write.obj ../tif_write.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_warning.d -MT tif_warning.obj ../tif_warning.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_version.d -MT tif_version.obj ../tif_version.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_tile.d -MT tif_tile.obj ../tif_tile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_thunder.d -MT tif_thunder.obj ../tif_thunder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_swab.d -MT tif_swab.obj ../tif_swab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_strip.d -MT tif_strip.obj ../tif_strip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_read.d -MT tif_read.obj ../tif_read.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_print.d -MT tif_print.obj ../tif_print.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_predict.d -MT tif_predict.obj ../tif_predict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_pixarlog.d -MT tif_pixarlog.obj ../tif_pixarlog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_packbits.d -MT tif_packbits.obj ../tif_packbits.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_open.d -MT tif_open.obj ../tif_open.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_ojpeg.d -MT tif_ojpeg.obj ../tif_ojpeg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_next.d -MT tif_next.obj ../tif_next.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_lzw.d -MT tif_lzw.obj ../tif_lzw.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_luv.d -MT tif_luv.obj ../tif_luv.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg_12.d -MT tif_jpeg_12.obj ../tif_jpeg_12.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg.d -MT tif_jpeg.obj ../tif_jpeg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jbig.d -MT tif_jbig.obj ../tif_jbig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_getimage.d -MT tif_getimage.obj ../tif_getimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_flush.d -MT tif_flush.obj ../tif_flush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3sm.d -MT tif_fax3sm.obj ../tif_fax3sm.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3.d -MT tif_fax3.obj ../tif_fax3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_extension.d -MT tif_extension.obj ../tif_extension.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_error.d -MT tif_error.obj ../tif_error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dumpmode.d -MT tif_dumpmode.obj ../tif_dumpmode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirwrite.d -MT tif_dirwrite.obj ../tif_dirwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirread.d -MT tif_dirread.obj ../tif_dirread.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirinfo.d -MT tif_dirinfo.obj ../tif_dirinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dir.d -MT tif_dir.obj ../tif_dir.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_compress.d -MT tif_compress.obj ../tif_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_color.d -MT tif_color.obj ../tif_color.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_codec.d -MT tif_codec.obj ../tif_codec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_close.d -MT tif_close.obj ../tif_close.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_aux.d -MT tif_aux.obj ../tif_aux.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_aux.obj -c ../tif_aux.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_close.obj -c ../tif_close.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_codec.obj -c ../tif_codec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_color.obj -c ../tif_color.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_compress.obj -c ../tif_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dir.obj -c ../tif_dir.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dirinfo.obj -c ../tif_dirinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dirread.obj -c ../tif_dirread.c +../tif_dirread.c: In function ‘EstimateStripByteCounts’: +../tif_dirread.c:4272:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 4272 | if( !_TIFFFillStriles( tif ) ) + | ^~ +../tif_dirread.c:4275:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 4275 | if (td->td_stripbytecount) + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/blosc.c +In file included from /usr/include/stdio.h:867, + from ../../../supportApp/bloscSrc/blosc/blosc.c:11: +In function ‘fprintf’, + inlined from ‘blosc_d.isra.0’ at ../../../supportApp/bloscSrc/blosc/blosc.c:752:9: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:100:10: warning: ‘%s’ directive argument is null [-Wformat-overflow=] + 100 | return __fprintf_chk (__stream, __USE_FORTIFY_LEVEL - 1, __fmt, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 101 | __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘blosc_d.isra.0’: +../../../supportApp/bloscSrc/blosc/blosc.c:754:31: note: format string is defined here + 754 | "support for '%s' format. ", compname); + | ^~ +In file included from /usr/include/stdio.h:867, + from ../../../supportApp/bloscSrc/blosc/blosc.c:11: +In function ‘fprintf’, + inlined from ‘write_compression_header.isra.0’ at ../../../supportApp/bloscSrc/blosc/blosc.c:1105:5: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:100:10: warning: ‘%s’ directive argument is null [-Wformat-overflow=] + 100 | return __fprintf_chk (__stream, __USE_FORTIFY_LEVEL - 1, __fmt, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 101 | __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/blosclz.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/shuffle-generic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/shuffle.c +../../../supportApp/bloscSrc/blosc/shuffle.c:288:4: warning: #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. [-Wcpp] + 288 | #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. + | ^~~~~~~ +../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘get_shuffle_implementation’: +../../../supportApp/bloscSrc/blosc/shuffle.c:298:22: warning: unused variable ‘cpu_features’ [-Wunused-variable] + 298 | blosc_cpu_features cpu_features = blosc_get_cpu_features(); + | ^~~~~~~~~~~~ +In file included from ../../../supportApp/bloscSrc/blosc/shuffle.c:12: +At top level: +../../../supportApp/bloscSrc/blosc/shuffle-generic.h:61:13: warning: ‘unshuffle_generic_inline’ defined but not used [-Wunused-function] + 61 | static void unshuffle_generic_inline(const size_t type_size, + | ^~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/blosc/shuffle-generic.h:32:13: warning: ‘shuffle_generic_inline’ defined but not used [-Wunused-function] + 32 | static void shuffle_generic_inline(const size_t type_size, + | ^~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +/usr/bin/ar -rc libblosc.a entropy_common.o error_private.o fse_decompress.o pool.o threading.o xxhash.o zstd_common.o fse_compress.o zstd_compress.o huf_compress.o zstdmt_compress.o huf_decompress.o zstd_decompress.o snappy.o snappy-c.o snappy-sinksource.o snappy-stubs-internal.o lz4.o lz4hc.o blosc.o blosclz.o shuffle-generic.o bitshuffle-generic.o shuffle.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +/usr/bin/ranlib libblosc.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -o libblosc.so -shared -fPIC -Wl,-hlibblosc.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 entropy_common.o error_private.o fse_decompress.o pool.o threading.o xxhash.o zstd_common.o fse_compress.o zstd_compress.o huf_compress.o zstdmt_compress.o huf_decompress.o zstd_decompress.o snappy.o snappy-c.o snappy-sinksource.o snappy-stubs-internal.o lz4.o lz4hc.o blosc.o blosclz.o shuffle-generic.o bitshuffle-generic.o shuffle.o -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle.d -MT shuffle.obj ../../../supportApp/bloscSrc/blosc/shuffle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bitshuffle-generic.d -MT bitshuffle-generic.obj ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle-generic.d -MT shuffle-generic.obj ../../../supportApp/bloscSrc/blosc/shuffle-generic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosclz.d -MT blosclz.obj ../../../supportApp/bloscSrc/blosc/blosclz.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dirwrite.obj -c ../tif_dirwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc.d -MT blosc.obj ../../../supportApp/bloscSrc/blosc/blosc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4hc.d -MT lz4hc.obj ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4.d -MT lz4.obj ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dumpmode.obj -c ../tif_dumpmode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_error.obj -c ../tif_error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_extension.obj -c ../tif_extension.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-stubs-internal.d -MT snappy-stubs-internal.obj ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-sinksource.d -MT snappy-sinksource.obj ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-c.d -MT snappy-c.obj ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy.d -MT snappy.obj ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_decompress.d -MT zstd_decompress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_decompress.d -MT huf_decompress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstdmt_compress.d -MT zstdmt_compress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_compress.d -MT huf_compress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_compress.d -MT zstd_compress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_compress.d -MT fse_compress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_common.d -MT zstd_common.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xxhash.d -MT xxhash.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threading.d -MT threading.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pool.d -MT pool.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_decompress.d -MT fse_decompress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error_private.d -MT error_private.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entropy_common.d -MT entropy_common.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o entropy_common.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o error_private.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o fse_decompress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pool.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o threading.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_fax3.obj -c ../tif_fax3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xxhash.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zstd_common.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_fax3sm.obj -c ../tif_fax3sm.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_flush.obj -c ../tif_flush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o fse_compress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_getimage.obj -c ../tif_getimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_jbig.obj -c ../tif_jbig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_jpeg.obj -c ../tif_jpeg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_jpeg_12.obj -c ../tif_jpeg_12.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_luv.obj -c ../tif_luv.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_lzw.obj -c ../tif_lzw.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_next.obj -c ../tif_next.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_ojpeg.obj -c ../tif_ojpeg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_open.obj -c ../tif_open.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_packbits.obj -c ../tif_packbits.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_pixarlog.obj -c ../tif_pixarlog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_predict.obj -c ../tif_predict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_print.obj -c ../tif_print.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_read.obj -c ../tif_read.c +../tif_read.c: In function ‘TIFFFillStrip’: +../tif_read.c:495:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 495 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) + | ^~ +../tif_read.c:498:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 498 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) + | ^~ +../tif_read.c: In function ‘TIFFFillTile’: +../tif_read.c:798:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 798 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) + | ^~ +../tif_read.c:801:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 801 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) + | ^~ +../tif_read.c: In function ‘TIFFStartStrip’: +../tif_read.c:960:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 960 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) + | ^~ +../tif_read.c:963:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 963 | if ((tif->tif_flags & TIFF_CODERSETUP) == 0) { + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_strip.obj -c ../tif_strip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_swab.obj -c ../tif_swab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_thunder.obj -c ../tif_thunder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_tile.obj -c ../tif_tile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_version.obj -c ../tif_version.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_warning.obj -c ../tif_warning.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_write.obj -c ../tif_write.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_zip.obj -c ../tif_zip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_win32.obj -c ../tif_win32.c +../tif_win32.c: In function ‘TIFFFdOpen’: +../tif_win32.c:242:35: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 242 | tif = TIFFClientOpen(name, mode, (thandle_t)ifd, /* FIXME: WIN64 cast to pointer warning */ + | ^ +../tif_win32.c: In function ‘TIFFOpen’: +../tif_win32.c:287:19: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 287 | tif = TIFFFdOpen((int)fd, name, mode); /* FIXME: WIN64 cast from pointer to int warning */ + | ^ +../tif_win32.c: In function ‘TIFFOpenW’: +../tif_win32.c:342:19: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 342 | tif = TIFFFdOpen((int)fd, /* FIXME: WIN64 cast from pointer to int warning */ + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o tiff.dll -shared -Wl,--out-implib,libtiff.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ tif_aux.obj tif_close.obj tif_codec.obj tif_color.obj tif_compress.obj tif_dir.obj tif_dirinfo.obj tif_dirread.obj tif_dirwrite.obj tif_dumpmode.obj tif_error.obj tif_extension.obj tif_fax3.obj tif_fax3sm.obj tif_flush.obj tif_getimage.obj tif_jbig.obj tif_jpeg.obj tif_jpeg_12.obj tif_luv.obj tif_lzw.obj tif_next.obj tif_ojpeg.obj tif_open.obj tif_packbits.obj tif_pixarlog.obj tif_predict.obj tif_print.obj tif_read.obj tif_strip.obj tif_swab.obj tif_thunder.obj tif_tile.obj tif_version.obj tif_warning.obj tif_write.obj tif_zip.obj tif_win32.obj -luser32 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make -C ./xml2Src install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp_stream.d ../nanohttp_stream.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlstring.d ../xmlstring.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpointer.d ../xpointer.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpath.d ../xpath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlwriter.d ../xmlwriter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlunicode.d ../xmlunicode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemastypes.d ../xmlschemastypes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemas.d ../xmlschemas.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlsave.d ../xmlsave.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmodule.d ../xmlmodule.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlregexp.d ../xmlregexp.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlreader.d ../xmlreader.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmemory.d ../xmlmemory.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlIO.d ../xmlIO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xlink.d ../xlink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xinclude.d ../xinclude.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF valid.d ../valid.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uri.d ../uri.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tree.d ../tree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threads.d ../threads.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF schematron.d ../schematron.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX.d ../SAX.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX2.d ../SAX2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF relaxng.d ../relaxng.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pattern.d ../pattern.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zstd_compress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parserInternals.d ../parserInternals.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parser.d ../parser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp.d ../nanohttp.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanoftp.d ../nanoftp.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF list.d ../list.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF legacy.d ../legacy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLtree.d ../HTMLtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLparser.d ../HTMLparser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF hash.d ../hash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF globals.d ../globals.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error.d ../error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o huf_compress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entities.d ../entities.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d ../encoding.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF DOCBparser.d ../DOCBparser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dict.d ../dict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF debugXML.d ../debugXML.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF chvalid.d ../chvalid.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF catalog.d ../catalog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF c14n.d ../c14n.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF buf.d ../buf.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zstdmt_compress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +mkdir ../../../include/os/Linux/libxml +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../buf.c +../buf.c: In function ‘xmlBufMemoryError’: +../buf.c:94:5: warning: too many arguments for format [-Wformat-extra-args] + 94 | __xmlSimpleError(XML_FROM_BUFFER, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../buf.c: In function ‘xmlBufOverflowError’: +../buf.c:109:5: warning: too many arguments for format [-Wformat-extra-args] + 109 | __xmlSimpleError(XML_FROM_BUFFER, XML_BUF_OVERFLOW, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o huf_decompress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../c14n.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../catalog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zstd_decompress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../chvalid.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o snappy.obj -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::Append(const char*, size_t)’: +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1013:33: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long long unsigned int’} [-Wsign-compare] + 1013 | if (curr_iov_index_ + 1 >= output_iov_count_) { + | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::AppendFromSelf(size_t, size_t)’: +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1095:35: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long long unsigned int’} [-Wsign-compare] + 1095 | if (curr_iov_index_ + 1 >= output_iov_count_) { + | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: At global scope: +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:567:13: warning: ‘void snappy::ComputeTable()’ defined but not used [-Wunused-function] + 567 | static void ComputeTable() { + | ^~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o snappy-c.obj -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o snappy-sinksource.obj -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../debugXML.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o snappy-stubs-internal.obj -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../dict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../DOCBparser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../encoding.c +../encoding.c: In function ‘xmlEncodingErrMemory’: +../encoding.c:86:5: warning: too many arguments for format [-Wformat-extra-args] + 86 | __xmlSimpleError(XML_FROM_I18N, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../encoding.c: In function ‘xmlCharEncCloseFunc__internal_alias’: +../encoding.c:2856:12: warning: variable ‘handler_in_list’ set but not used [-Wunused-but-set-variable] + 2856 | int i, handler_in_list = 0; + | ^~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../entities.c +../entities.c: In function ‘xmlEntitiesErrMemory’: +../entities.c:76:5: warning: too many arguments for format [-Wformat-extra-args] + 76 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../globals.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../hash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../HTMLparser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../HTMLtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../legacy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../list.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o lz4.obj -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nanoftp.c +../nanoftp.c: In function ‘xmlFTPErrMemory’: +../nanoftp.c:176:5: warning: too many arguments for format [-Wformat-extra-args] + 176 | __xmlSimpleError(XML_FROM_FTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nanohttp.c +../nanohttp.c: In function ‘xmlHTTPErrMemory’: +../nanohttp.c:177:5: warning: too many arguments for format [-Wformat-extra-args] + 177 | __xmlSimpleError(XML_FROM_HTTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o lz4hc.obj -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosc.obj -c ../../../supportApp/bloscSrc/blosc/blosc.c +../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘parallel_blosc’: +../../../supportApp/bloscSrc/blosc/blosc.c:858:7: warning: unused variable ‘rc’ [-Wunused-variable] + 858 | int rc; + | ^~ +../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘t_blosc’: +../../../supportApp/bloscSrc/blosc/blosc.c:1583:7: warning: unused variable ‘rc’ [-Wunused-variable] + 1583 | int rc; + | ^~ +../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘blosc_release_threadpool’: +../../../supportApp/bloscSrc/blosc/blosc.c:2062:7: warning: unused variable ‘rc’ [-Wunused-variable] + 2062 | int rc; + | ^~ +../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘blosc_d.isra.0’: +../../../supportApp/bloscSrc/blosc/blosc.c:752:9: warning: ‘%s’ directive argument is null [-Wformat-overflow=] + 752 | fprintf(stderr, + | ^~~~~~~~~~~~~~~ + 753 | "Blosc has not been compiled with decompression " + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 754 | "support for '%s' format. ", compname); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/blosc/blosc.c:754:31: note: format string is defined here + 754 | "support for '%s' format. ", compname); + | ^~ +../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘write_compression_header.isra.0’: +../../../supportApp/bloscSrc/blosc/blosc.c:1105:5: warning: ‘%s’ directive argument is null [-Wformat-overflow=] + 1105 | fprintf(stderr, "Blosc has not been compiled with '%s' ", compname); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘blosc_c’: +../../../supportApp/bloscSrc/blosc/blosc.c:648:7: warning: ‘%s’ directive argument is null [-Wformat-overflow=] + 648 | fprintf(stderr, "Blosc has not been compiled with '%s' ", compname); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosclz.obj -c ../../../supportApp/bloscSrc/blosc/blosclz.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o shuffle-generic.obj -c ../../../supportApp/bloscSrc/blosc/shuffle-generic.c +../../../supportApp/bloscSrc/blosc/shuffle-generic.c: In function ‘shuffle_generic’: +../../../supportApp/bloscSrc/blosc/shuffle-generic.c:17:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 17 | } + | ^ +../../../supportApp/bloscSrc/blosc/shuffle-generic.c: In function ‘unshuffle_generic’: +../../../supportApp/bloscSrc/blosc/shuffle-generic.c:25:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 25 | } + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o bitshuffle-generic.obj -c ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_byte_elem_remainder’: +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:40:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 40 | } + | ^ +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_byte_elem_scal’: +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:48:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 48 | } + | ^ +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_bit_byte_remainder’: +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:85:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 85 | } + | ^ +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_elem’: +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:110:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 110 | } + | ^ +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_bitrow_eight’: +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:122:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 122 | } + | ^ +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_bit_elem_scal’: +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:140:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 140 | } + | ^ +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_shuffle_bit_eightelem_scal’: +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:205:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 205 | } + | ^ +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_untrans_bit_elem_scal’: +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:221:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 221 | } + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o shuffle.obj -c ../../../supportApp/bloscSrc/blosc/shuffle.c +../../../supportApp/bloscSrc/blosc/shuffle.c:288:4: warning: #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. [-Wcpp] + 288 | #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. + | ^~~~~~~ +../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘get_shuffle_implementation’: +../../../supportApp/bloscSrc/blosc/shuffle.c:298:22: warning: unused variable ‘cpu_features’ [-Wunused-variable] + 298 | blosc_cpu_features cpu_features = blosc_get_cpu_features(); + | ^~~~~~~~~~~~ +In file included from ../../../supportApp/bloscSrc/blosc/shuffle.c:12: +At top level: +../../../supportApp/bloscSrc/blosc/shuffle-generic.h:61:13: warning: ‘unshuffle_generic_inline’ defined but not used [-Wunused-function] + 61 | static void unshuffle_generic_inline(const size_t type_size, + | ^~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/blosc/shuffle-generic.h:32:13: warning: ‘shuffle_generic_inline’ defined but not used [-Wunused-function] + 32 | static void shuffle_generic_inline(const size_t type_size, + | ^~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘shuffle’: +../../../supportApp/bloscSrc/blosc/shuffle.c:387:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 387 | } + | ^ +../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘unshuffle’: +../../../supportApp/bloscSrc/blosc/shuffle.c:400:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 400 | } + | ^ +../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘bitshuffle’: +../../../supportApp/bloscSrc/blosc/shuffle.c:421:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 421 | } + | ^ +../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘bitunshuffle’: +../../../supportApp/bloscSrc/blosc/shuffle.c:442:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 442 | } + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o blosc.dll -shared -Wl,--out-implib,libblosc.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ entropy_common.obj error_private.obj fse_decompress.obj pool.obj threading.obj xxhash.obj zstd_common.obj fse_compress.obj zstd_compress.obj huf_compress.obj zstdmt_compress.obj huf_decompress.obj zstd_decompress.obj snappy.obj snappy-c.obj snappy-sinksource.obj snappy-stubs-internal.obj lz4.obj lz4hc.obj blosc.obj blosclz.obj shuffle-generic.obj bitshuffle-generic.obj shuffle.obj -lzlib -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make -C ./hdf5Src install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5detect.d ../H5detect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d ../jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d ../blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5lib_settings.d ../H5lib_settings.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tinit.d ../os/Linux/H5Tinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ztrans.d ../H5Ztrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zszip.d ../H5Zszip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zshuffle.d ../H5Zshuffle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zscaleoffset.d ../H5Zscaleoffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Znbit.d ../H5Znbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zfletcher32.d ../H5Zfletcher32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zdeflate.d ../H5Zdeflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Z.d ../H5Z.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5WB.d ../H5WB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5VM.d ../H5VM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5TS.d ../H5TS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvlen.d ../H5Tvlen.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvisit.d ../H5Tvisit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tstrpad.d ../H5Tstrpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tprecis.d ../H5Tprecis.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tpad.d ../H5Tpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Torder.d ../H5Torder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Topaque.d ../H5Topaque.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toh.d ../H5Toh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toffset.d ../H5Toffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tnative.d ../H5Tnative.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfloat.d ../H5Tfloat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfixed.d ../H5Tfixed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfields.d ../H5Tfields.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tenum.d ../H5Tenum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdeprec.d ../H5Tdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdbg.d ../H5Tdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcset.d ../H5Tcset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tconv.d ../H5Tconv.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcompound.d ../H5Tcompound.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcommit.d ../H5Tcommit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tbit.d ../H5Tbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tarray.d ../H5Tarray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5T.d ../H5T.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ST.d ../H5ST.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMtest.d ../H5SMtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMmessage.d ../H5SMmessage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMcache.d ../H5SMcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMbtree2.d ../H5SMbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SM.d ../H5SM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SL.d ../H5SL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Stest.d ../H5Stest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sselect.d ../H5Sselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Spoint.d ../H5Spoint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Snone.d ../H5Snone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Shyper.d ../H5Shyper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sdbg.d ../H5Sdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sall.d ../H5Sall.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5S.d ../H5S.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5RS.d ../H5RS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5UC.d ../H5UC.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Rdeprec.d ../H5Rdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5R.d ../H5R.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PL.d ../H5PL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PB.d ../H5PB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ptest.d ../H5Ptest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pstrcpl.d ../H5Pstrcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpypl.d ../H5Pocpypl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpl.d ../H5Pocpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plcpl.d ../H5Plcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plapl.d ../H5Plapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pint.d ../H5Pint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pgcpl.d ../H5Pgcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfmpl.d ../H5Pfmpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfcpl.d ../H5Pfcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfapl.d ../H5Pfapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pencdec.d ../H5Pencdec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdxpl.d ../H5Pdxpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdeprec.d ../H5Pdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdcpl.d ../H5Pdcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdapl.d ../H5Pdapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pacpl.d ../H5Pacpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5P.d ../H5P.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ounknown.d ../H5Ounknown.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../parser.c +../parser.c: In function ‘xmlParseReference__internal_alias’: +../parser.c:7258:44: warning: ‘%d’ directive output may be truncated writing between 3 and 10 bytes into a region of size 9 [-Wformat-truncation=] + 7258 | snprintf((char *)out, sizeof(out), "#%d", value); + | ^~ +../parser.c:7258:42: note: directive argument in the range [256, 2147483647] + 7258 | snprintf((char *)out, sizeof(out), "#%d", value); + | ^~~~~ +In file included from /usr/include/stdio.h:867, + from ../libxml.h:51, + from ../parser.c:34: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output between 5 and 12 bytes into a destination of size 10 + 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 68 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../parser.c:7256:47: warning: ‘__builtin___snprintf_chk’ output may be truncated before the last format character [-Wformat-truncation=] + 7256 | snprintf((char *)out, sizeof(out), "#x%X", value); + | ^ +In file included from /usr/include/stdio.h:867, + from ../libxml.h:51, + from ../parser.c:34: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output between 6 and 11 bytes into a destination of size 10 + 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 68 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Otest.d ../H5Otest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ostab.d ../H5Ostab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshmesg.d ../H5Oshmesg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshared.d ../H5Oshared.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Osdspace.d ../H5Osdspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Orefcount.d ../H5Orefcount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Opline.d ../H5Opline.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Onull.d ../H5Onull.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oname.d ../H5Oname.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omtime.d ../H5Omtime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omessage.d ../H5Omessage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olink.d ../H5Olink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../parserInternals.c +../parserInternals.c: In function ‘xmlNextChar__internal_alias’: +../parserInternals.c:473:9: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 473 | if (c == 0xC0) + | ^~ +../parserInternals.c:475:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 475 | if (cur[1] == 0) { + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olinfo.d ../H5Olinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olayout.d ../H5Olayout.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oginfo.d ../H5Oginfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofsinfo.d ../H5Ofsinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oflush.d ../H5Oflush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofill.d ../H5Ofill.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oefl.d ../H5Oefl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odtype.d ../H5Odtype.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odrvinfo.d ../H5Odrvinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odbg.d ../H5Odbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocopy.d ../H5Ocopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocont.d ../H5Ocont.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ochunk.d ../H5Ochunk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache_image.d ../H5Ocache_image.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache.d ../H5Ocache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obtreek.d ../H5Obtreek.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pattern.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obogus.d ../H5Obogus.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattribute.d ../H5Oattribute.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattr.d ../H5Oattr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oalloc.d ../H5Oalloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oainfo.d ../H5Oainfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5O.d ../H5O.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MPtest.d ../H5MPtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MP.d ../H5MP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MM.d ../H5MM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFsection.d ../H5MFsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFdbg.d ../H5MFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFaggr.d ../H5MFaggr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MF.d ../H5MF.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Lexternal.d ../H5Lexternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5L.d ../H5L.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Itest.d ../H5Itest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5I.d ../H5I.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HP.d ../H5HP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdblk.d ../H5HLdblk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLprfx.d ../H5HLprfx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLint.d ../H5HLint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdbg.d ../H5HLdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLcache.d ../H5HLcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HL.d ../H5HL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGquery.d ../H5HGquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGdbg.d ../H5HGdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGcache.d ../H5HGcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HG.d ../H5HG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtiny.d ../H5HFtiny.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtest.d ../H5HFtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFstat.d ../H5HFstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFspace.d ../H5HFspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFsection.d ../H5HFsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFman.d ../H5HFman.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiter.d ../H5HFiter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiblock.d ../H5HFiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhuge.d ../H5HFhuge.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhdr.d ../H5HFhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdtable.d ../H5HFdtable.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdblock.d ../H5HFdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdbg.d ../H5HFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFcache.d ../H5HFcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFbtree2.d ../H5HFbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HF.d ../H5HF.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtraverse.d ../H5Gtraverse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtest.d ../H5Gtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gstab.d ../H5Gstab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Groot.d ../H5Groot.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Goh.d ../H5Goh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gobj.d ../H5Gobj.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gnode.d ../H5Gnode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gname.d ../H5Gname.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gloc.d ../H5Gloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Glink.d ../H5Glink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gint.d ../H5Gint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gent.d ../H5Gent.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdeprec.d ../H5Gdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdense.d ../H5Gdense.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcompact.d ../H5Gcompact.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcache.d ../H5Gcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gbtree2.d ../H5Gbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5G.d ../H5G.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FStest.d ../H5FStest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSstat.d ../H5FSstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSsection.d ../H5FSsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSint.d ../H5FSint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSdbg.d ../H5FSdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FScache.d ../H5FScache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FS.d ../H5FS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FO.d ../H5FO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FL.d ../H5FL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../relaxng.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDtest.d ../H5FDtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDstdio.d ../H5FDstdio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDspace.d ../H5FDspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDsec2.d ../H5FDsec2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDmulti.d ../H5FDmulti.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDlog.d ../H5FDlog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDint.d ../H5FDint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDfamily.d ../H5FDfamily.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDcore.d ../H5FDcore.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FD.d ../H5FD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAtest.d ../H5FAtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAstat.d ../H5FAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAint.d ../H5FAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAhdr.d ../H5FAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblkpage.d ../H5FAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblock.d ../H5FAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../SAX2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdbg.d ../H5FAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAcache.d ../H5FAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../SAX.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FA.d ../H5FA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ftest.d ../H5Ftest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper_cache.d ../H5Fsuper_cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper.d ../H5Fsuper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fspace.d ../H5Fspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsfile.d ../H5Fsfile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fquery.d ../H5Fquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fmount.d ../H5Fmount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fio.d ../H5Fio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fint.d ../H5Fint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../schematron.c +../schematron.c: In function ‘xmlSchematronPErrMemory’: +../schematron.c:234:22: warning: too many arguments for format [-Wformat-extra-args] + 234 | extra); + | ^~~~~ +../schematron.c: In function ‘xmlSchematronVErrMemory’: +../schematron.c:284:22: warning: too many arguments for format [-Wformat-extra-args] + 284 | extra); + | ^~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ffake.d ../H5Ffake.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fefc.d ../H5Fefc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdeprec.d ../H5Fdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdbg.d ../H5Fdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../threads.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fcwfs.d ../H5Fcwfs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Faccum.d ../H5Faccum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5F.d ../H5F.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAtest.d ../H5EAtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAstat.d ../H5EAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAsblock.d ../H5EAsblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAint.d ../H5EAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAiblock.d ../H5EAiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAhdr.d ../H5EAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblock.d ../H5EAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblkpage.d ../H5EAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdbg.d ../H5EAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAcache.d ../H5EAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EA.d ../H5EA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Eint.d ../H5Eint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Edeprec.d ../H5Edeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5E.d ../H5E.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dvirtual.d ../H5Dvirtual.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dtest.d ../H5Dtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dsingle.d ../H5Dsingle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dselect.d ../H5Dselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dscatgath.d ../H5Dscatgath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Doh.d ../H5Doh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dnone.d ../H5Dnone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dlayout.d ../H5Dlayout.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dio.d ../H5Dio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dint.d ../H5Dint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfill.d ../H5Dfill.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfarray.d ../H5Dfarray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Defl.d ../H5Defl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dearray.d ../H5Dearray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddeprec.d ../H5Ddeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddbg.d ../H5Ddbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcontig.d ../H5Dcontig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcompact.d ../H5Dcompact.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dchunk.d ../H5Dchunk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree2.d ../H5Dbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree.d ../H5Dbtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5D.d ../H5D.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5CS.d ../H5CS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctest.d ../H5Ctest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctag.d ../H5Ctag.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cquery.d ../H5Cquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cprefetched.d ../H5Cprefetched.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Clog.d ../H5Clog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cimage.d ../H5Cimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cepoch.d ../H5Cepoch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cdbg.d ../H5Cdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5C.d ../H5C.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2test.d ../H5B2test.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2stat.d ../H5B2stat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2leaf.d ../H5B2leaf.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2internal.d ../H5B2internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2int.d ../H5B2int.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2hdr.d ../H5B2hdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2dbg.d ../H5B2dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2cache.d ../H5B2cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2.d ../H5B2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bdbg.d ../H5Bdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tree.c +../tree.c: In function ‘xmlTreeErrMemory’: +../tree.c:74:5: warning: too many arguments for format [-Wformat-extra-args] + 74 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../tree.c: In function ‘xmlGetNodePath__internal_alias’: +../tree.c:4758:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 4758 | if (tmp->type == XML_COMMENT_NODE) + | ^~ +../tree.c:4760:21: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 4760 | tmp = tmp->next; + | ^~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bcache.d ../H5Bcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B.d ../H5B.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACproxy_entry.d ../H5ACproxy_entry.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACdbg.d ../H5ACdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AClog.d ../H5AClog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AC.d ../H5AC.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Atest.d ../H5Atest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Aint.d ../H5Aint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adeprec.d ../H5Adeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adense.d ../H5Adense.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Abtree2.d ../H5Abtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5A.d ../H5A.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5trace.d ../H5trace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5timer.d ../H5timer.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5system.d ../H5system.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5dbg.d ../H5dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5checksum.d ../H5checksum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../uri.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5.d ../H5.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5checksum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../valid.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5system.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5system.c:33: +In function ‘strncat’, + inlined from ‘H5_build_extpath’ at ../H5system.c:1116:13: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5system.c:33: +../H5system.c: In function ‘H5_build_extpath’: +../H5private.h:1358:31: note: length computed here + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5system.c:1116:13: note: in expansion of macro ‘HDstrncat’ + 1116 | HDstrncat(full_path, new_name, HDstrlen(new_name)); + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5timer.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xinclude.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xlink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5trace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlIO.c +../xmlIO.c: In function ‘xmlIOErrMemory’: +../xmlIO.c:256:5: warning: too many arguments for format [-Wformat-extra-args] + 256 | __xmlSimpleError(XML_FROM_IO, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlmemory.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5A.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5A.c:25: +In function ‘strncpy’, + inlined from ‘H5Aget_name_by_idx’ at ../H5A.c:937:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5A.c:25: +../H5A.c: In function ‘H5Aget_name_by_idx’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5A.c:933:26: note: in expansion of macro ‘HDstrlen’ + 933 | ret_value = (ssize_t)HDstrlen(attr->shared->name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Abtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Adense.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlreader.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Adeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Aint.c +../H5Aint.c: In function ‘H5A_create’: +../H5Aint.c:200:45: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 200 | if(NULL == (attr->shared->dt = H5T_copy(type, H5T_COPY_ALL))) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Aprivate.h:25, + from ../H5Apkg.h:37, + from ../H5Aint.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Aint.c: In function ‘H5A__read’: +../H5Aint.c:532:71: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 532 | (dst_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0) + | ^~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Aprivate.h:25, + from ../H5Apkg.h:37, + from ../H5Aint.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Aint.c: In function ‘H5A__write’: +../H5Aint.c:632:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 632 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0 || + | ^~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Aprivate.h:25, + from ../H5Apkg.h:37, + from ../H5Aint.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Atest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5AC.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5AClog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5ACdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlregexp.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5ACproxy_entry.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlmodule.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B.c +../H5B.c: In function ‘H5B_valid’: +../H5B.c:2038:26: warning: variable ‘shared’ set but not used [-Wunused-but-set-variable] + 2038 | H5B_shared_t *shared; /* Pointer to shared B-tree info */ + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlsave.c +../xmlsave.c: In function ‘xmlSaveErrMemory’: +../xmlsave.c:111:5: warning: too many arguments for format [-Wformat-extra-args] + 111 | __xmlSimpleError(XML_FROM_OUTPUT, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Bcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Bdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2hdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2int.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2leaf.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2stat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2test.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5C.c +../H5C.c: In function ‘H5C_flush_cache’: +../H5C.c:1057:14: warning: variable ‘ignore_protected’ set but not used [-Wunused-but-set-variable] + 1057 | hbool_t ignore_protected; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cepoch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Clog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cprefetched.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ctag.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ctest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5CS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlschemas.c +../xmlschemas.c: In function ‘xmlSchemaPSimpleErr’: +../xmlschemas.c:1861:22: warning: too many arguments for format [-Wformat-extra-args] + 1861 | msg); + | ^~~ +../xmlschemas.c: In function ‘xmlSchemaPErrMemory’: +../xmlschemas.c:1878:22: warning: too many arguments for format [-Wformat-extra-args] + 1878 | extra); + | ^~~~~ +../xmlschemas.c: In function ‘xmlSchemaVErrMemory’: +../xmlschemas.c:2002:22: warning: too many arguments for format [-Wformat-extra-args] + 2002 | extra); + | ^~~~~ +../xmlschemas.c: In function ‘xmlSchemaPResCompAttrErr’: +../xmlschemas.c:2834:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 2834 | if (refTypeStr == NULL) + | ^~ +../xmlschemas.c:2836:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 2836 | xmlSchemaPErrExt(ctxt, ownerElem, error, + | ^~~~~~~~~~~~~~~~ +../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeQNameValue’: +../xmlschemas.c:5824:6: warning: too many arguments for format [-Wformat-extra-args] + 5824 | NULL, value, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlGetMaxOccurs’: +../xmlschemas.c:6047:3: warning: too many arguments for format [-Wformat-extra-args] + 6047 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:6061:6: warning: too many arguments for format [-Wformat-extra-args] + 6061 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:6078:6: warning: too many arguments for format [-Wformat-extra-args] + 6078 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c: In function ‘xmlGetMinOccurs’: +../xmlschemas.c:6113:6: warning: too many arguments for format [-Wformat-extra-args] + 6113 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:6130:6: warning: too many arguments for format [-Wformat-extra-args] + 6130 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c: In function ‘xmlSchemaPGetBoolNodeValue’: +../xmlschemas.c:6175:6: warning: too many arguments for format [-Wformat-extra-args] + 6175 | NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlGetBooleanProp’: +../xmlschemas.c:6223:6: warning: too many arguments for format [-Wformat-extra-args] + 6223 | NULL, val, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeValue’: +../xmlschemas.c:6328:6: warning: too many arguments for format [-Wformat-extra-args] + 6328 | type, NULL, value, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaParseWildcardNs’: +../xmlschemas.c:6763:6: warning: too many arguments for format [-Wformat-extra-args] + 6763 | NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c:6801:7: warning: too many arguments for format [-Wformat-extra-args] + 6801 | nsItem, NULL, NULL, NULL); + | ^~~~~~ +../xmlschemas.c: In function ‘xmlSchemaParseLocalAttribute’: +../xmlschemas.c:7188:8: warning: too many arguments for format [-Wformat-extra-args] + 7188 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:7208:4: warning: too many arguments for format [-Wformat-extra-args] + 7208 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:7366:2: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 7366 | if (defValue != NULL) + | ^~ +../xmlschemas.c:7368:6: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 7368 | if (defValueType == WXS_ATTR_DEF_VAL_FIXED) + | ^~ +../xmlschemas.c: In function ‘xmlSchemaParseElement’: +../xmlschemas.c:8629:4: warning: too many arguments for format [-Wformat-extra-args] + 8629 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:8708:4: warning: too many arguments for format [-Wformat-extra-args] + 8708 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:8738:7: warning: too many arguments for format [-Wformat-extra-args] + 8738 | NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaParseSimpleType’: +../xmlschemas.c:9294:7: warning: too many arguments for format [-Wformat-extra-args] + 9294 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c: In function ‘xmlSchemaParseSchemaElement’: +../xmlschemas.c:9693:3: warning: too many arguments for format [-Wformat-extra-args] + 9693 | "(qualified | unqualified)", val, NULL, NULL, NULL); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +../xmlschemas.c:9706:3: warning: too many arguments for format [-Wformat-extra-args] + 9706 | "(qualified | unqualified)", val, NULL, NULL, NULL); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +../xmlschemas.c:9724:3: warning: too many arguments for format [-Wformat-extra-args] + 9724 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:9740:3: warning: too many arguments for format [-Wformat-extra-args] + 9740 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c: In function ‘xmlSchemaParseImport’: +../xmlschemas.c:10763:6: warning: too many arguments for format [-Wformat-extra-args] +10763 | NULL, namespaceName, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c:10774:6: warning: too many arguments for format [-Wformat-extra-args] +10774 | NULL, schemaLocation, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaParseComplexType’: +../xmlschemas.c:12233:8: warning: too many arguments for format [-Wformat-extra-args] +12233 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:12251:8: warning: too many arguments for format [-Wformat-extra-args] +12251 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c: In function ‘xmlSchemaValidateFacets’: +../xmlschemas.c:24253:3: warning: too many arguments for format [-Wformat-extra-args] +24253 | value, len, type, facetLink->facet, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c:24289:3: warning: too many arguments for format [-Wformat-extra-args] +24289 | value, length, type, facetLink->facet, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c:24341:7: warning: too many arguments for format [-Wformat-extra-args] +24341 | value, 0, type, NULL, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c:24386:4: warning: too many arguments for format [-Wformat-extra-args] +24386 | value, 0, type, facet, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c: In function ‘xmlSchemaSetValidStructuredErrors__internal_alias’: +../xmlschemas.c:27790:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] +27790 | if (ctxt == NULL) + | ^~ +../xmlschemas.c:27792:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ +27792 | ctxt->serror = serror; + | ^~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5D.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dbtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlschemastypes.c +../xmlschemastypes.c: In function ‘xmlSchemaTypeErrMemory’: +../xmlschemastypes.c:204:5: warning: too many arguments for format [-Wformat-extra-args] + 204 | __xmlSimpleError(XML_FROM_DATATYPE, XML_ERR_NO_MEMORY, node, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dchunk.c +../H5Dchunk.c: In function ‘H5D__chunk_init’: +../H5Dchunk.c:724:26: warning: unused variable ‘sc’ [-Wunused-variable] + 724 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_is_space_alloc’: +../H5Dchunk.c:816:32: warning: unused variable ‘sc’ [-Wunused-variable] + 816 | const H5O_storage_chunk_t *sc = &(storage->u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_dest’: +../H5Dchunk.c:2371:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2371 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_create’: +../H5Dchunk.c:2582:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2582 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_lookup’: +../H5Dchunk.c:2683:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2683 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_flush_entry’: +../H5Dchunk.c:2806:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2806 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_allocated’: +../H5Dchunk.c:3716:26: warning: unused variable ‘sc’ [-Wunused-variable] + 3716 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_allocate’: +../H5Dchunk.c:3809:32: warning: unused variable ‘sc’ [-Wunused-variable] + 3809 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_update_old_edge_chunks’: +../H5Dchunk.c:4242:32: warning: unused variable ‘sc’ [-Wunused-variable] + 4242 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c:4229:24: warning: unused variable ‘pline’ [-Wunused-variable] + 4229 | const H5O_pline_t *pline = &(dset->shared->dcpl_cache.pline); /* I/O pipeline info */ + | ^~~~~ +../H5Dchunk.c: In function ‘H5D__chunk_prune_by_extent’: +../H5Dchunk.c:4797:32: warning: unused variable ‘sc’ [-Wunused-variable] + 4797 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_delete’: +../H5Dchunk.c:5203:26: warning: unused variable ‘sc’ [-Wunused-variable] + 5203 | H5O_storage_chunk_t *sc = &(storage->u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_copy_cb’: +../H5Dchunk.c:5550:111: warning: passing argument 5 of ‘H5D__chunk_file_alloc’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 5550 | if(H5D__chunk_file_alloc(udata->idx_info_dst, NULL, &udata_dst.chunk_block, &need_insert, udata_dst.common.scaled) < 0) + | ~~~~~~~~~~~~~~~~^~~~~~~ +../H5Dchunk.c:300:13: note: expected ‘hsize_t *’ {aka ‘long long unsigned int *’} but argument is of type ‘const hsize_t *’ {aka ‘const long long unsigned int *’} + 300 | hsize_t scaled[]); + | ~~~~~~~~^~~~~~~~ +../H5Dchunk.c: In function ‘H5D__chunk_copy’: +../H5Dchunk.c:5689:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 5689 | if(NULL == (dt_mem = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) + | ^~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dchunk.c:55: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dchunk.c:5697:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 5697 | if(NULL == (dt_dst = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) + | ^~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dchunk.c:55: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dchunk.c: In function ‘H5D__chunk_bh_info’: +../H5Dchunk.c:5856:26: warning: unused variable ‘sc’ [-Wunused-variable] + 5856 | H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_dump_index’: +../H5Dchunk.c:5979:26: warning: unused variable ‘sc’ [-Wunused-variable] + 5979 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dcompact.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlunicode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dcontig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ddbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ddeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlwriter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dearray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Defl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dfarray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dfill.c +../H5Dfill.c: In function ‘H5D__fill’: +../H5Dfill.c:238:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 238 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(fill_type, H5T_COPY_ALL), FALSE)) < 0) + | ^~~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dfill.c:36: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dfill.c:241:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 241 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(buf_type, H5T_COPY_ALL), FALSE)) < 0) + | ^~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dfill.c:36: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dfill.c: In function ‘H5D__fill_init’: +../H5Dfill.c:413:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 413 | if(NULL == (fb_info->mem_type = H5T_copy(dset_type, H5T_COPY_REOPEN))) + | ^~~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dfill.c:36: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dint.c +../H5Dint.c: In function ‘H5D__init_type’: +../H5Dint.c:681:43: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 681 | if((dset->shared->type = H5T_copy(type, H5T_COPY_ALL)) == NULL) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dint.c:25: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dint.c: In function ‘H5D__mark’: +../H5Dint.c:3174:37: warning: passing argument 1 of ‘H5D__layout_oh_write’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 3174 | if(H5D__layout_oh_write(dataset, dxpl_id, oh, update_flags) < 0) + | ^~~~~~~ +In file included from ../H5Dint.c:25: +../H5Dpkg.h:638:43: note: expected ‘H5D_t *’ {aka ‘struct H5D_t *’} but argument is of type ‘const H5D_t *’ {aka ‘const struct H5D_t *’} + 638 | H5_DLL herr_t H5D__layout_oh_write(H5D_t *dataset, hid_t dxpl_id, H5O_t *oh, + | ~~~~~~~^~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dlayout.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dnone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Doh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dscatgath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dsingle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xpath.c +In file included from ../xpath.c:462: +../timsort.h: In function ‘libxml_domnode_tim_sort_collapse’: +../timsort.h:397:19: warning: variable ‘BD’ set but not used [-Wunused-but-set-variable] + 397 | int ABC, BCD, BD, CD; + | ^~ +../xpath.c: In function ‘xmlXPathNodeCollectAndTest’: +../xpath.c:12409:28: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘xmlXPathTypeVal’ {aka ‘enum ’} [-Wenum-compare] +12409 | } else if (cur->type == type) { + | ^~ +In file included from ../xpath.c:476: +At top level: +../trionan.c:218:1: warning: ‘trio_is_negative’ defined but not used [-Wunused-function] + 218 | trio_is_negative + | ^~~~~~~~~~~~~~~~ +../trionan.c:194:1: warning: ‘trio_is_special_quantity’ defined but not used [-Wunused-function] + 194 | trio_is_special_quantity + | ^~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dvirtual.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xpointer.c +../xpointer.c: In function ‘xmlXPtrNewRangeNodePoint__internal_alias’: +../xpointer.c:451:21: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘enum ’ [-Wenum-compare] + 451 | if (start->type != XPATH_POINT) + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlstring.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nanohttp_stream.c +../nanohttp_stream.c: In function ‘xmlParseJpegHeader’: +../nanohttp_stream.c:628:40: warning: pointer targets in passing argument 1 of ‘xmlStrncmp__internal_alias’ differ in signedness [-Wpointer-sign] + 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { + | ~~~~^~~~~~~~~~~~~~ + | | + | char * +In file included from ../libxml.h:106, + from ../nanohttp_stream.c:16: +../elfgcchack.h:11051:30: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘char *’ +11051 | extern __typeof (xmlStrncmp) xmlStrncmp__internal_alias __attribute((visibility("hidden"))); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../nanohttp_stream.c:628:56: warning: pointer targets in passing argument 2 of ‘xmlStrncmp__internal_alias’ differ in signedness [-Wpointer-sign] + 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { + | ^~~~~~~~~~~~ + | | + | const char * +In file included from ../libxml.h:106, + from ../nanohttp_stream.c:16: +../elfgcchack.h:11051:30: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘const char *’ +11051 | extern __typeof (xmlStrncmp) xmlStrncmp__internal_alias __attribute((visibility("hidden"))); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../nanohttp_stream.c: In function ‘xmlNanoHTTPScanAnswer’: +../elfgcchack.h:11072:19: warning: pointer targets in initialization of ‘const char *’ from ‘const xmlChar *’ {aka ‘const unsigned char *’} differ in signedness [-Wpointer-sign] +11072 | #define xmlStrstr xmlStrstr__internal_alias + | ^~~~~~~~~~~~~~~~~~~~~~~~~ +../nanohttp_stream.c:979:30: note: in expansion of macro ‘xmlStrstr’ + 979 | const char* boundaryName = xmlStrstr(BAD_CAST ctxt->contentType, BAD_CAST "boundary"); + | ^~~~~~~~~ +../nanohttp_stream.c:981:17: warning: pointer targets in assignment from ‘const xmlChar *’ {aka ‘const unsigned char *’} to ‘const char *’ differ in signedness [-Wpointer-sign] + 981 | boundaryName = xmlStrstr(BAD_CAST boundaryName, BAD_CAST "="); + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +g++ -o libxml2.so -shared -fPIC -Wl,-hlibxml2.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +/usr/bin/ar -rc libxml2.a buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +/usr/bin/ranlib libxml2.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +/usr/bin/ar -rc libnanohttp_stream.a nanohttp_stream.o buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +/usr/bin/ranlib libnanohttp_stream.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +g++ -o libnanohttp_stream.so -shared -fPIC -Wl,-hlibnanohttp_stream.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 nanohttp_stream.o buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o -lxml2 -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5E.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5E.c:52: +In function ‘strncpy’, + inlined from ‘H5E_get_class_name’ at ../H5E.c:646:8, + inlined from ‘H5Eget_class_name’ at ../H5E.c:610:21: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5E.c:52: +../H5E.c: In function ‘H5Eget_class_name’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5E.c:642:20: note: in expansion of macro ‘HDstrlen’ + 642 | len = (ssize_t)HDstrlen(cls->cls_name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Edeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Eint.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Eint.c:35: +In function ‘strncpy’, + inlined from ‘H5E_get_msg’ at ../H5Eint.c:143:8: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Eint.c:35: +../H5Eint.c: In function ‘H5E_get_msg’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Eint.c:139:20: note: in expansion of macro ‘HDstrlen’ + 139 | len = (ssize_t)HDstrlen(msg->msg); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp_stream.d -MT nanohttp_stream.obj ../nanohttp_stream.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlstring.d -MT xmlstring.obj ../xmlstring.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpointer.d -MT xpointer.obj ../xpointer.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpath.d -MT xpath.obj ../xpath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlwriter.d -MT xmlwriter.obj ../xmlwriter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlunicode.d -MT xmlunicode.obj ../xmlunicode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemastypes.d -MT xmlschemastypes.obj ../xmlschemastypes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemas.d -MT xmlschemas.obj ../xmlschemas.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlsave.d -MT xmlsave.obj ../xmlsave.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmodule.d -MT xmlmodule.obj ../xmlmodule.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlregexp.d -MT xmlregexp.obj ../xmlregexp.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlreader.d -MT xmlreader.obj ../xmlreader.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmemory.d -MT xmlmemory.obj ../xmlmemory.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlIO.d -MT xmlIO.obj ../xmlIO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xlink.d -MT xlink.obj ../xlink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xinclude.d -MT xinclude.obj ../xinclude.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF valid.d -MT valid.obj ../valid.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uri.d -MT uri.obj ../uri.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tree.d -MT tree.obj ../tree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threads.d -MT threads.obj ../threads.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF schematron.d -MT schematron.obj ../schematron.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX.d -MT SAX.obj ../SAX.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX2.d -MT SAX2.obj ../SAX2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF relaxng.d -MT relaxng.obj ../relaxng.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pattern.d -MT pattern.obj ../pattern.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parserInternals.d -MT parserInternals.obj ../parserInternals.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAsblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parser.d -MT parser.obj ../parser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp.d -MT nanohttp.obj ../nanohttp.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanoftp.d -MT nanoftp.obj ../nanoftp.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF list.d -MT list.obj ../list.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF legacy.d -MT legacy.obj ../legacy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLtree.d -MT HTMLtree.obj ../HTMLtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLparser.d -MT HTMLparser.obj ../HTMLparser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF hash.d -MT hash.obj ../hash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF globals.d -MT globals.obj ../globals.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error.d -MT error.obj ../error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entities.d -MT entities.obj ../entities.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d -MT encoding.obj ../encoding.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5F.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5F.c:24: +In function ‘strncpy’, + inlined from ‘H5Fget_name’ at ../H5F.c:1311:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5F.c:24: +../H5F.c: In function ‘H5Fget_name’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5F.c:1308:11: note: in expansion of macro ‘HDstrlen’ + 1308 | len = HDstrlen(H5F_OPEN_NAME(f)); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF DOCBparser.d -MT DOCBparser.obj ../DOCBparser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dict.d -MT dict.obj ../dict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF debugXML.d -MT debugXML.obj ../debugXML.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF chvalid.d -MT chvalid.obj ../chvalid.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF catalog.d -MT catalog.obj ../catalog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF c14n.d -MT c14n.obj ../c14n.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF buf.d -MT buf.obj ../buf.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Faccum.c +../H5Faccum.c: In function ‘H5F__accum_read’: +../H5Faccum.c:129:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 129 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5Faccum.c:130:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 130 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +../H5Faccum.c: In function ‘H5F__accum_write’: +../H5Faccum.c:442:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 442 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5Faccum.c:443:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 443 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +../H5Faccum.c: In function ‘H5F__accum_free’: +../H5Faccum.c:877:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 877 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5Faccum.c:878:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 878 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +../H5Faccum.c: In function ‘H5F__accum_flush’: +../H5Faccum.c:1045:29: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1045 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5Faccum.c:1046:28: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1046 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +mkdir ../../../include/os/WIN32/libxml +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fcwfs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fefc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Circular libxml2.dll.a <- nanohttp_stream.dll dependency dropped. +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ffake.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o buf.obj -c ../buf.c +../buf.c: In function ‘xmlBufMemoryError’: +../buf.c:94:5: warning: too many arguments for format [-Wformat-extra-args] + 94 | __xmlSimpleError(XML_FROM_BUFFER, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../buf.c: In function ‘xmlBufOverflowError’: +../buf.c:109:5: warning: too many arguments for format [-Wformat-extra-args] + 109 | __xmlSimpleError(XML_FROM_BUFFER, XML_BUF_OVERFLOW, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +In file included from ../buf.c:30: +../buf.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o c14n.obj -c ../c14n.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fmount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fsfile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o catalog.obj -c ../catalog.c +In file included from ../catalog.c:38: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o chvalid.obj -c ../chvalid.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fsuper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fsuper_cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ftest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o debugXML.obj -c ../debugXML.c +In file included from ../debugXML.c:24: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dict.obj -c ../dict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o DOCBparser.obj -c ../DOCBparser.c +In file included from ../os/default/libxml/DOCBparser.h:18, + from ../DOCBparser.c:18: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o encoding.obj -c ../encoding.c +../encoding.c: In function ‘xmlEncodingErrMemory’: +../encoding.c:86:5: warning: too many arguments for format [-Wformat-extra-args] + 86 | __xmlSimpleError(XML_FROM_I18N, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../encoding.c: In function ‘xmlCharEncCloseFunc’: +../encoding.c:2856:12: warning: variable ‘handler_in_list’ set but not used [-Wunused-but-set-variable] + 2856 | int i, handler_in_list = 0; + | ^~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o entities.obj -c ../entities.c +../entities.c: In function ‘xmlEntitiesErrMemory’: +../entities.c:76:5: warning: too many arguments for format [-Wformat-extra-args] + 76 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +In file included from ../entities.c:20: +../entities.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o error.obj -c ../error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o globals.obj -c ../globals.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o hash.obj -c ../hash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o HTMLparser.obj -c ../HTMLparser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o HTMLtree.obj -c ../HTMLtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDcore.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o legacy.obj -c ../legacy.c +In file included from ../legacy.c:19: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDfamily.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o list.obj -c ../list.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDlog.c +../H5FDlog.c: In function ‘H5FD_log_open’: +../H5FDlog.c:630:95: warning: ‘stat_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDlog.c:630:59: warning: ‘stat_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDlog.c:628:95: warning: ‘open_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDlog.c:628:59: warning: ‘open_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDmulti.c +In file included from /usr/include/string.h:495, + from ../H5FDmulti.c:27: +In function ‘strncpy’, + inlined from ‘H5FD_multi_sb_encode’ at ../H5FDmulti.c:697:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDmulti.c: In function ‘H5FD_multi_sb_encode’: +../H5FDmulti.c:696:20: note: length computed here + 696 | size_t n = strlen(file->fa.memb_name[mt]) + 1; + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nanoftp.obj -c ../nanoftp.c +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:45: warning: "EINPROGRESS" redefined + 45 | #define EINPROGRESS WSAEINPROGRESS + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:158: note: this is the location of the previous definition + 158 | #define EINPROGRESS 112 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:46: warning: "EALREADY" redefined + 46 | #define EALREADY WSAEALREADY + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:106: note: this is the location of the previous definition + 106 | #define EALREADY 103 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:47: warning: "ENOTSOCK" redefined + 47 | #define ENOTSOCK WSAENOTSOCK + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:146: note: this is the location of the previous definition + 146 | #define ENOTSOCK 128 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:48: warning: "EDESTADDRREQ" redefined + 48 | #define EDESTADDRREQ WSAEDESTADDRREQ + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:118: note: this is the location of the previous definition + 118 | #define EDESTADDRREQ 109 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:49: warning: "EMSGSIZE" redefined + 49 | #define EMSGSIZE WSAEMSGSIZE + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:126: note: this is the location of the previous definition + 126 | #define EMSGSIZE 115 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:50: warning: "EPROTOTYPE" redefined + 50 | #define EPROTOTYPE WSAEPROTOTYPE + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:231: note: this is the location of the previous definition + 231 | #define EPROTOTYPE 136 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:51: warning: "ENOPROTOOPT" redefined + 51 | #define ENOPROTOOPT WSAENOPROTOOPT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:142: note: this is the location of the previous definition + 142 | #define ENOPROTOOPT 123 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:52: warning: "EPROTONOSUPPORT" redefined + 52 | #define EPROTONOSUPPORT WSAEPROTONOSUPPORT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:178: note: this is the location of the previous definition + 178 | #define EPROTONOSUPPORT 135 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:54: warning: "EOPNOTSUPP" redefined + 54 | #define EOPNOTSUPP WSAEOPNOTSUPP + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:162: note: this is the location of the previous definition + 162 | #define EOPNOTSUPP 130 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:56: warning: "EAFNOSUPPORT" redefined + 56 | #define EAFNOSUPPORT WSAEAFNOSUPPORT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:82: note: this is the location of the previous definition + 82 | #define EAFNOSUPPORT 102 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:57: warning: "EADDRINUSE" redefined + 57 | #define EADDRINUSE WSAEADDRINUSE + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:86: note: this is the location of the previous definition + 86 | #define EADDRINUSE 100 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:58: warning: "EADDRNOTAVAIL" redefined + 58 | #define EADDRNOTAVAIL WSAEADDRNOTAVAIL + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:90: note: this is the location of the previous definition + 90 | #define EADDRNOTAVAIL 101 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:59: warning: "ENETDOWN" redefined + 59 | #define ENETDOWN WSAENETDOWN + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:130: note: this is the location of the previous definition + 130 | #define ENETDOWN 116 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:60: warning: "ENETUNREACH" redefined + 60 | #define ENETUNREACH WSAENETUNREACH + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:138: note: this is the location of the previous definition + 138 | #define ENETUNREACH 118 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:61: warning: "ENETRESET" redefined + 61 | #define ENETRESET WSAENETRESET + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:134: note: this is the location of the previous definition + 134 | #define ENETRESET 117 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:62: warning: "ECONNABORTED" redefined + 62 | #define ECONNABORTED WSAECONNABORTED + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:102: note: this is the location of the previous definition + 102 | #define ECONNABORTED 106 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:63: warning: "ECONNRESET" redefined + 63 | #define ECONNRESET WSAECONNRESET + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:114: note: this is the location of the previous definition + 114 | #define ECONNRESET 108 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:64: warning: "ENOBUFS" redefined + 64 | #define ENOBUFS WSAENOBUFS + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:98: note: this is the location of the previous definition + 98 | #define ENOBUFS 119 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:65: warning: "EISCONN" redefined + 65 | #define EISCONN WSAEISCONN + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:94: note: this is the location of the previous definition + 94 | #define EISCONN 113 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:66: warning: "ENOTCONN" redefined + 66 | #define ENOTCONN WSAENOTCONN + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:150: note: this is the location of the previous definition + 150 | #define ENOTCONN 126 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:68: warning: "ETIMEDOUT" redefined + 68 | #define ETIMEDOUT WSAETIMEDOUT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:223: note: this is the location of the previous definition + 223 | #define ETIMEDOUT 138 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:69: warning: "ECONNREFUSED" redefined + 69 | #define ECONNREFUSED WSAECONNREFUSED + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:110: note: this is the location of the previous definition + 110 | #define ECONNREFUSED 107 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:70: warning: "ELOOP" redefined + 70 | #define ELOOP WSAELOOP + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:227: note: this is the location of the previous definition + 227 | #define ELOOP 114 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:72: warning: "EHOSTUNREACH" redefined + 72 | #define EHOSTUNREACH WSAEHOSTUNREACH + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:122: note: this is the location of the previous definition + 122 | #define EHOSTUNREACH 110 + | +../nanoftp.c: In function ‘xmlFTPErrMemory’: +../nanoftp.c:176:5: warning: too many arguments for format [-Wformat-extra-args] + 176 | __xmlSimpleError(XML_FROM_FTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../nanoftp.c: In function ‘xmlNanoFTPGetConnection’: +../nanoftp.c:1479:66: warning: pointer targets in passing argument 3 of ‘getsockname’ differ in signedness [-Wpointer-sign] + 1479 | getsockname(ctxt->dataFd, (struct sockaddr *) &dataAddr, &dataAddrLen); + | ^~~~~~~~~~~~ + | | + | unsigned int * +In file included from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/winsock2.h:1009:82: note: expected ‘int *’ but argument is of type ‘unsigned int *’ + 1009 | WINSOCK_API_LINKAGE int WSAAPI getsockname(SOCKET s,struct sockaddr *name,int *namelen); + | ~~~~~^~~~~~~ +../nanoftp.c:1492:66: warning: pointer targets in passing argument 3 of ‘getsockname’ differ in signedness [-Wpointer-sign] + 1492 | getsockname(ctxt->dataFd, (struct sockaddr *) &dataAddr, &dataAddrLen); + | ^~~~~~~~~~~~ + | | + | unsigned int * +In file included from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/winsock2.h:1009:82: note: expected ‘int *’ but argument is of type ‘unsigned int *’ + 1009 | WINSOCK_API_LINKAGE int WSAAPI getsockname(SOCKET s,struct sockaddr *name,int *namelen); + | ~~~~~^~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDsec2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDspace.c +../H5FDspace.c: In function ‘H5FD_extend’: +../H5FDspace.c:104:13: warning: unused variable ‘extra’ [-Wunused-variable] + 104 | hsize_t extra; /* Extra space to allocate, to align request */ + | ^~~~~ +../H5FDspace.c:102:13: warning: unused variable ‘orig_size’ [-Wunused-variable] + 102 | hsize_t orig_size = size; /* Original allocation size */ + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDstdio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nanohttp.obj -c ../nanohttp.c +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:45: warning: "EINPROGRESS" redefined + 45 | #define EINPROGRESS WSAEINPROGRESS + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:158: note: this is the location of the previous definition + 158 | #define EINPROGRESS 112 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:46: warning: "EALREADY" redefined + 46 | #define EALREADY WSAEALREADY + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:106: note: this is the location of the previous definition + 106 | #define EALREADY 103 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:47: warning: "ENOTSOCK" redefined + 47 | #define ENOTSOCK WSAENOTSOCK + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:146: note: this is the location of the previous definition + 146 | #define ENOTSOCK 128 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:48: warning: "EDESTADDRREQ" redefined + 48 | #define EDESTADDRREQ WSAEDESTADDRREQ + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:118: note: this is the location of the previous definition + 118 | #define EDESTADDRREQ 109 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:49: warning: "EMSGSIZE" redefined + 49 | #define EMSGSIZE WSAEMSGSIZE + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:126: note: this is the location of the previous definition + 126 | #define EMSGSIZE 115 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:50: warning: "EPROTOTYPE" redefined + 50 | #define EPROTOTYPE WSAEPROTOTYPE + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:231: note: this is the location of the previous definition + 231 | #define EPROTOTYPE 136 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:51: warning: "ENOPROTOOPT" redefined + 51 | #define ENOPROTOOPT WSAENOPROTOOPT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:142: note: this is the location of the previous definition + 142 | #define ENOPROTOOPT 123 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:52: warning: "EPROTONOSUPPORT" redefined + 52 | #define EPROTONOSUPPORT WSAEPROTONOSUPPORT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:178: note: this is the location of the previous definition + 178 | #define EPROTONOSUPPORT 135 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:54: warning: "EOPNOTSUPP" redefined + 54 | #define EOPNOTSUPP WSAEOPNOTSUPP + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:162: note: this is the location of the previous definition + 162 | #define EOPNOTSUPP 130 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:56: warning: "EAFNOSUPPORT" redefined + 56 | #define EAFNOSUPPORT WSAEAFNOSUPPORT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:82: note: this is the location of the previous definition + 82 | #define EAFNOSUPPORT 102 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:57: warning: "EADDRINUSE" redefined + 57 | #define EADDRINUSE WSAEADDRINUSE + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:86: note: this is the location of the previous definition + 86 | #define EADDRINUSE 100 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:58: warning: "EADDRNOTAVAIL" redefined + 58 | #define EADDRNOTAVAIL WSAEADDRNOTAVAIL + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:90: note: this is the location of the previous definition + 90 | #define EADDRNOTAVAIL 101 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:59: warning: "ENETDOWN" redefined + 59 | #define ENETDOWN WSAENETDOWN + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:130: note: this is the location of the previous definition + 130 | #define ENETDOWN 116 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:60: warning: "ENETUNREACH" redefined + 60 | #define ENETUNREACH WSAENETUNREACH + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:138: note: this is the location of the previous definition + 138 | #define ENETUNREACH 118 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:61: warning: "ENETRESET" redefined + 61 | #define ENETRESET WSAENETRESET + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:134: note: this is the location of the previous definition + 134 | #define ENETRESET 117 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:62: warning: "ECONNABORTED" redefined + 62 | #define ECONNABORTED WSAECONNABORTED + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:102: note: this is the location of the previous definition + 102 | #define ECONNABORTED 106 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:63: warning: "ECONNRESET" redefined + 63 | #define ECONNRESET WSAECONNRESET + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:114: note: this is the location of the previous definition + 114 | #define ECONNRESET 108 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:64: warning: "ENOBUFS" redefined + 64 | #define ENOBUFS WSAENOBUFS + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:98: note: this is the location of the previous definition + 98 | #define ENOBUFS 119 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:65: warning: "EISCONN" redefined + 65 | #define EISCONN WSAEISCONN + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:94: note: this is the location of the previous definition + 94 | #define EISCONN 113 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:66: warning: "ENOTCONN" redefined + 66 | #define ENOTCONN WSAENOTCONN + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:150: note: this is the location of the previous definition + 150 | #define ENOTCONN 126 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:68: warning: "ETIMEDOUT" redefined + 68 | #define ETIMEDOUT WSAETIMEDOUT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:223: note: this is the location of the previous definition + 223 | #define ETIMEDOUT 138 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:69: warning: "ECONNREFUSED" redefined + 69 | #define ECONNREFUSED WSAECONNREFUSED + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:110: note: this is the location of the previous definition + 110 | #define ECONNREFUSED 107 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:70: warning: "ELOOP" redefined + 70 | #define ELOOP WSAELOOP + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:227: note: this is the location of the previous definition + 227 | #define ELOOP 114 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:72: warning: "EHOSTUNREACH" redefined + 72 | #define EHOSTUNREACH WSAEHOSTUNREACH + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:122: note: this is the location of the previous definition + 122 | #define EHOSTUNREACH 110 + | +../nanohttp.c: In function ‘xmlHTTPErrMemory’: +../nanohttp.c:177:5: warning: too many arguments for format [-Wformat-extra-args] + 177 | __xmlSimpleError(XML_FROM_HTTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../nanohttp.c: In function ‘xmlNanoHTTPConnectAttempt’: +../nanohttp.c:1002:67: warning: pointer targets in passing argument 5 of ‘getsockopt’ differ in signedness [-Wpointer-sign] + 1002 | if (getsockopt(s, SOL_SOCKET, SO_ERROR, (char *) &status, &len) < + | ^~~~ + | | + | unsigned int * +In file included from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/winsock2.h:1010:94: note: expected ‘int *’ but argument is of type ‘unsigned int *’ + 1010 | WINSOCK_API_LINKAGE int WSAAPI getsockopt(SOCKET s,int level,int optname,char *optval,int *optlen); + | ~~~~~^~~~~~ +../nanohttp.c: In function ‘xmlNanoHTTPConnectHost’: +../nanohttp.c:1050:9: warning: unused variable ‘i’ [-Wunused-variable] + 1050 | int i; + | ^ +../nanohttp.c:1043:20: warning: unused variable ‘ia’ [-Wunused-variable] + 1043 | struct in_addr ia; + | ^~ +../nanohttp.c:1041:21: warning: unused variable ‘h’ [-Wunused-variable] + 1041 | struct hostent *h; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FScache.c +../H5FScache.c: In function ‘H5FS__cache_sinfo_deserialize’: +../H5FScache.c:1013:17: warning: variable ‘old_tot_space’ set but not used [-Wunused-but-set-variable] + 1013 | hsize_t old_tot_space; /* Total space managed from header */ + | ^~~~~~~~~~~~~ +../H5FScache.c:1012:17: warning: variable ‘old_ghost_sect_count’ set but not used [-Wunused-but-set-variable] + 1012 | hsize_t old_ghost_sect_count; /* Total ghost section count from header */ + | ^~~~~~~~~~~~~~~~~~~~ +../H5FScache.c:1011:17: warning: variable ‘old_serial_sect_count’ set but not used [-Wunused-but-set-variable] + 1011 | hsize_t old_serial_sect_count; /* Total serializable section count from header */ + | ^~~~~~~~~~~~~~~~~~~~~ +../H5FScache.c:1010:17: warning: variable ‘old_tot_sect_count’ set but not used [-Wunused-but-set-variable] + 1010 | hsize_t old_tot_sect_count; /* Total section count from header */ + | ^~~~~~~~~~~~~~~~~~ +../H5FScache.c: In function ‘H5FS__cache_sinfo_image_len’: +../H5FScache.c:1119:19: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] + 1119 | const H5FS_t *fspace; /* Free space header */ + | ^~~~~~ +../H5FScache.c: In function ‘H5FS__cache_sinfo_serialize’: +../H5FScache.c:1249:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] + 1249 | H5FS_t *fspace; /* Free space header */ + | ^~~~~~ +../H5FScache.c: In function ‘H5FS__cache_sinfo_free_icr’: +../H5FScache.c:1396:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] + 1396 | H5FS_t *fspace; /* Free space header */ + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FStest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5G.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gcompact.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Gcompact.c:28: +In function ‘strncpy’, + inlined from ‘H5G__compact_get_name_by_idx’ at ../H5Gcompact.c:246:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Gcompact.c:28: +../H5Gcompact.c: In function ‘H5G__compact_get_name_by_idx’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gcompact.c:242:26: note: in expansion of macro ‘HDstrlen’ + 242 | ret_value = (ssize_t)HDstrlen(ltable.lnks[idx].name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gdense.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Gdense.c:35: +In function ‘strncpy’, + inlined from ‘H5G__dense_get_name_by_idx’ at ../H5Gdense.c:1278:13: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Gdense.c:35: +../H5Gdense.c: In function ‘H5G__dense_get_name_by_idx’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gdense.c:1274:30: note: in expansion of macro ‘HDstrlen’ + 1274 | ret_value = (ssize_t)HDstrlen(ltable.lnks[n].name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gent.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Glink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o parser.obj -c ../parser.c +../parser.c: In function ‘xmlAddSpecialAttr’: +../parser.c:1327:22: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 1327 | (void *) (long) type); + | ^ +../parser.c: In function ‘xmlCleanSpecialAttrCallback’: +../parser.c:1346:10: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1346 | if (((long) payload) == XML_ATTRIBUTE_CDATA) { + | ^ +../parser.c: In function ‘nameNsPush’: +../parser.c:1858:43: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 1858 | ctxt->pushTab[ctxt->nameNr * 3 + 2] = (void *) (long) nsNr; + | ^ +../parser.c: In function ‘xmlParseAttribute2’: +../parser.c:9262:22: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 9262 | type = (int) (long) xmlHashQLookup2(ctxt->attsSpecial, + | ^ +../parser.c: In function ‘xmlParseTryOrFinish’: +../parser.c:11788:16: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] +11788 | (int) (long) ctxt->pushTab[ctxt->nameNr * 3 - 1], 0); + | ^ +In file included from ../parser.c:51: +../parser.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gname.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Gname.c:35: +In function ‘strncat’, + inlined from ‘H5G_build_fullpath’ at ../H5Gname.c:327:5, + inlined from ‘H5G_build_fullpath_refstr_str’ at ../H5Gname.c:367:17: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Gname.c:35: +../H5Gname.c: In function ‘H5G_build_fullpath_refstr_str’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gname.c:316:16: note: in expansion of macro ‘HDstrlen’ + 316 | name_len = HDstrlen(name); + | ^~~~~~~~ +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Gname.c:35: +In function ‘strncat’, + inlined from ‘H5G_name_move_path’ at ../H5Gname.c:771:13, + inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:1028:24, + inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Gname.c:35: +../H5Gname.c: In function ‘H5G_name_replace_cb’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gname.c:717:23: note: in expansion of macro ‘HDstrlen’ + 717 | full_suffix_len = HDstrlen(full_suffix); + | ^~~~~~~~ +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Gname.c:35: +In function ‘strncat’, + inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:1040:17, + inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Gname.c:35: +../H5Gname.c: In function ‘H5G_name_replace_cb’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gname.c:1024:35: note: in expansion of macro ‘HDstrlen’ + 1024 | full_suffix_len = HDstrlen(full_suffix); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gnode.c +../H5Gnode.c: In function ‘H5G_node_remove’: +../H5Gnode.c:790:21: warning: unused variable ‘lt_key’ [-Wunused-variable] + 790 | H5G_node_key_t *lt_key = (H5G_node_key_t *)_lt_key; + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o parserInternals.obj -c ../parserInternals.c +../parserInternals.c: In function ‘xmlNextChar’: +../parserInternals.c:473:9: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 473 | if (c == 0xC0) + | ^~ +../parserInternals.c:475:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 475 | if (cur[1] == 0) { + | ^~ +In file included from ../parserInternals.c:42: +../parserInternals.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gobj.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Goh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Groot.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pattern.obj -c ../pattern.c +In file included from ../pattern.c:35: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gstab.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Gstab.c:29: +In function ‘strncpy’, + inlined from ‘H5G__stab_get_name_by_idx’ at ../H5Gstab.c:803:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Gstab.c:29: +../H5Gstab.c: In function ‘H5G__stab_get_name_by_idx’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gstab.c:799:26: note: in expansion of macro ‘HDstrlen’ + 799 | ret_value = (ssize_t)HDstrlen(udata.name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gtraverse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HF.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFcache.c +../H5HFcache.c: In function ‘H5HF__cache_hdr_serialize’: +../H5HFcache.c:774:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 774 | hdr->f = f; + | ^ +../H5HFcache.c: In function ‘H5HF__cache_iblock_serialize’: +../H5HFcache.c:1361:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1361 | hdr->f = f; + | ^ +../H5HFcache.c: In function ‘H5HF__cache_iblock_notify’: +../H5HFcache.c:1477:18: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] + 1477 | unsigned indir_idx; /* Index in parent's child iblock pointer array */ + | ^~~~~~~~~ +../H5HFcache.c:1476:26: warning: unused variable ‘par_iblock’ [-Wunused-variable] + 1476 | H5HF_indirect_t *par_iblock = iblock->parent; + | ^~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFdtable.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o relaxng.obj -c ../relaxng.c +../relaxng.c: In function ‘xmlRelaxNGComputeInterleaves’: +../relaxng.c:4407:44: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 4407 | (void *) (long) (i + 1)); + | ^ +../relaxng.c:4415:48: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 4415 | (void *) (long) (i + 1)); + | ^ +../relaxng.c:4419:48: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 4419 | (void *) (long) (i + 1)); + | ^ +../relaxng.c:4426:48: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 4426 | (void *) (long) (i + 1)); + | ^ +../relaxng.c:4430:48: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 4430 | (void *) (long) (i + 1)); + | ^ +../relaxng.c: In function ‘xmlRelaxNGValidateInterleave’: +../relaxng.c:9390:22: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 9390 | i = ((long) tmp) - 1; + | ^ +In file included from ../relaxng.c:25: +../relaxng.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFhuge.c +../H5HFhuge.c: In function ‘H5HF_huge_write’: +../H5HFhuge.c:890:8: warning: ‘obj_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 890 | if(H5F_block_write(hdr->f, H5FD_MEM_FHEAP_HUGE_OBJ, obj_addr, obj_size, H5AC_rawdata_dxpl_id, obj) < 0) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o SAX2.obj -c ../SAX2.c +../SAX2.c: In function ‘xmlSAX2TextNode’: +../SAX2.c:1911:19: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 1911 | ret->psvi = (void *) (long) ctxt->input->line; + | ^ +In file included from ../SAX2.c:18: +../SAX2.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o SAX.obj -c ../SAX.c +In file included from ../SAX.c:18: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o schematron.obj -c ../schematron.c +../schematron.c: In function ‘xmlSchematronPErrMemory’: +../schematron.c:234:22: warning: too many arguments for format [-Wformat-extra-args] + 234 | extra); + | ^~~~~ +../schematron.c: In function ‘xmlSchematronVErrMemory’: +../schematron.c:284:22: warning: too many arguments for format [-Wformat-extra-args] + 284 | extra); + | ^~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFiter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFman.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o threads.obj -c ../threads.c +../threads.c: In function ‘__xmlGlobalInitMutexLock’: +../threads.c:461:43: warning: passing argument 1 of ‘_InterlockedCompareExchangePointer’ from incompatible pointer type [-Wincompatible-pointer-types] + 461 | InterlockedCompareExchangePointer(&global_init_lock, cs, NULL); + | ^~~~~~~~~~~~~~~~~ + | | + | struct _RTL_CRITICAL_SECTION * volatile* +In file included from /usr/share/mingw-w64/include/winnt.h:27, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from ../threads.c:30: +/usr/share/mingw-w64/include/psdk_inc/intrin-impl.h:1571:58: note: expected ‘void * volatile*’ but argument is of type ‘struct _RTL_CRITICAL_SECTION * volatile*’ + 1571 | void *_InterlockedCompareExchangePointer(void *volatile *Destination, void *ExChange, void *Comperand) { + | ~~~~~~~~~~~~~~~~^~~~~~~~~~~ +../threads.c: In function ‘xmlOnceInit’: +../threads.c:962:34: warning: pointer targets in passing argument 1 of ‘_InterlockedIncrement’ differ in signedness [-Wpointer-sign] + 962 | if (InterlockedIncrement(&run_once.control) == 1) { + | ^~~~~~~~~~~~~~~~~ + | | + | DWORD * {aka long unsigned int *} +In file included from /usr/share/mingw-w64/include/winnt.h:27, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from ../threads.c:30: +/usr/share/mingw-w64/include/psdk_inc/intrin-impl.h:1505:51: note: expected ‘volatile long int *’ but argument is of type ‘DWORD *’ {aka ‘long unsigned int *’} + 1505 | __LONG32 _InterlockedIncrement(__LONG32 volatile *Addend) { + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFsection.c +../H5HFsection.c: In function ‘H5HF_sect_single_valid’: +../H5HFsection.c:1191:20: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] + 1191 | herr_t status; /* Generic status value */ + | ^~~~~~ +../H5HFsection.c:1189:20: warning: variable ‘dblock_overhead’ set but not used [-Wunused-but-set-variable] + 1189 | size_t dblock_overhead; /* Direct block's overhead */ + | ^~~~~~~~~~~~~~~ +../H5HFsection.c: In function ‘H5HF_sect_row_valid’: +../H5HFsection.c:2000:14: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] + 2000 | unsigned indir_idx; /* Index of row in underlying indirect section's row array */ + | ^~~~~~~~~ +../H5HFsection.c: In function ‘H5HF_sect_indirect_valid’: +../H5HFsection.c:4107:44: warning: variable ‘tmp_row_sect2’ set but not used [-Wunused-but-set-variable] + 4107 | const H5HF_free_section_t *tmp_row_sect2; /* Pointer to row section */ + | ^~~~~~~~~~~~~ +../H5HFsection.c:4099:40: warning: variable ‘tmp_row_sect’ set but not used [-Wunused-but-set-variable] + 4099 | const H5HF_free_section_t *tmp_row_sect; /* Pointer to row section */ + | ^~~~~~~~~~~~ +../H5HFsection.c:4134:44: warning: variable ‘tmp_child_sect2’ set but not used [-Wunused-but-set-variable] + 4134 | const H5HF_free_section_t *tmp_child_sect2; /* Pointer to child indirect section */ + | ^~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFtiny.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HGcache.c +../H5HGcache.c: In function ‘H5HG__cache_heap_get_final_load_size’: +../H5HGcache.c:225:17: warning: ‘*((void *)&heap+280)’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 225 | *actual_len = heap.size; + | ~~~~~~~~~~~~^~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HGdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HGquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tree.obj -c ../tree.c +../tree.c: In function ‘xmlTreeErrMemory’: +../tree.c:74:5: warning: too many arguments for format [-Wformat-extra-args] + 74 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../tree.c: In function ‘xmlGetLineNoInternal’: +../tree.c:4599:19: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 4599 | result = (long) node->psvi; + | ^ +../tree.c: In function ‘xmlGetNodePath’: +../tree.c:4758:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 4758 | if (tmp->type == XML_COMMENT_NODE) + | ^~ +../tree.c:4760:21: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 4760 | tmp = tmp->next; + | ^~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLprfx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLdblk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o uri.obj -c ../uri.c +../uri.c: In function ‘xmlCanonicPath’: +../uri.c:2475:14: warning: pointer targets in assignment from ‘xmlChar *’ {aka ‘unsigned char *’} to ‘char *’ differ in signedness [-Wpointer-sign] + 2475 | uri->scheme = xmlStrdup(BAD_CAST "file"); + | ^ +../uri.c:2484:4: warning: pointer targets in assignment from ‘char *’ to ‘xmlChar *’ {aka ‘unsigned char *’} differ in signedness [-Wpointer-sign] + 2484 | p = uri->path + 1; + | ^ +../uri.c:2485:10: warning: pointer targets in passing argument 1 of ‘strncpy’ differ in signedness [-Wpointer-sign] + 2485 | strncpy(p, path, len + 1); + | ^ + | | + | xmlChar * {aka unsigned char *} +In file included from /usr/share/mingw-w64/include/io.h:10, + from ../os/WIN32/config.h:23, + from ../libxml.h:39, + from ../uri.c:12: +/usr/share/mingw-w64/include/string.h:89:9: note: expected ‘char * restrict’ but argument is of type ‘xmlChar *’ {aka ‘unsigned char *’} + 89 | char *strncpy(char * __restrict__ _Dest,const char * __restrict__ _Source,size_t _Count) __MINGW_ATTRIB_DEPRECATED_SEC_WARN; + | ^~~~~~~ +../uri.c:2485:13: warning: pointer targets in passing argument 2 of ‘strncpy’ differ in signedness [-Wpointer-sign] + 2485 | strncpy(p, path, len + 1); + | ^~~~ + | | + | const xmlChar * {aka const unsigned char *} +In file included from /usr/share/mingw-w64/include/io.h:10, + from ../os/WIN32/config.h:23, + from ../libxml.h:39, + from ../uri.c:12: +/usr/share/mingw-w64/include/string.h:89:9: note: expected ‘const char * restrict’ but argument is of type ‘const xmlChar *’ {aka ‘const unsigned char *’} + 89 | char *strncpy(char * __restrict__ _Dest,const char * __restrict__ _Source,size_t _Count) __MINGW_ATTRIB_DEPRECATED_SEC_WARN; + | ^~~~~~~ +../uri.c:2487:12: warning: pointer targets in assignment from ‘xmlChar *’ {aka ‘unsigned char *’} to ‘char *’ differ in signedness [-Wpointer-sign] + 2487 | uri->path = xmlStrdup(path); + | ^ +../uri.c:2492:4: warning: pointer targets in assignment from ‘char *’ to ‘xmlChar *’ {aka ‘unsigned char *’} differ in signedness [-Wpointer-sign] + 2492 | p = uri->path; + | ^ +../uri.c:2393:9: warning: unused variable ‘i’ [-Wunused-variable] + 2393 | int i = 0; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5I.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Itest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5L.c +../H5L.c: In function ‘H5L_move_cb’: +../H5L.c:2639:41: warning: passing argument 1 of ‘H5RS_wrap’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 2639 | dst_name_r = H5RS_wrap(udata->dst_name); + | ~~~~~^~~~~~~~~~ +In file included from ../H5Gprivate.h:35, + from ../H5Tprivate.h:28, + from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5L.c:26: +../H5RSprivate.h:47:20: note: expected ‘char *’ but argument is of type ‘const char *’ + 47 | H5_DLL H5RS_str_t *H5RS_wrap(char *s); + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Lexternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o valid.obj -c ../valid.c +In file included from ../valid.c:24: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MF.c +../H5MF.c: In function ‘H5MF_settle_meta_data_fsm’: +../H5MF.c:3249:17: warning: unused variable ‘fs_stat’ [-Wunused-variable] + 3249 | H5FS_stat_t fs_stat; /* Information for hdr FSM */ + | ^~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MFaggr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xinclude.obj -c ../xinclude.c +In file included from ../xinclude.c:22: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xlink.obj -c ../xlink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MFsection.c +../H5MFsection.c: In function ‘H5MF_sect_split’: +../H5MFsection.c:376:22: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 376 | FUNC_LEAVE_NOAPI((H5FS_section_info_t *)ret_value) + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MPtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlIO.obj -c ../xmlIO.c +../xmlIO.c:63: warning: "stat" redefined + 63 | # define stat _stat + | +In file included from ../xmlIO.c:24: +/usr/share/mingw-w64/include/sys/stat.h:279: note: this is the location of the previous definition + 279 | #define stat _stat64 + | +In file included from ../os/default/libxml/nanoftp.h:20, + from ../xmlIO.c:92: +/usr/share/mingw-w64/include/winsock2.h:15:2: warning: #warning Please include winsock2.h before windows.h [-Wcpp] + 15 | #warning Please include winsock2.h before windows.h + | ^~~~~~~ +../xmlIO.c: In function ‘xmlIOErrMemory’: +../xmlIO.c:256:5: warning: too many arguments for format [-Wformat-extra-args] + 256 | __xmlSimpleError(XML_FROM_IO, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../xmlIO.c: In function ‘xmlFdRead’: +../xmlIO.c:829:22: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 829 | ret = read((int) (long) context, &buffer[0], len); + | ^ +../xmlIO.c: In function ‘xmlFdWrite’: +../xmlIO.c:850:20: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 850 | ret = write((int) (long) context, &buffer[0], len); + | ^ +../xmlIO.c: In function ‘xmlFdClose’: +../xmlIO.c:868:23: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 868 | ret = close((int) (long) context); + | ^ +../xmlIO.c: In function ‘xmlZMemBuffExtend’: +../xmlIO.c:1675:33: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘size_t’ {aka ‘long long unsigned int’} [-Wformat=] + 1675 | "xmlZMemBuffExtend: %s %lu bytes.\n", + | ~~^ + | | + | long unsigned int + | %I64u + 1676 | "Allocation failure extending output buffer to", + 1677 | new_size ); + | ~~~~~~~~ + | | + | size_t {aka long long unsigned int} +../xmlIO.c: In function ‘xmlParserInputBufferCreateFd’: +../xmlIO.c:3006:24: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 3006 | ret->context = (void *) (long) fd; + | ^ +../xmlIO.c: In function ‘xmlOutputBufferCreateFd’: +../xmlIO.c:3112:24: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 3112 | ret->context = (void *) (long) fd; + | ^ +In file included from ../xmlIO.c:88: +../xmlIO.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5O.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlmemory.obj -c ../xmlmemory.c +../xmlmemory.c: In function ‘xmlMemFree’: +../xmlmemory.c:476:33: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 476 | "xmlMemFree(%lX) error\n", (unsigned long) ptr); + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oainfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oalloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlreader.obj -c ../xmlreader.c +In file included from ../xmlreader.c:34: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oattr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oattribute.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Obogus.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Obtreek.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocache_image.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ochunk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocont.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlregexp.obj -c ../xmlregexp.c +In file included from ../xmlregexp.c:31: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlmodule.obj -c ../xmlmodule.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Odbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Odrvinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlsave.obj -c ../xmlsave.c +../xmlsave.c: In function ‘xmlSaveErrMemory’: +../xmlsave.c:111:5: warning: too many arguments for format [-Wformat-extra-args] + 111 | __xmlSimpleError(XML_FROM_OUTPUT, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +In file included from ../xmlsave.c:14: +../xmlsave.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Odtype.c +../H5Odtype.c: In function ‘H5O_dtype_copy’: +../H5Odtype.c:1192:32: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1192 | if(NULL == (dst = H5T_copy(src, H5T_COPY_ALL))) + | ^~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Odtype.c:19: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Odtype.c: In function ‘H5O_dtype_pre_copy_file’: +../H5Odtype.c:1541:49: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1541 | if(NULL == (udata->src_dtype = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) + | ^~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Odtype.c:19: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oefl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ofill.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oflush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ofsinfo.c +../H5Ofsinfo.c: In function ‘H5O_fsinfo_decode’: +../H5Ofsinfo.c:132:35: warning: ‘threshold’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 132 | fsinfo->threshold = threshold; + | ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oginfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Olayout.c +../H5Olayout.c: In function ‘H5O__layout_decode’: +../H5Olayout.c:412:90: warning: ‘tmp_hsize’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 412 | if(NULL == (mesg->storage.u.virt.list = (H5O_storage_virtual_ent_t *)H5MM_calloc((size_t)tmp_hsize * sizeof(H5O_storage_virtual_ent_t)))) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Olinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Olink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Omessage.c +../H5Omessage.c: In function ‘H5O_msg_reset_share’: +../H5Omessage.c:1691:28: warning: variable ‘type’ set but not used [-Wunused-but-set-variable] + 1691 | const H5O_msg_class_t *type; /* Actual H5O class type for the ID */ + | ^~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Omtime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oname.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Onull.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Opline.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Orefcount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Osdspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oshared.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oshmesg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ostab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Otest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ounknown.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5P.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pacpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdapl.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Pdapl.c:35: +In function ‘strncpy’, + inlined from ‘H5Pget_efile_prefix’ at ../H5Pdapl.c:1280:13: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Pdapl.c:35: +../H5Pdapl.c: In function ‘H5Pget_efile_prefix’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Pdapl.c:1278:15: note: in expansion of macro ‘HDstrlen’ + 1278 | len = HDstrlen(my_prefix); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlschemas.obj -c ../xmlschemas.c +../xmlschemas.c: In function ‘xmlSchemaPSimpleErr’: +../xmlschemas.c:1861:22: warning: too many arguments for format [-Wformat-extra-args] + 1861 | msg); + | ^~~ +../xmlschemas.c: In function ‘xmlSchemaPErrMemory’: +../xmlschemas.c:1878:22: warning: too many arguments for format [-Wformat-extra-args] + 1878 | extra); + | ^~~~~ +../xmlschemas.c: In function ‘xmlSchemaVErrMemory’: +../xmlschemas.c:2002:22: warning: too many arguments for format [-Wformat-extra-args] + 2002 | extra); + | ^~~~~ +../xmlschemas.c: In function ‘xmlSchemaPResCompAttrErr’: +../xmlschemas.c:2834:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 2834 | if (refTypeStr == NULL) + | ^~ +../xmlschemas.c:2836:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 2836 | xmlSchemaPErrExt(ctxt, ownerElem, error, + | ^~~~~~~~~~~~~~~~ +../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeQNameValue’: +../xmlschemas.c:5824:6: warning: too many arguments for format [-Wformat-extra-args] + 5824 | NULL, value, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlGetMaxOccurs’: +../xmlschemas.c:6047:3: warning: too many arguments for format [-Wformat-extra-args] + 6047 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:6061:6: warning: too many arguments for format [-Wformat-extra-args] + 6061 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:6078:6: warning: too many arguments for format [-Wformat-extra-args] + 6078 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c: In function ‘xmlGetMinOccurs’: +../xmlschemas.c:6113:6: warning: too many arguments for format [-Wformat-extra-args] + 6113 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:6130:6: warning: too many arguments for format [-Wformat-extra-args] + 6130 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c: In function ‘xmlSchemaPGetBoolNodeValue’: +../xmlschemas.c:6175:6: warning: too many arguments for format [-Wformat-extra-args] + 6175 | NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlGetBooleanProp’: +../xmlschemas.c:6223:6: warning: too many arguments for format [-Wformat-extra-args] + 6223 | NULL, val, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeValue’: +../xmlschemas.c:6328:6: warning: too many arguments for format [-Wformat-extra-args] + 6328 | type, NULL, value, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaParseWildcardNs’: +../xmlschemas.c:6763:6: warning: too many arguments for format [-Wformat-extra-args] + 6763 | NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c:6801:7: warning: too many arguments for format [-Wformat-extra-args] + 6801 | nsItem, NULL, NULL, NULL); + | ^~~~~~ +../xmlschemas.c: In function ‘xmlSchemaParseLocalAttribute’: +../xmlschemas.c:7188:8: warning: too many arguments for format [-Wformat-extra-args] + 7188 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:7208:4: warning: too many arguments for format [-Wformat-extra-args] + 7208 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:7366:2: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 7366 | if (defValue != NULL) + | ^~ +../xmlschemas.c:7368:6: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 7368 | if (defValueType == WXS_ATTR_DEF_VAL_FIXED) + | ^~ +../xmlschemas.c: In function ‘xmlSchemaParseElement’: +../xmlschemas.c:8629:4: warning: too many arguments for format [-Wformat-extra-args] + 8629 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:8708:4: warning: too many arguments for format [-Wformat-extra-args] + 8708 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:8738:7: warning: too many arguments for format [-Wformat-extra-args] + 8738 | NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaParseSimpleType’: +../xmlschemas.c:9294:7: warning: too many arguments for format [-Wformat-extra-args] + 9294 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c: In function ‘xmlSchemaParseSchemaElement’: +../xmlschemas.c:9693:3: warning: too many arguments for format [-Wformat-extra-args] + 9693 | "(qualified | unqualified)", val, NULL, NULL, NULL); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +../xmlschemas.c:9706:3: warning: too many arguments for format [-Wformat-extra-args] + 9706 | "(qualified | unqualified)", val, NULL, NULL, NULL); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +../xmlschemas.c:9724:3: warning: too many arguments for format [-Wformat-extra-args] + 9724 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:9740:3: warning: too many arguments for format [-Wformat-extra-args] + 9740 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c: In function ‘xmlSchemaParseImport’: +../xmlschemas.c:10763:6: warning: too many arguments for format [-Wformat-extra-args] +10763 | NULL, namespaceName, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c:10774:6: warning: too many arguments for format [-Wformat-extra-args] +10774 | NULL, schemaLocation, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaParseComplexType’: +../xmlschemas.c:12233:8: warning: too many arguments for format [-Wformat-extra-args] +12233 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:12251:8: warning: too many arguments for format [-Wformat-extra-args] +12251 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c: In function ‘xmlSchemaValidateFacets’: +../xmlschemas.c:24253:3: warning: too many arguments for format [-Wformat-extra-args] +24253 | value, len, type, facetLink->facet, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c:24289:3: warning: too many arguments for format [-Wformat-extra-args] +24289 | value, length, type, facetLink->facet, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c:24341:7: warning: too many arguments for format [-Wformat-extra-args] +24341 | value, 0, type, NULL, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c:24386:4: warning: too many arguments for format [-Wformat-extra-args] +24386 | value, 0, type, facet, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c: In function ‘xmlSchemaSetValidStructuredErrors’: +../xmlschemas.c:27790:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] +27790 | if (ctxt == NULL) + | ^~ +../xmlschemas.c:27792:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ +27792 | ctxt->serror = serror; + | ^~~~ +In file included from ../xmlschemas.c:55: +../xmlschemas.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdcpl.c +../H5Pdcpl.c: In function ‘H5P_get_fill_value’: +../H5Pdcpl.c:3329:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 3329 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(type, H5T_COPY_TRANSIENT), FALSE)) < 0) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Pdcpl.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdxpl.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Pdxpl.c:35: +In function ‘strncpy’, + inlined from ‘H5Pget_data_transform’ at ../H5Pdxpl.c:1129:2: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Pdxpl.c:35: +../H5Pdxpl.c: In function ‘H5Pget_data_transform’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Pdxpl.c:1127:11: note: in expansion of macro ‘HDstrlen’ + 1127 | len = HDstrlen(pexp); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pencdec.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Pencdec.c:29: +In function ‘strncpy’, + inlined from ‘H5P__encode_cb’ at ../H5Pencdec.c:351:13, + inlined from ‘H5P__encode_cb’ at ../H5Pencdec.c:332:1: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Pencdec.c:29: +../H5Pencdec.c: In function ‘H5P__encode_cb’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Pencdec.c:349:25: note: in expansion of macro ‘HDstrlen’ + 349 | prop_name_len = HDstrlen(prop->name) + 1; + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlschemastypes.obj -c ../xmlschemastypes.c +../xmlschemastypes.c: In function ‘xmlSchemaTypeErrMemory’: +../xmlschemastypes.c:204:5: warning: too many arguments for format [-Wformat-extra-args] + 204 | __xmlSimpleError(XML_FROM_DATATYPE, XML_ERR_NO_MEMORY, node, NULL, extra); + | ^~~~~~~~~~~~~~~~ +In file included from ../xmlschemastypes.c:18: +../xmlschemastypes.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pfapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlunicode.obj -c ../xmlunicode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pfcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pfmpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pgcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlwriter.obj -c ../xmlwriter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pint.c +../H5Pint.c: In function ‘H5P__iterate_pclass_cb’: +../H5Pint.c:4066:11: warning: unused variable ‘key’ [-Wunused-variable] + 4066 | char *key = (char *)_key; /* Pointer to the property's name */ + | ^~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Plapl.c +../H5Plapl.c: In function ‘H5P__lacc_elink_fapl_cmp’: +../H5Plapl.c:570:16: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] + 570 | herr_t status; + | ^~~~~~ +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Plapl.c:35: +In function ‘strncpy’, + inlined from ‘H5Pget_elink_prefix’ at ../H5Plapl.c:1062:13: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Plapl.c:35: +../H5Plapl.c: In function ‘H5Pget_elink_prefix’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Plapl.c:1060:15: note: in expansion of macro ‘HDstrlen’ + 1060 | len = HDstrlen(my_prefix); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Plcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pocpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pocpypl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pstrcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ptest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5PB.c +../H5PB.c: In function ‘H5PB_dest’: +../H5PB.c:487:7: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 487 | f = fio_info->f; + | ^ +../H5PB.c: In function ‘H5PB_read’: +../H5PB.c:793:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 793 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5PB.c:794:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 794 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +../H5PB.c: In function ‘H5PB_write’: +../H5PB.c:1100:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1100 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5PB.c:1101:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1101 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +../H5PB.c: In function ‘H5PB__write_entry’: +../H5PB.c:1525:29: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1525 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5PB.c:1526:28: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1526 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5PL.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5PL.c:23: +In function ‘strncpy’, + inlined from ‘H5PLget’ at ../H5PL.c:623:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5PL.c:23: +../H5PL.c: In function ‘H5PLget’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5PL.c:621:11: note: in expansion of macro ‘HDstrlen’ + 621 | len = HDstrlen(dl_path); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5R.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Rdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5UC.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5RS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xpath.obj -c ../xpath.c +../xpath.c: In function ‘xmlXPathCmpNodesExt’: +../xpath.c:170:12: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 170 | if ((0 > (long) node1->content) && /* TODO: Would a != 0 suffice here? */ + | ^ +../xpath.c:171:12: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 171 | (0 > (long) node2->content) && + | ^ +../xpath.c:174:14: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 174 | l1 = -((long) node1->content); + | ^ +../xpath.c:175:14: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 175 | l2 = -((long) node2->content); + | ^ +../xpath.c:220:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 220 | (0 <= (long) node1->content)) { + | ^ +../xpath.c:270:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 270 | (0 <= (long) node2->content)) + | ^ +../xpath.c:343:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 343 | (0 > (long) node1->content) && + | ^ +../xpath.c:344:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 344 | (0 > (long) node2->content) && + | ^ +../xpath.c:347:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 347 | l1 = -((long) node1->content); + | ^ +../xpath.c:348:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 348 | l2 = -((long) node2->content); + | ^ +../xpath.c:411:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 411 | (0 > (long) node1->content) && + | ^ +../xpath.c:412:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 412 | (0 > (long) node2->content) && + | ^ +../xpath.c:415:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 415 | l1 = -((long) node1->content); + | ^ +../xpath.c:416:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 416 | l2 = -((long) node2->content); + | ^ +In file included from ../xpath.c:462: +../timsort.h: In function ‘libxml_domnode_tim_sort_resize’: +../timsort.h:326:80: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 3 has type ‘long long unsigned int’ [-Wformat=] + 326 | fprintf(stderr, "Error allocating temporary storage for tim sort: need %lu bytes", sizeof(SORT_TYPE) * new_size); + | ~~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + | | | + | long unsigned int long long unsigned int + | %I64u +../timsort.h:326:80: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 3 has type ‘long long unsigned int’ [-Wformat=] + 326 | fprintf(stderr, "Error allocating temporary storage for tim sort: need %lu bytes", sizeof(SORT_TYPE) * new_size); + | ~~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + | | | + | long unsigned int long long unsigned int + | %I64u +../timsort.h: In function ‘libxml_domnode_tim_sort_collapse’: +../timsort.h:397:19: warning: variable ‘BD’ set but not used [-Wunused-but-set-variable] + 397 | int ABC, BCD, BD, CD; + | ^~ +../xpath.c: In function ‘xmlXPathOrderDocElems’: +../xpath.c:3236:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 3236 | cur->content = (void *) (-(++count)); + | ^ +../xpath.c: In function ‘xmlXPathCmpNodes’: +../xpath.c:3328:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 3328 | (0 > (long) node1->content) && + | ^ +../xpath.c:3329:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 3329 | (0 > (long) node2->content) && + | ^ +../xpath.c:3333:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 3333 | l1 = -((long) node1->content); + | ^ +../xpath.c:3334:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 3334 | l2 = -((long) node2->content); + | ^ +../xpath.c:3391:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 3391 | (0 > (long) node1->content) && + | ^ +../xpath.c:3392:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 3392 | (0 > (long) node2->content) && + | ^ +../xpath.c:3396:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 3396 | l1 = -((long) node1->content); + | ^ +../xpath.c:3397:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 3397 | l2 = -((long) node2->content); + | ^ +../xpath.c: In function ‘xmlXPathNodeCollectAndTest’: +../xpath.c:12409:28: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘xmlXPathTypeVal’ {aka ‘enum ’} [-Wenum-compare] +12409 | } else if (cur->type == type) { + | ^~ +In file included from ../xpath.c:43: +../xpath.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +In file included from ../xpath.c:476: +../trionan.c:218:1: warning: ‘trio_is_negative’ defined but not used [-Wunused-function] + 218 | trio_is_negative + | ^~~~~~~~~~~~~~~~ +../trionan.c:194:1: warning: ‘trio_is_special_quantity’ defined but not used [-Wunused-function] + 194 | trio_is_special_quantity + | ^~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5S.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Sall.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Sdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xpointer.obj -c ../xpointer.c +../xpointer.c: In function ‘xmlXPtrNewRangeNodePoint’: +../xpointer.c:451:21: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘enum ’ [-Wenum-compare] + 451 | if (start->type != XPATH_POINT) + | ^~ +In file included from ../xpointer.c:31: +../xpointer.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlstring.obj -c ../xmlstring.c +In file included from ../xmlstring.c:22: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nanohttp_stream.obj -c ../nanohttp_stream.c +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:45: warning: "EINPROGRESS" redefined + 45 | #define EINPROGRESS WSAEINPROGRESS + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:158: note: this is the location of the previous definition + 158 | #define EINPROGRESS 112 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:46: warning: "EALREADY" redefined + 46 | #define EALREADY WSAEALREADY + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:106: note: this is the location of the previous definition + 106 | #define EALREADY 103 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:47: warning: "ENOTSOCK" redefined + 47 | #define ENOTSOCK WSAENOTSOCK + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:146: note: this is the location of the previous definition + 146 | #define ENOTSOCK 128 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:48: warning: "EDESTADDRREQ" redefined + 48 | #define EDESTADDRREQ WSAEDESTADDRREQ + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:118: note: this is the location of the previous definition + 118 | #define EDESTADDRREQ 109 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:49: warning: "EMSGSIZE" redefined + 49 | #define EMSGSIZE WSAEMSGSIZE + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:126: note: this is the location of the previous definition + 126 | #define EMSGSIZE 115 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:50: warning: "EPROTOTYPE" redefined + 50 | #define EPROTOTYPE WSAEPROTOTYPE + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:231: note: this is the location of the previous definition + 231 | #define EPROTOTYPE 136 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:51: warning: "ENOPROTOOPT" redefined + 51 | #define ENOPROTOOPT WSAENOPROTOOPT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:142: note: this is the location of the previous definition + 142 | #define ENOPROTOOPT 123 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:52: warning: "EPROTONOSUPPORT" redefined + 52 | #define EPROTONOSUPPORT WSAEPROTONOSUPPORT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:178: note: this is the location of the previous definition + 178 | #define EPROTONOSUPPORT 135 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:54: warning: "EOPNOTSUPP" redefined + 54 | #define EOPNOTSUPP WSAEOPNOTSUPP + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:162: note: this is the location of the previous definition + 162 | #define EOPNOTSUPP 130 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:56: warning: "EAFNOSUPPORT" redefined + 56 | #define EAFNOSUPPORT WSAEAFNOSUPPORT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:82: note: this is the location of the previous definition + 82 | #define EAFNOSUPPORT 102 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:57: warning: "EADDRINUSE" redefined + 57 | #define EADDRINUSE WSAEADDRINUSE + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:86: note: this is the location of the previous definition + 86 | #define EADDRINUSE 100 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:58: warning: "EADDRNOTAVAIL" redefined + 58 | #define EADDRNOTAVAIL WSAEADDRNOTAVAIL + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:90: note: this is the location of the previous definition + 90 | #define EADDRNOTAVAIL 101 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:59: warning: "ENETDOWN" redefined + 59 | #define ENETDOWN WSAENETDOWN + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:130: note: this is the location of the previous definition + 130 | #define ENETDOWN 116 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:60: warning: "ENETUNREACH" redefined + 60 | #define ENETUNREACH WSAENETUNREACH + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:138: note: this is the location of the previous definition + 138 | #define ENETUNREACH 118 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:61: warning: "ENETRESET" redefined + 61 | #define ENETRESET WSAENETRESET + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:134: note: this is the location of the previous definition + 134 | #define ENETRESET 117 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:62: warning: "ECONNABORTED" redefined + 62 | #define ECONNABORTED WSAECONNABORTED + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:102: note: this is the location of the previous definition + 102 | #define ECONNABORTED 106 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:63: warning: "ECONNRESET" redefined + 63 | #define ECONNRESET WSAECONNRESET + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:114: note: this is the location of the previous definition + 114 | #define ECONNRESET 108 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:64: warning: "ENOBUFS" redefined + 64 | #define ENOBUFS WSAENOBUFS + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:98: note: this is the location of the previous definition + 98 | #define ENOBUFS 119 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:65: warning: "EISCONN" redefined + 65 | #define EISCONN WSAEISCONN + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:94: note: this is the location of the previous definition + 94 | #define EISCONN 113 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:66: warning: "ENOTCONN" redefined + 66 | #define ENOTCONN WSAENOTCONN + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:150: note: this is the location of the previous definition + 150 | #define ENOTCONN 126 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:68: warning: "ETIMEDOUT" redefined + 68 | #define ETIMEDOUT WSAETIMEDOUT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:223: note: this is the location of the previous definition + 223 | #define ETIMEDOUT 138 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:69: warning: "ECONNREFUSED" redefined + 69 | #define ECONNREFUSED WSAECONNREFUSED + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:110: note: this is the location of the previous definition + 110 | #define ECONNREFUSED 107 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:70: warning: "ELOOP" redefined + 70 | #define ELOOP WSAELOOP + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:227: note: this is the location of the previous definition + 227 | #define ELOOP 114 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:72: warning: "EHOSTUNREACH" redefined + 72 | #define EHOSTUNREACH WSAEHOSTUNREACH + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:122: note: this is the location of the previous definition + 122 | #define EHOSTUNREACH 110 + | +../nanohttp_stream.c: In function ‘xmlParseJpegHeader’: +../nanohttp_stream.c:628:40: warning: pointer targets in passing argument 1 of ‘xmlStrncmp’ differ in signedness [-Wpointer-sign] + 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { + | ~~~~^~~~~~~~~~~~~~ + | | + | char * +In file included from ../libxml.h:12, + from ../nanohttp_stream.c:16: +../os/default/libxml/xmlstring.h:67:58: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘char *’ + 67 | xmlStrncmp (const xmlChar *str1, + | ~~~~~~~~~~~~~~~^~~~ +../nanohttp_stream.c:628:56: warning: pointer targets in passing argument 2 of ‘xmlStrncmp’ differ in signedness [-Wpointer-sign] + 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { + | ^~~~~~~~~~~~ + | | + | const char * +In file included from ../libxml.h:12, + from ../nanohttp_stream.c:16: +../os/default/libxml/xmlstring.h:68:57: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘const char *’ + 68 | const xmlChar *str2, + | ~~~~~~~~~~~~~~~^~~~ +../nanohttp_stream.c: In function ‘xmlNanoHTTPScanAnswer’: +../nanohttp_stream.c:979:30: warning: pointer targets in initialization of ‘const char *’ from ‘const xmlChar *’ {aka ‘const unsigned char *’} differ in signedness [-Wpointer-sign] + 979 | const char* boundaryName = xmlStrstr(BAD_CAST ctxt->contentType, BAD_CAST "boundary"); + | ^~~~~~~~~ +../nanohttp_stream.c:981:17: warning: pointer targets in assignment from ‘const xmlChar *’ {aka ‘const unsigned char *’} to ‘const char *’ differ in signedness [-Wpointer-sign] + 981 | boundaryName = xmlStrstr(BAD_CAST boundaryName, BAD_CAST "="); + | ^ +../nanohttp_stream.c: In function ‘xmlNanoHTTPConnectAttempt’: +../nanohttp_stream.c:1240:67: warning: pointer targets in passing argument 5 of ‘getsockopt’ differ in signedness [-Wpointer-sign] + 1240 | if (getsockopt(s, SOL_SOCKET, SO_ERROR, (char *) &status, &len) < + | ^~~~ + | | + | unsigned int * +In file included from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/winsock2.h:1010:94: note: expected ‘int *’ but argument is of type ‘unsigned int *’ + 1010 | WINSOCK_API_LINKAGE int WSAAPI getsockopt(SOCKET s,int level,int optname,char *optval,int *optlen); + | ~~~~~^~~~~~ +../nanohttp_stream.c: In function ‘xmlNanoHTTPConnectHost’: +../nanohttp_stream.c:1288:9: warning: unused variable ‘i’ [-Wunused-variable] + 1288 | int i; + | ^ +../nanohttp_stream.c:1281:20: warning: unused variable ‘ia’ [-Wunused-variable] + 1281 | struct in_addr ia; + | ^~ +../nanohttp_stream.c:1279:21: warning: unused variable ‘h’ [-Wunused-variable] + 1279 | struct hostent *h; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o xml2.dll -shared -Wl,--out-implib,libxml2.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ buf.obj c14n.obj catalog.obj chvalid.obj debugXML.obj dict.obj DOCBparser.obj encoding.obj entities.obj error.obj globals.obj hash.obj HTMLparser.obj HTMLtree.obj legacy.obj list.obj nanoftp.obj nanohttp.obj parser.obj parserInternals.obj pattern.obj relaxng.obj SAX2.obj SAX.obj schematron.obj threads.obj tree.obj uri.obj valid.obj xinclude.obj xlink.obj xmlIO.obj xmlmemory.obj xmlreader.obj xmlregexp.obj xmlmodule.obj xmlsave.obj xmlschemas.obj xmlschemastypes.obj xmlunicode.obj xmlwriter.obj xpath.obj xpointer.obj xmlstring.obj -lzlib -lws2_32 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o nanohttp_stream.dll -shared -Wl,--out-implib,libnanohttp_stream.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ nanohttp_stream.obj buf.obj c14n.obj catalog.obj chvalid.obj debugXML.obj dict.obj DOCBparser.obj encoding.obj entities.obj error.obj globals.obj hash.obj HTMLparser.obj HTMLtree.obj legacy.obj list.obj nanoftp.obj nanohttp.obj parser.obj parserInternals.obj pattern.obj relaxng.obj SAX2.obj SAX.obj schematron.obj threads.obj tree.obj uri.obj valid.obj xinclude.obj xlink.obj xmlIO.obj xmlmemory.obj xmlreader.obj xmlregexp.obj xmlmodule.obj xmlsave.obj xmlschemas.obj xmlschemastypes.obj xmlunicode.obj xmlwriter.obj xpath.obj xpointer.obj xmlstring.obj -lxml2 -lzlib -lws2_32 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Snone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Spoint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Sselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Shyper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Stest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMmessage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5ST.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SL.c +../H5SL.c: In function ‘H5SL_term_package’: +../H5SL.c:655:21: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] + 655 | herr_t ret; + | ^~~ +In file included from ../H5SL.c:64: +../H5SL.c: In function ‘H5SL_search’: +../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 2267 | return(ret_value); \ + | ^ +../H5SL.c:1397:11: note: ‘ret_value’ was declared here + 1397 | void *ret_value; /* Return value */ + | ^~~~~~~~~ +In file included from ../H5SL.c:64: +../H5SL.c: In function ‘H5SL_find’: +../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 2267 | return(ret_value); \ + | ^ +../H5SL.c:1698:18: note: ‘ret_value’ was declared here + 1698 | H5SL_node_t *ret_value; /* Return value */ + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tarray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make -C ./GraphicsMagickSrc install +make -C ./bzlib install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' +mkdir -p O.Common +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF randtable.d ../randtable.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huffman.d ../huffman.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompress.d ../decompress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crctable.d ../crctable.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d ../compress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bzlib.d ../bzlib.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blocksort.d ../blocksort.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5T.c +../H5T.c: In function ‘H5T_path_find’: +../H5T.c:4499:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 4499 | if(NULL == (path->src = H5T_copy(src, H5T_COPY_ALL))) + | ^~~ +../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) + | ~~~~~~~^~~~~~ +../H5T.c:4501:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 4501 | if(NULL == (path->dst = H5T_copy(dst, H5T_COPY_ALL))) + | ^~~ +../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) + | ~~~~~~~^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tcommit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../blocksort.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tcompound.c +../H5Tcompound.c: In function ‘H5T__insert’: +../H5Tcompound.c:459:56: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 459 | parent->shared->u.compnd.memb[idx].type = H5T_copy(member, H5T_COPY_ALL); + | ^~~~~~ +In file included from ../H5Tpkg.h:37, + from ../H5Tcompound.c:33: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../bzlib.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../compress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../crctable.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../decompress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../huffman.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../randtable.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +/usr/bin/ar -rc libbzlib.a blocksort.o bzlib.o compress.o crctable.o decompress.o huffman.o randtable.o +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +/usr/bin/ranlib libbzlib.a +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +g++ -o libbzlib.so -shared -fPIC -Wl,-hlibbzlib.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 blocksort.o bzlib.o compress.o crctable.o decompress.o huffman.o randtable.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ + T_A=windows-x64-mingw install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF randtable.d -MT randtable.obj ../randtable.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huffman.d -MT huffman.obj ../huffman.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompress.d -MT decompress.obj ../decompress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crctable.d -MT crctable.obj ../crctable.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d -MT compress.obj ../compress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bzlib.d -MT bzlib.obj ../bzlib.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blocksort.d -MT blocksort.obj ../blocksort.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blocksort.obj -c ../blocksort.c +In file included from ../bzlib_private.h:33, + from ../blocksort.c:22: +../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export + 85 | # pragma message( "BZIP compiling as DLL export" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o bzlib.obj -c ../bzlib.c +In file included from ../bzlib_private.h:33, + from ../bzlib.c:31: +../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export + 85 | # pragma message( "BZIP compiling as DLL export" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o compress.obj -c ../compress.c +In file included from ../bzlib_private.h:33, + from ../compress.c:29: +../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export + 85 | # pragma message( "BZIP compiling as DLL export" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o crctable.obj -c ../crctable.c +In file included from ../bzlib_private.h:33, + from ../crctable.c:22: +../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export + 85 | # pragma message( "BZIP compiling as DLL export" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o decompress.obj -c ../decompress.c +In file included from ../bzlib_private.h:33, + from ../decompress.c:22: +../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export + 85 | # pragma message( "BZIP compiling as DLL export" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o huffman.obj -c ../huffman.c +In file included from ../bzlib_private.h:33, + from ../huffman.c:22: +../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export + 85 | # pragma message( "BZIP compiling as DLL export" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o randtable.obj -c ../randtable.c +In file included from ../bzlib_private.h:33, + from ../randtable.c:22: +../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export + 85 | # pragma message( "BZIP compiling as DLL export" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-windres -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include ../bzlib.rc bzlib.coff +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o bzlib.dll -shared -Wl,--out-implib,libbzlib.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ blocksort.obj bzlib.obj compress.obj crctable.obj decompress.obj huffman.obj randtable.obj bzlib.coff -lws2_32 +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make -C ./lcms install +make -C ./src install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' +perl -C0 /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' +perl -C0 /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' +mkdir -p O.Common +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsxform.d ../cmsxform.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmswtpnt.d ../cmswtpnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsvirt.d ../cmsvirt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmstypes.d ../cmstypes.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssm.d ../cmssm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssamp.d ../cmssamp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsps2.d ../cmsps2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsplugin.d ../cmsplugin.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspcs.d ../cmspcs.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspack.d ../cmspack.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsopt.d ../cmsopt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsnamed.d ../cmsnamed.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmtrx.d ../cmsmtrx.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmd5.d ../cmsmd5.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmslut.d ../cmslut.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio1.d ../cmsio1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio0.d ../cmsio0.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsintrp.d ../cmsintrp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmshalf.d ../cmshalf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgmt.d ../cmsgmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgamma.d ../cmsgamma.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmserr.d ../cmserr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscnvrt.d ../cmscnvrt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscgats.d ../cmscgats.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscam02.d ../cmscam02.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tconv.c +../H5Tconv.c: In function ‘H5T_conv_struct_free’: +../H5Tconv.c:1876:17: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] + 1876 | int status; + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsalpha.d ../cmsalpha.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tcset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsalpha.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmscam02.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tenum.c +../H5Tenum.c: In function ‘H5T__enum_create’: +../H5Tenum.c:110:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 110 | ret_value->shared->parent = H5T_copy(parent, H5T_COPY_ALL); + | ^~~~~~ +In file included from ../H5Tpkg.h:37, + from ../H5Tenum.c:26: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Tenum.c: In function ‘H5T_enum_nameof’: +../H5Tenum.c:411:38: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 411 | if(NULL == (copied_dt = H5T_copy(dt, H5T_COPY_ALL))) + | ^~ +In file included from ../H5Tpkg.h:37, + from ../H5Tenum.c:26: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Tenum.c: In function ‘H5T_enum_valueof’: +../H5Tenum.c:550:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 550 | if (NULL==(copied_dt=H5T_copy(dt, H5T_COPY_ALL))) + | ^~ +In file included from ../H5Tpkg.h:37, + from ../H5Tenum.c:26: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tfields.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tfixed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tfloat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmscgats.c +../cmscgats.c: In function ‘ReadReal’: +../cmscgats.c:577:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 577 | else + | ^~~~ +../cmscgats.c:584:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 584 | e = 0; + | ^ +../cmscgats.c: In function ‘ParseFloatNumber’: +../cmscgats.c:654:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 654 | else + | ^~~~ +../cmscgats.c:661:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 661 | e = 0; + | ^ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘GetVal’ at ../cmscgats.c:986:19: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying between 255 and 1023 bytes from a string of length 1023 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘AddToList.constprop’ at ../cmscgats.c:1184:22: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList.constprop’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘AddToList.constprop’ at ../cmscgats.c:1215:22: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList.constprop’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘AddToList’ at ../cmscgats.c:1184:22: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘AddToList’ at ../cmscgats.c:1185:47: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘AddToList’ at ../cmscgats.c:1215:22: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘isabsolutepath’ at ../cmscgats.c:396:5, + inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:419:9, + inlined from ‘InSymbol’ at ../cmscgats.c:920:21: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 3 bytes from a string of length 1023 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:421:9, + inlined from ‘InSymbol’ at ../cmscgats.c:920:21: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 255 bytes from a string of length 1023 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:427:5, + inlined from ‘InSymbol’ at ../cmscgats.c:920:21: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 255 bytes from a string of length 255 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:437:5, + inlined from ‘InSymbol’ at ../cmscgats.c:920:21: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying between 1 and 255 bytes from a string of length 1023 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘SetData’ at ../cmscgats.c:1545:47: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘SetData’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, + inlined from ‘DataFormatSection’ at ../cmscgats.c:1841:18, + inlined from ‘ParseIT8’ at ../cmscgats.c:2061:26: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘ParseIT8’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, + inlined from ‘cmsIT8SetDataFormat’ at ../cmscgats.c:1490:16: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘cmsIT8SetDataFormat’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘SetData’ at ../cmscgats.c:1545:47, + inlined from ‘cmsIT8SetDataRowCol’ at ../cmscgats.c:2569:12: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘cmsIT8SetDataRowCol’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘SetData’ at ../cmscgats.c:1545:47, + inlined from ‘cmsIT8SetDataRowColDbl’ at ../cmscgats.c:2582:12: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘cmsIT8SetDataRowColDbl’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tnative.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Toffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmscnvrt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Toh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmserr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Topaque.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Torder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsgamma.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tprecis.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsgmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmshalf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tstrpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tvisit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tvlen.c +../H5Tvlen.c: In function ‘H5T__vlen_create’: +../H5Tvlen.c:142:47: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 142 | if(NULL == (dt->shared->parent = H5T_copy(base, H5T_COPY_ALL))) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Tvlen.c:23: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5TS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5VM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsintrp.c +../cmsintrp.c: In function ‘Eval4Inputs’: +../cmsintrp.c:918:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 918 | else + | ^~~~ +../cmsintrp.c:930:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 930 | Rest = c1 * rx + c2 * ry + c3 * rz; + | ^~~~ +../cmsintrp.c:982:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 982 | else + | ^~~~ +../cmsintrp.c:994:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 994 | Rest = c1 * rx + c2 * ry + c3 * rz; + | ^~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5WB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsio0.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Z.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zdeflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsio1.c +../cmsio1.c: In function ‘_cmsReadFloatDevicelinkTag’: +../cmsio1.c:681:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 681 | else + | ^~~~ +../cmsio1.c:688:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 688 | if (PCS == cmsSigLabData) + | ^~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zfletcher32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Znbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmslut.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsmd5.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsmtrx.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsnamed.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsopt.c +../cmsopt.c: In function ‘PatchLUT’: +../cmsopt.c:510:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 510 | else + | ^~~~ +../cmsopt.c:526:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 526 | for (i=0; i < nChannelsOut; i++) + | ^~~ +../cmsopt.c: In function ‘PrelinEval8’: +../cmsopt.c:978:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 978 | else + | ^~~~ +../cmsopt.c:990:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 990 | Rest = c1 * rx + c2 * ry + c3 * rz + 0x8001; + | ^~~~ +../cmsopt.c: In function ‘OptimizeByComputingLinearization’: +../cmsopt.c:1030:26: warning: variable ‘lIsLinear’ set but not used [-Wunused-but-set-variable] + 1030 | cmsBool lIsSuitable, lIsLinear; + | ^~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zscaleoffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zshuffle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zszip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmspack.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmspcs.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsplugin.c +../cmsplugin.c: In function ‘_cmsReadFloat32Number’: +../cmsplugin.c:181:15: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] + 181 | *n = *(cmsFloat32Number*) (void*) &tmp; + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmsplugin.c: In function ‘_cmsWriteFloat32Number’: +../cmsplugin.c:292:12: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] + 292 | tmp = *(cmsUInt32Number*) (void*) &n; + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsps2.c +../cmsps2.c: In function ‘WriteInputMatrixShaper’: +../cmsps2.c:964:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 964 | else + | ^~~~ +../cmsps2.c:986:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 986 | return rc; + | ^~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmssamp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ztrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmssm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../os/Linux/H5Tinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5lib_settings.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmstypes.c +../cmstypes.c: In function ‘ReadCLUT’: +../cmstypes.c:2360:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 2360 | else + | ^~~~ +../cmstypes.c:2374:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 2374 | return CLUT; + | ^~~~~~ +../cmstypes.c: In function ‘WriteCLUT’: +../cmstypes.c:2645:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 2645 | else + | ^~~~ +../cmstypes.c:2655:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 2655 | if (!_cmsWriteAlignment(io)) return FALSE; + | ^~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmstypes.c:27: +In function ‘strncpy’, + inlined from ‘Type_NamedColor_Write’ at ../cmstypes.c:3146:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘Type_NamedColor_Write’ at ../cmstypes.c:3147:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsvirt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmswtpnt.c +../cmswtpnt.c: In function ‘cmsWhitePointFromTemp’: +../cmswtpnt.c:66:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 66 | else + | ^~~~ +../cmswtpnt.c:80:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 80 | y = -3.000*(x*x) + 2.870*x - 0.275; + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsxform.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +/usr/bin/ar -rc liblcms.a cmsalpha.o cmscam02.o cmscgats.o cmscnvrt.o cmserr.o cmsgamma.o cmsgmt.o cmshalf.o cmsintrp.o cmsio0.o cmsio1.o cmslut.o cmsmd5.o cmsmtrx.o cmsnamed.o cmsopt.o cmspack.o cmspcs.o cmsplugin.o cmsps2.o cmssamp.o cmssm.o cmstypes.o cmsvirt.o cmswtpnt.o cmsxform.o +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +/usr/bin/ranlib liblcms.a +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +g++ -o liblcms.so -shared -fPIC -Wl,-hliblcms.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 cmsalpha.o cmscam02.o cmscgats.o cmscnvrt.o cmserr.o cmsgamma.o cmsgmt.o cmshalf.o cmsintrp.o cmsio0.o cmsio1.o cmslut.o cmsmd5.o cmsmtrx.o cmsnamed.o cmsopt.o cmspack.o cmspcs.o cmsplugin.o cmsps2.o cmssamp.o cmssm.o cmstypes.o cmsvirt.o cmswtpnt.o cmsxform.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5detect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +/usr/bin/ar -rc libhdf5.a H5.o H5checksum.o H5dbg.o H5system.o H5timer.o H5trace.o H5A.o H5Abtree2.o H5Adense.o H5Adeprec.o H5Aint.o H5Atest.o H5AC.o H5AClog.o H5ACdbg.o H5ACproxy_entry.o H5B.o H5Bcache.o H5Bdbg.o H5B2.o H5B2cache.o H5B2dbg.o H5B2hdr.o H5B2int.o H5B2internal.o H5B2leaf.o H5B2stat.o H5B2test.o H5C.o H5Cdbg.o H5Cepoch.o H5Cimage.o H5Clog.o H5Cprefetched.o H5Cquery.o H5Ctag.o H5Ctest.o H5CS.o H5D.o H5Dbtree.o H5Dbtree2.o H5Dchunk.o H5Dcompact.o H5Dcontig.o H5Ddbg.o H5Ddeprec.o H5Dearray.o H5Defl.o H5Dfarray.o H5Dfill.o H5Dint.o H5Dio.o H5Dlayout.o H5Dnone.o H5Doh.o H5Dscatgath.o H5Dselect.o H5Dsingle.o H5Dtest.o H5Dvirtual.o H5E.o H5Edeprec.o H5Eint.o H5EA.o H5EAcache.o H5EAdbg.o H5EAdblkpage.o H5EAdblock.o H5EAhdr.o H5EAiblock.o H5EAint.o H5EAsblock.o H5EAstat.o H5EAtest.o H5F.o H5Faccum.o H5Fcwfs.o H5Fdbg.o H5Fdeprec.o H5Fefc.o H5Ffake.o H5Fint.o H5Fio.o H5Fmount.o H5Fquery.o H5Fsfile.o H5Fspace.o H5Fsuper.o H5Fsuper_cache.o H5Ftest.o H5FA.o H5FAcache.o H5FAdbg.o H5FAdblock.o H5FAdblkpage.o H5FAhdr.o H5FAint.o H5FAstat.o H5FAtest.o H5FD.o H5FDcore.o H5FDfamily.o H5FDint.o H5FDlog.o H5FDmulti.o H5FDsec2.o H5FDspace.o H5FDstdio.o H5FDtest.o H5FL.o H5FO.o H5FS.o H5FScache.o H5FSdbg.o H5FSint.o H5FSsection.o H5FSstat.o H5FStest.o H5G.o H5Gbtree2.o H5Gcache.o H5Gcompact.o H5Gdense.o H5Gdeprec.o H5Gent.o H5Gint.o H5Glink.o H5Gloc.o H5Gname.o H5Gnode.o H5Gobj.o H5Goh.o H5Groot.o H5Gstab.o H5Gtest.o H5Gtraverse.o H5HF.o H5HFbtree2.o H5HFcache.o H5HFdbg.o H5HFdblock.o H5HFdtable.o H5HFhdr.o H5HFhuge.o H5HFiblock.o H5HFiter.o H5HFman.o H5HFsection.o H5HFspace.o H5HFstat.o H5HFtest.o H5HFtiny.o H5HG.o H5HGcache.o H5HGdbg.o H5HGquery.o H5HL.o H5HLcache.o H5HLdbg.o H5HLint.o H5HLprfx.o H5HLdblk.o H5HP.o H5I.o H5Itest.o H5L.o H5Lexternal.o H5MF.o H5MFaggr.o H5MFdbg.o H5MFsection.o H5MM.o H5MP.o H5MPtest.o H5O.o H5Oainfo.o H5Oalloc.o H5Oattr.o H5Oattribute.o H5Obogus.o H5Obtreek.o H5Ocache.o H5Ocache_image.o H5Ochunk.o H5Ocont.o H5Ocopy.o H5Odbg.o H5Odrvinfo.o H5Odtype.o H5Oefl.o H5Ofill.o H5Oflush.o H5Ofsinfo.o H5Oginfo.o H5Olayout.o H5Olinfo.o H5Olink.o H5Omessage.o H5Omtime.o H5Oname.o H5Onull.o H5Opline.o H5Orefcount.o H5Osdspace.o H5Oshared.o H5Oshmesg.o H5Ostab.o H5Otest.o H5Ounknown.o H5P.o H5Pacpl.o H5Pdapl.o H5Pdcpl.o H5Pdeprec.o H5Pdxpl.o H5Pencdec.o H5Pfapl.o H5Pfcpl.o H5Pfmpl.o H5Pgcpl.o H5Pint.o H5Plapl.o H5Plcpl.o H5Pocpl.o H5Pocpypl.o H5Pstrcpl.o H5Ptest.o H5PB.o H5PL.o H5R.o H5Rdeprec.o H5UC.o H5RS.o H5S.o H5Sall.o H5Sdbg.o H5Shyper.o H5Snone.o H5Spoint.o H5Sselect.o H5Stest.o H5SL.o H5SM.o H5SMbtree2.o H5SMcache.o H5SMmessage.o H5SMtest.o H5ST.o H5T.o H5Tarray.o H5Tbit.o H5Tcommit.o H5Tcompound.o H5Tconv.o H5Tcset.o H5Tdbg.o H5Tdeprec.o H5Tenum.o H5Tfields.o H5Tfixed.o H5Tfloat.o H5Tnative.o H5Toffset.o H5Toh.o H5Topaque.o H5Torder.o H5Tpad.o H5Tprecis.o H5Tstrpad.o H5Tvisit.o H5Tvlen.o H5TS.o H5VM.o H5WB.o H5Z.o H5Zdeflate.o H5Zfletcher32.o H5Znbit.o H5Zscaleoffset.o H5Zshuffle.o H5Zszip.o H5Ztrans.o H5Tinit.o H5lib_settings.o blosc_filter.o jpeg_h5filter.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsxform.d -MT cmsxform.obj ../cmsxform.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +/usr/bin/ranlib libhdf5.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmswtpnt.d -MT cmswtpnt.obj ../cmswtpnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsvirt.d -MT cmsvirt.obj ../cmsvirt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +g++ -o libhdf5.so -shared -fPIC -Wl,-hlibhdf5.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 H5.o H5checksum.o H5dbg.o H5system.o H5timer.o H5trace.o H5A.o H5Abtree2.o H5Adense.o H5Adeprec.o H5Aint.o H5Atest.o H5AC.o H5AClog.o H5ACdbg.o H5ACproxy_entry.o H5B.o H5Bcache.o H5Bdbg.o H5B2.o H5B2cache.o H5B2dbg.o H5B2hdr.o H5B2int.o H5B2internal.o H5B2leaf.o H5B2stat.o H5B2test.o H5C.o H5Cdbg.o H5Cepoch.o H5Cimage.o H5Clog.o H5Cprefetched.o H5Cquery.o H5Ctag.o H5Ctest.o H5CS.o H5D.o H5Dbtree.o H5Dbtree2.o H5Dchunk.o H5Dcompact.o H5Dcontig.o H5Ddbg.o H5Ddeprec.o H5Dearray.o H5Defl.o H5Dfarray.o H5Dfill.o H5Dint.o H5Dio.o H5Dlayout.o H5Dnone.o H5Doh.o H5Dscatgath.o H5Dselect.o H5Dsingle.o H5Dtest.o H5Dvirtual.o H5E.o H5Edeprec.o H5Eint.o H5EA.o H5EAcache.o H5EAdbg.o H5EAdblkpage.o H5EAdblock.o H5EAhdr.o H5EAiblock.o H5EAint.o H5EAsblock.o H5EAstat.o H5EAtest.o H5F.o H5Faccum.o H5Fcwfs.o H5Fdbg.o H5Fdeprec.o H5Fefc.o H5Ffake.o H5Fint.o H5Fio.o H5Fmount.o H5Fquery.o H5Fsfile.o H5Fspace.o H5Fsuper.o H5Fsuper_cache.o H5Ftest.o H5FA.o H5FAcache.o H5FAdbg.o H5FAdblock.o H5FAdblkpage.o H5FAhdr.o H5FAint.o H5FAstat.o H5FAtest.o H5FD.o H5FDcore.o H5FDfamily.o H5FDint.o H5FDlog.o H5FDmulti.o H5FDsec2.o H5FDspace.o H5FDstdio.o H5FDtest.o H5FL.o H5FO.o H5FS.o H5FScache.o H5FSdbg.o H5FSint.o H5FSsection.o H5FSstat.o H5FStest.o H5G.o H5Gbtree2.o H5Gcache.o H5Gcompact.o H5Gdense.o H5Gdeprec.o H5Gent.o H5Gint.o H5Glink.o H5Gloc.o H5Gname.o H5Gnode.o H5Gobj.o H5Goh.o H5Groot.o H5Gstab.o H5Gtest.o H5Gtraverse.o H5HF.o H5HFbtree2.o H5HFcache.o H5HFdbg.o H5HFdblock.o H5HFdtable.o H5HFhdr.o H5HFhuge.o H5HFiblock.o H5HFiter.o H5HFman.o H5HFsection.o H5HFspace.o H5HFstat.o H5HFtest.o H5HFtiny.o H5HG.o H5HGcache.o H5HGdbg.o H5HGquery.o H5HL.o H5HLcache.o H5HLdbg.o H5HLint.o H5HLprfx.o H5HLdblk.o H5HP.o H5I.o H5Itest.o H5L.o H5Lexternal.o H5MF.o H5MFaggr.o H5MFdbg.o H5MFsection.o H5MM.o H5MP.o H5MPtest.o H5O.o H5Oainfo.o H5Oalloc.o H5Oattr.o H5Oattribute.o H5Obogus.o H5Obtreek.o H5Ocache.o H5Ocache_image.o H5Ochunk.o H5Ocont.o H5Ocopy.o H5Odbg.o H5Odrvinfo.o H5Odtype.o H5Oefl.o H5Ofill.o H5Oflush.o H5Ofsinfo.o H5Oginfo.o H5Olayout.o H5Olinfo.o H5Olink.o H5Omessage.o H5Omtime.o H5Oname.o H5Onull.o H5Opline.o H5Orefcount.o H5Osdspace.o H5Oshared.o H5Oshmesg.o H5Ostab.o H5Otest.o H5Ounknown.o H5P.o H5Pacpl.o H5Pdapl.o H5Pdcpl.o H5Pdeprec.o H5Pdxpl.o H5Pencdec.o H5Pfapl.o H5Pfcpl.o H5Pfmpl.o H5Pgcpl.o H5Pint.o H5Plapl.o H5Plcpl.o H5Pocpl.o H5Pocpypl.o H5Pstrcpl.o H5Ptest.o H5PB.o H5PL.o H5R.o H5Rdeprec.o H5UC.o H5RS.o H5S.o H5Sall.o H5Sdbg.o H5Shyper.o H5Snone.o H5Spoint.o H5Sselect.o H5Stest.o H5SL.o H5SM.o H5SMbtree2.o H5SMcache.o H5SMmessage.o H5SMtest.o H5ST.o H5T.o H5Tarray.o H5Tbit.o H5Tcommit.o H5Tcompound.o H5Tconv.o H5Tcset.o H5Tdbg.o H5Tdeprec.o H5Tenum.o H5Tfields.o H5Tfixed.o H5Tfloat.o H5Tnative.o H5Toffset.o H5Toh.o H5Topaque.o H5Torder.o H5Tpad.o H5Tprecis.o H5Tstrpad.o H5Tvisit.o H5Tvlen.o H5TS.o H5VM.o H5WB.o H5Z.o H5Zdeflate.o H5Zfletcher32.o H5Znbit.o H5Zscaleoffset.o H5Zshuffle.o H5Zszip.o H5Ztrans.o H5Tinit.o H5lib_settings.o blosc_filter.o jpeg_h5filter.o -lszip -lzlib -lblosc -ljpeg -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmstypes.d -MT cmstypes.obj ../cmstypes.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +g++ -o H5detect -Wl,-Bstatic -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 H5detect.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssm.d -MT cmssm.obj ../cmssm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +mkdir ../../../bin/linux-x86_64 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssamp.d -MT cmssamp.obj ../cmssamp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5detect.d -MT H5detect.obj ../H5detect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d -MT jpeg_h5filter.obj ../jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsps2.d -MT cmsps2.obj ../cmsps2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d -MT blosc_filter.obj ../blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5lib_settings.d -MT H5lib_settings.obj ../H5lib_settings.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsplugin.d -MT cmsplugin.obj ../cmsplugin.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tinit.d -MT H5Tinit.obj ../os/WIN32/H5Tinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspcs.d -MT cmspcs.obj ../cmspcs.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ztrans.d -MT H5Ztrans.obj ../H5Ztrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspack.d -MT cmspack.obj ../cmspack.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zszip.d -MT H5Zszip.obj ../H5Zszip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsopt.d -MT cmsopt.obj ../cmsopt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zshuffle.d -MT H5Zshuffle.obj ../H5Zshuffle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsnamed.d -MT cmsnamed.obj ../cmsnamed.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zscaleoffset.d -MT H5Zscaleoffset.obj ../H5Zscaleoffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmtrx.d -MT cmsmtrx.obj ../cmsmtrx.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Znbit.d -MT H5Znbit.obj ../H5Znbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmd5.d -MT cmsmd5.obj ../cmsmd5.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmslut.d -MT cmslut.obj ../cmslut.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zfletcher32.d -MT H5Zfletcher32.obj ../H5Zfletcher32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio1.d -MT cmsio1.obj ../cmsio1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zdeflate.d -MT H5Zdeflate.obj ../H5Zdeflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio0.d -MT cmsio0.obj ../cmsio0.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Z.d -MT H5Z.obj ../H5Z.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsintrp.d -MT cmsintrp.obj ../cmsintrp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5WB.d -MT H5WB.obj ../H5WB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmshalf.d -MT cmshalf.obj ../cmshalf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5VM.d -MT H5VM.obj ../H5VM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgmt.d -MT cmsgmt.obj ../cmsgmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5TS.d -MT H5TS.obj ../H5TS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgamma.d -MT cmsgamma.obj ../cmsgamma.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvlen.d -MT H5Tvlen.obj ../H5Tvlen.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmserr.d -MT cmserr.obj ../cmserr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscnvrt.d -MT cmscnvrt.obj ../cmscnvrt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvisit.d -MT H5Tvisit.obj ../H5Tvisit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscgats.d -MT cmscgats.obj ../cmscgats.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tstrpad.d -MT H5Tstrpad.obj ../H5Tstrpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscam02.d -MT cmscam02.obj ../cmscam02.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tprecis.d -MT H5Tprecis.obj ../H5Tprecis.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsalpha.d -MT cmsalpha.obj ../cmsalpha.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tpad.d -MT H5Tpad.obj ../H5Tpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Torder.d -MT H5Torder.obj ../H5Torder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Topaque.d -MT H5Topaque.obj ../H5Topaque.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toh.d -MT H5Toh.obj ../H5Toh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toffset.d -MT H5Toffset.obj ../H5Toffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tnative.d -MT H5Tnative.obj ../H5Tnative.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsalpha.obj -c ../cmsalpha.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfloat.d -MT H5Tfloat.obj ../H5Tfloat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfixed.d -MT H5Tfixed.obj ../H5Tfixed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfields.d -MT H5Tfields.obj ../H5Tfields.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tenum.d -MT H5Tenum.obj ../H5Tenum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmscam02.obj -c ../cmscam02.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdeprec.d -MT H5Tdeprec.obj ../H5Tdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdbg.d -MT H5Tdbg.obj ../H5Tdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcset.d -MT H5Tcset.obj ../H5Tcset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tconv.d -MT H5Tconv.obj ../H5Tconv.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcompound.d -MT H5Tcompound.obj ../H5Tcompound.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcommit.d -MT H5Tcommit.obj ../H5Tcommit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tbit.d -MT H5Tbit.obj ../H5Tbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tarray.d -MT H5Tarray.obj ../H5Tarray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5T.d -MT H5T.obj ../H5T.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ST.d -MT H5ST.obj ../H5ST.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMtest.d -MT H5SMtest.obj ../H5SMtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmscgats.obj -c ../cmscgats.c +../cmscgats.c: In function ‘ReadReal’: +../cmscgats.c:577:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 577 | else + | ^~~~ +../cmscgats.c:584:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 584 | e = 0; + | ^ +../cmscgats.c: In function ‘ParseFloatNumber’: +../cmscgats.c:654:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 654 | else + | ^~~~ +../cmscgats.c:661:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 661 | e = 0; + | ^ +../cmscgats.c: In function ‘GetVal’: +../cmscgats.c:986:19: warning: ‘strncpy’ output may be truncated copying between 255 and 1023 bytes from a string of length 1023 [-Wstringop-truncation] + 986 | case SSTRING: strncpy(Buffer, it8->str, max); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘AddToList’ at ../cmscgats.c:1184:22: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘AddToList’ at ../cmscgats.c:1185:47: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘AddToList’ at ../cmscgats.c:1215:22: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘AddToList.constprop’ at ../cmscgats.c:1184:22: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList.constprop’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘AddToList.constprop’ at ../cmscgats.c:1215:22: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList.constprop’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘SetData’ at ../cmscgats.c:1545:47: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘SetData’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In function ‘isabsolutepath’, + inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:419:9, + inlined from ‘InSymbol’ at ../cmscgats.c:920:21: +../cmscgats.c:396:5: warning: ‘strncpy’ output may be truncated copying 3 bytes from a string of length 1023 [-Wstringop-truncation] + 396 | strncpy(ThreeChars, path, 3); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘BuildAbsolutePath’, + inlined from ‘InSymbol’ at ../cmscgats.c:920:21: +../cmscgats.c:421:9: warning: ‘strncpy’ output may be truncated copying 255 bytes from a string of length 1023 [-Wstringop-truncation] + 421 | strncpy(buffer, relPath, MaxLen); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c:427:5: warning: ‘strncpy’ output may be truncated copying 255 bytes from a string of length 255 [-Wstringop-truncation] + 427 | strncpy(buffer, basePath, MaxLen); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c:437:5: warning: ‘strncpy’ output may be truncated copying between 1 and 255 bytes from a string of length 1023 [-Wstringop-truncation] + 437 | strncpy(tail + 1, relPath, MaxLen - len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘cmsIT8SetSheetType’, + inlined from ‘ParseIT8’ at ../cmscgats.c:2100:41: +../cmscgats.c:1335:9: warning: ‘strncpy’ output may be truncated copying 1023 bytes from a string of length 1023 [-Wstringop-truncation] + 1335 | strncpy(t ->SheetType, Type, MAXSTR-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, + inlined from ‘DataFormatSection’ at ../cmscgats.c:1841:18, + inlined from ‘ParseIT8’ at ../cmscgats.c:2061:26: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘ParseIT8’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, + inlined from ‘cmsIT8SetDataFormat’ at ../cmscgats.c:1490:16: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘cmsIT8SetDataFormat’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘SetData’ at ../cmscgats.c:1545:47, + inlined from ‘cmsIT8SetDataRowCol’ at ../cmscgats.c:2569:12: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘cmsIT8SetDataRowCol’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘SetData’ at ../cmscgats.c:1545:47, + inlined from ‘cmsIT8SetDataRowColDbl’ at ../cmscgats.c:2582:12: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘cmsIT8SetDataRowColDbl’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMmessage.d -MT H5SMmessage.obj ../H5SMmessage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMcache.d -MT H5SMcache.obj ../H5SMcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMbtree2.d -MT H5SMbtree2.obj ../H5SMbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SM.d -MT H5SM.obj ../H5SM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SL.d -MT H5SL.obj ../H5SL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmscnvrt.obj -c ../cmscnvrt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Stest.d -MT H5Stest.obj ../H5Stest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sselect.d -MT H5Sselect.obj ../H5Sselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Spoint.d -MT H5Spoint.obj ../H5Spoint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Snone.d -MT H5Snone.obj ../H5Snone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmserr.obj -c ../cmserr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Shyper.d -MT H5Shyper.obj ../H5Shyper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sdbg.d -MT H5Sdbg.obj ../H5Sdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sall.d -MT H5Sall.obj ../H5Sall.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5S.d -MT H5S.obj ../H5S.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5RS.d -MT H5RS.obj ../H5RS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5UC.d -MT H5UC.obj ../H5UC.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Rdeprec.d -MT H5Rdeprec.obj ../H5Rdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5R.d -MT H5R.obj ../H5R.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsgamma.obj -c ../cmsgamma.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PL.d -MT H5PL.obj ../H5PL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PB.d -MT H5PB.obj ../H5PB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ptest.d -MT H5Ptest.obj ../H5Ptest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pstrcpl.d -MT H5Pstrcpl.obj ../H5Pstrcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsgmt.obj -c ../cmsgmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpypl.d -MT H5Pocpypl.obj ../H5Pocpypl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpl.d -MT H5Pocpl.obj ../H5Pocpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plcpl.d -MT H5Plcpl.obj ../H5Plcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmshalf.obj -c ../cmshalf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plapl.d -MT H5Plapl.obj ../H5Plapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pint.d -MT H5Pint.obj ../H5Pint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pgcpl.d -MT H5Pgcpl.obj ../H5Pgcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfmpl.d -MT H5Pfmpl.obj ../H5Pfmpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfcpl.d -MT H5Pfcpl.obj ../H5Pfcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfapl.d -MT H5Pfapl.obj ../H5Pfapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pencdec.d -MT H5Pencdec.obj ../H5Pencdec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdxpl.d -MT H5Pdxpl.obj ../H5Pdxpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdeprec.d -MT H5Pdeprec.obj ../H5Pdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdcpl.d -MT H5Pdcpl.obj ../H5Pdcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdapl.d -MT H5Pdapl.obj ../H5Pdapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pacpl.d -MT H5Pacpl.obj ../H5Pacpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5P.d -MT H5P.obj ../H5P.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsintrp.obj -c ../cmsintrp.c +../cmsintrp.c: In function ‘Eval4Inputs’: +../cmsintrp.c:918:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 918 | else + | ^~~~ +../cmsintrp.c:930:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 930 | Rest = c1 * rx + c2 * ry + c3 * rz; + | ^~~~ +../cmsintrp.c:982:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 982 | else + | ^~~~ +../cmsintrp.c:994:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 994 | Rest = c1 * rx + c2 * ry + c3 * rz; + | ^~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ounknown.d -MT H5Ounknown.obj ../H5Ounknown.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Otest.d -MT H5Otest.obj ../H5Otest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ostab.d -MT H5Ostab.obj ../H5Ostab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshmesg.d -MT H5Oshmesg.obj ../H5Oshmesg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshared.d -MT H5Oshared.obj ../H5Oshared.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Osdspace.d -MT H5Osdspace.obj ../H5Osdspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Orefcount.d -MT H5Orefcount.obj ../H5Orefcount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsio0.obj -c ../cmsio0.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Opline.d -MT H5Opline.obj ../H5Opline.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Onull.d -MT H5Onull.obj ../H5Onull.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oname.d -MT H5Oname.obj ../H5Oname.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omtime.d -MT H5Omtime.obj ../H5Omtime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omessage.d -MT H5Omessage.obj ../H5Omessage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsio1.obj -c ../cmsio1.c +../cmsio1.c: In function ‘_cmsReadFloatDevicelinkTag’: +../cmsio1.c:681:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 681 | else + | ^~~~ +../cmsio1.c:688:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 688 | if (PCS == cmsSigLabData) + | ^~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olink.d -MT H5Olink.obj ../H5Olink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olinfo.d -MT H5Olinfo.obj ../H5Olinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olayout.d -MT H5Olayout.obj ../H5Olayout.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oginfo.d -MT H5Oginfo.obj ../H5Oginfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofsinfo.d -MT H5Ofsinfo.obj ../H5Ofsinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oflush.d -MT H5Oflush.obj ../H5Oflush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofill.d -MT H5Ofill.obj ../H5Ofill.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oefl.d -MT H5Oefl.obj ../H5Oefl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odtype.d -MT H5Odtype.obj ../H5Odtype.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmslut.obj -c ../cmslut.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odrvinfo.d -MT H5Odrvinfo.obj ../H5Odrvinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odbg.d -MT H5Odbg.obj ../H5Odbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocopy.d -MT H5Ocopy.obj ../H5Ocopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocont.d -MT H5Ocont.obj ../H5Ocont.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsmd5.obj -c ../cmsmd5.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ochunk.d -MT H5Ochunk.obj ../H5Ochunk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache_image.d -MT H5Ocache_image.obj ../H5Ocache_image.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache.d -MT H5Ocache.obj ../H5Ocache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obtreek.d -MT H5Obtreek.obj ../H5Obtreek.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsmtrx.obj -c ../cmsmtrx.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obogus.d -MT H5Obogus.obj ../H5Obogus.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattribute.d -MT H5Oattribute.obj ../H5Oattribute.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattr.d -MT H5Oattr.obj ../H5Oattr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oalloc.d -MT H5Oalloc.obj ../H5Oalloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oainfo.d -MT H5Oainfo.obj ../H5Oainfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsnamed.obj -c ../cmsnamed.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5O.d -MT H5O.obj ../H5O.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MPtest.d -MT H5MPtest.obj ../H5MPtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MP.d -MT H5MP.obj ../H5MP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MM.d -MT H5MM.obj ../H5MM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFsection.d -MT H5MFsection.obj ../H5MFsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFdbg.d -MT H5MFdbg.obj ../H5MFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFaggr.d -MT H5MFaggr.obj ../H5MFaggr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MF.d -MT H5MF.obj ../H5MF.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Lexternal.d -MT H5Lexternal.obj ../H5Lexternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsopt.obj -c ../cmsopt.c +../cmsopt.c: In function ‘PatchLUT’: +../cmsopt.c:510:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 510 | else + | ^~~~ +../cmsopt.c:526:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 526 | for (i=0; i < nChannelsOut; i++) + | ^~~ +../cmsopt.c: In function ‘PrelinEval8’: +../cmsopt.c:978:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 978 | else + | ^~~~ +../cmsopt.c:990:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 990 | Rest = c1 * rx + c2 * ry + c3 * rz + 0x8001; + | ^~~~ +../cmsopt.c: In function ‘OptimizeByComputingLinearization’: +../cmsopt.c:1030:26: warning: variable ‘lIsLinear’ set but not used [-Wunused-but-set-variable] + 1030 | cmsBool lIsSuitable, lIsLinear; + | ^~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5L.d -MT H5L.obj ../H5L.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Itest.d -MT H5Itest.obj ../H5Itest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5I.d -MT H5I.obj ../H5I.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HP.d -MT H5HP.obj ../H5HP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdblk.d -MT H5HLdblk.obj ../H5HLdblk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLprfx.d -MT H5HLprfx.obj ../H5HLprfx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLint.d -MT H5HLint.obj ../H5HLint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdbg.d -MT H5HLdbg.obj ../H5HLdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLcache.d -MT H5HLcache.obj ../H5HLcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HL.d -MT H5HL.obj ../H5HL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGquery.d -MT H5HGquery.obj ../H5HGquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGdbg.d -MT H5HGdbg.obj ../H5HGdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGcache.d -MT H5HGcache.obj ../H5HGcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HG.d -MT H5HG.obj ../H5HG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtiny.d -MT H5HFtiny.obj ../H5HFtiny.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtest.d -MT H5HFtest.obj ../H5HFtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFstat.d -MT H5HFstat.obj ../H5HFstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFspace.d -MT H5HFspace.obj ../H5HFspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFsection.d -MT H5HFsection.obj ../H5HFsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFman.d -MT H5HFman.obj ../H5HFman.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiter.d -MT H5HFiter.obj ../H5HFiter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiblock.d -MT H5HFiblock.obj ../H5HFiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhuge.d -MT H5HFhuge.obj ../H5HFhuge.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhdr.d -MT H5HFhdr.obj ../H5HFhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdtable.d -MT H5HFdtable.obj ../H5HFdtable.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdblock.d -MT H5HFdblock.obj ../H5HFdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdbg.d -MT H5HFdbg.obj ../H5HFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFcache.d -MT H5HFcache.obj ../H5HFcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmspack.obj -c ../cmspack.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFbtree2.d -MT H5HFbtree2.obj ../H5HFbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HF.d -MT H5HF.obj ../H5HF.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtraverse.d -MT H5Gtraverse.obj ../H5Gtraverse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtest.d -MT H5Gtest.obj ../H5Gtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gstab.d -MT H5Gstab.obj ../H5Gstab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmspcs.obj -c ../cmspcs.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Groot.d -MT H5Groot.obj ../H5Groot.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Goh.d -MT H5Goh.obj ../H5Goh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gobj.d -MT H5Gobj.obj ../H5Gobj.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gnode.d -MT H5Gnode.obj ../H5Gnode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gname.d -MT H5Gname.obj ../H5Gname.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gloc.d -MT H5Gloc.obj ../H5Gloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsplugin.obj -c ../cmsplugin.c +../cmsplugin.c: In function ‘_cmsReadFloat32Number’: +../cmsplugin.c:181:15: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] + 181 | *n = *(cmsFloat32Number*) (void*) &tmp; + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmsplugin.c: In function ‘_cmsWriteFloat32Number’: +../cmsplugin.c:292:12: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] + 292 | tmp = *(cmsUInt32Number*) (void*) &n; + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Glink.d -MT H5Glink.obj ../H5Glink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gint.d -MT H5Gint.obj ../H5Gint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gent.d -MT H5Gent.obj ../H5Gent.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdeprec.d -MT H5Gdeprec.obj ../H5Gdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdense.d -MT H5Gdense.obj ../H5Gdense.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsps2.obj -c ../cmsps2.c +../cmsps2.c: In function ‘WriteInputMatrixShaper’: +../cmsps2.c:964:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 964 | else + | ^~~~ +../cmsps2.c:986:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 986 | return rc; + | ^~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcompact.d -MT H5Gcompact.obj ../H5Gcompact.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcache.d -MT H5Gcache.obj ../H5Gcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gbtree2.d -MT H5Gbtree2.obj ../H5Gbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5G.d -MT H5G.obj ../H5G.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FStest.d -MT H5FStest.obj ../H5FStest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmssamp.obj -c ../cmssamp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSstat.d -MT H5FSstat.obj ../H5FSstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSsection.d -MT H5FSsection.obj ../H5FSsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSint.d -MT H5FSint.obj ../H5FSint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSdbg.d -MT H5FSdbg.obj ../H5FSdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FScache.d -MT H5FScache.obj ../H5FScache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmssm.obj -c ../cmssm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FS.d -MT H5FS.obj ../H5FS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FO.d -MT H5FO.obj ../H5FO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FL.d -MT H5FL.obj ../H5FL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDtest.d -MT H5FDtest.obj ../H5FDtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDstdio.d -MT H5FDstdio.obj ../H5FDstdio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDspace.d -MT H5FDspace.obj ../H5FDspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDsec2.d -MT H5FDsec2.obj ../H5FDsec2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDmulti.d -MT H5FDmulti.obj ../H5FDmulti.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDlog.d -MT H5FDlog.obj ../H5FDlog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDint.d -MT H5FDint.obj ../H5FDint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDfamily.d -MT H5FDfamily.obj ../H5FDfamily.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDcore.d -MT H5FDcore.obj ../H5FDcore.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FD.d -MT H5FD.obj ../H5FD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAtest.d -MT H5FAtest.obj ../H5FAtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAstat.d -MT H5FAstat.obj ../H5FAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAint.d -MT H5FAint.obj ../H5FAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmstypes.obj -c ../cmstypes.c +../cmstypes.c: In function ‘ReadCLUT’: +../cmstypes.c:2360:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 2360 | else + | ^~~~ +../cmstypes.c:2374:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 2374 | return CLUT; + | ^~~~~~ +../cmstypes.c: In function ‘WriteCLUT’: +../cmstypes.c:2645:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 2645 | else + | ^~~~ +../cmstypes.c:2655:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 2655 | if (!_cmsWriteAlignment(io)) return FALSE; + | ^~ +../cmstypes.c: In function ‘Type_NamedColor_Write’: +../cmstypes.c:3146:5: warning: ‘strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] + 3146 | strncpy(prefix, (const char*) NamedColorList->Prefix, 32); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmstypes.c:3147:5: warning: ‘strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] + 3147 | strncpy(suffix, (const char*) NamedColorList->Suffix, 32); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAhdr.d -MT H5FAhdr.obj ../H5FAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblkpage.d -MT H5FAdblkpage.obj ../H5FAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblock.d -MT H5FAdblock.obj ../H5FAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdbg.d -MT H5FAdbg.obj ../H5FAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAcache.d -MT H5FAcache.obj ../H5FAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FA.d -MT H5FA.obj ../H5FA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsvirt.obj -c ../cmsvirt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ftest.d -MT H5Ftest.obj ../H5Ftest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper_cache.d -MT H5Fsuper_cache.obj ../H5Fsuper_cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper.d -MT H5Fsuper.obj ../H5Fsuper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmswtpnt.obj -c ../cmswtpnt.c +../cmswtpnt.c: In function ‘cmsWhitePointFromTemp’: +../cmswtpnt.c:66:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 66 | else + | ^~~~ +../cmswtpnt.c:80:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 80 | y = -3.000*(x*x) + 2.870*x - 0.275; + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fspace.d -MT H5Fspace.obj ../H5Fspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsfile.d -MT H5Fsfile.obj ../H5Fsfile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fquery.d -MT H5Fquery.obj ../H5Fquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fmount.d -MT H5Fmount.obj ../H5Fmount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fio.d -MT H5Fio.obj ../H5Fio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsxform.obj -c ../cmsxform.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fint.d -MT H5Fint.obj ../H5Fint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o lcms.dll -shared -Wl,--out-implib,liblcms.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ cmsalpha.obj cmscam02.obj cmscgats.obj cmscnvrt.obj cmserr.obj cmsgamma.obj cmsgmt.obj cmshalf.obj cmsintrp.obj cmsio0.obj cmsio1.obj cmslut.obj cmsmd5.obj cmsmtrx.obj cmsnamed.obj cmsopt.obj cmspack.obj cmspcs.obj cmsplugin.obj cmsps2.obj cmssamp.obj cmssm.obj cmstypes.obj cmsvirt.obj cmswtpnt.obj cmsxform.obj -lws2_32 +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make -C ./ttf install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ffake.d -MT H5Ffake.obj ../H5Ffake.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make -C ./src install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' +mkdir -p O.Common +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fefc.d -MT H5Fefc.obj ../H5Fefc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cff.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bdf.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdeprec.d -MT H5Fdeprec.obj ../H5Fdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF winfnt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type42.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1cid.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdbg.d -MT H5Fdbg.obj ../H5Fdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF truetype.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF smooth.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fcwfs.d -MT H5Fcwfs.obj ../H5Fcwfs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF sfnt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF raster.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psmodule.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pshinter.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Faccum.d -MT H5Faccum.obj ../H5Faccum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psaux.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pfr.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pcf.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5F.d -MT H5F.obj ../H5F.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlzw.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgzip.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftcache.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftwinfnt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAtest.d -MT H5EAtest.obj ../H5EAtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fttype1.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsystem.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsynth.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftstroke.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAstat.d -MT H5EAstat.obj ../H5EAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpfr.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpatent.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftotval.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftmm.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAsblock.d -MT H5EAsblock.obj ../H5EAsblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlcdfil.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftinit.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgxval.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftglyph.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAint.d -MT H5EAint.obj ../H5EAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgasp.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfstype.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfntfmt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbitmap.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbbox.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAiblock.d -MT H5EAiblock.obj ../H5EAiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbase.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAhdr.d -MT H5EAhdr.obj ../H5EAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblock.d -MT H5EAdblock.obj ../H5EAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblkpage.d -MT H5EAdblkpage.obj ../H5EAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF autofit.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdbg.d -MT H5EAdbg.obj ../H5EAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAcache.d -MT H5EAcache.obj ../H5EAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EA.d -MT H5EA.obj ../H5EA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Eint.d -MT H5Eint.obj ../H5Eint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Edeprec.d -MT H5Edeprec.obj ../H5Edeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5E.d -MT H5E.obj ../H5E.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dvirtual.d -MT H5Dvirtual.obj ../H5Dvirtual.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dtest.d -MT H5Dtest.obj ../H5Dtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dsingle.d -MT H5Dsingle.obj ../H5Dsingle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dselect.d -MT H5Dselect.obj ../H5Dselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dscatgath.d -MT H5Dscatgath.obj ../H5Dscatgath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Doh.d -MT H5Doh.obj ../H5Doh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dnone.d -MT H5Dnone.obj ../H5Dnone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dlayout.d -MT H5Dlayout.obj ../H5Dlayout.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dio.d -MT H5Dio.obj ../H5Dio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dint.d -MT H5Dint.obj ../H5Dint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfill.d -MT H5Dfill.obj ../H5Dfill.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfarray.d -MT H5Dfarray.obj ../H5Dfarray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Defl.d -MT H5Defl.obj ../H5Defl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dearray.d -MT H5Dearray.obj ../H5Dearray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddeprec.d -MT H5Ddeprec.obj ../H5Ddeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddbg.d -MT H5Ddbg.obj ../H5Ddbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcontig.d -MT H5Dcontig.obj ../H5Dcontig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcompact.d -MT H5Dcompact.obj ../H5Dcompact.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dchunk.d -MT H5Dchunk.obj ../H5Dchunk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree2.d -MT H5Dbtree2.obj ../H5Dbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree.d -MT H5Dbtree.obj ../H5Dbtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5D.d -MT H5D.obj ../H5D.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5CS.d -MT H5CS.obj ../H5CS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctest.d -MT H5Ctest.obj ../H5Ctest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctag.d -MT H5Ctag.obj ../H5Ctag.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cquery.d -MT H5Cquery.obj ../H5Cquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cprefetched.d -MT H5Cprefetched.obj ../H5Cprefetched.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Clog.d -MT H5Clog.obj ../H5Clog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cimage.d -MT H5Cimage.obj ../H5Cimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cepoch.d -MT H5Cepoch.obj ../H5Cepoch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cdbg.d -MT H5Cdbg.obj ../H5Cdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5C.d -MT H5C.obj ../H5C.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2test.d -MT H5B2test.obj ../H5B2test.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2stat.d -MT H5B2stat.obj ../H5B2stat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2leaf.d -MT H5B2leaf.obj ../H5B2leaf.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2internal.d -MT H5B2internal.obj ../H5B2internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2int.d -MT H5B2int.obj ../H5B2int.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2hdr.d -MT H5B2hdr.obj ../H5B2hdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2dbg.d -MT H5B2dbg.obj ../H5B2dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2cache.d -MT H5B2cache.obj ../H5B2cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2.d -MT H5B2.obj ../H5B2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bdbg.d -MT H5Bdbg.obj ../H5Bdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bcache.d -MT H5Bcache.obj ../H5Bcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B.d -MT H5B.obj ../H5B.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACproxy_entry.d -MT H5ACproxy_entry.obj ../H5ACproxy_entry.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACdbg.d -MT H5ACdbg.obj ../H5ACdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AClog.d -MT H5AClog.obj ../H5AClog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AC.d -MT H5AC.obj ../H5AC.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Atest.d -MT H5Atest.obj ../H5Atest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Aint.d -MT H5Aint.obj ../H5Aint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adeprec.d -MT H5Adeprec.obj ../H5Adeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adense.d -MT H5Adense.obj ../H5Adense.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Abtree2.d -MT H5Abtree2.obj ../H5Abtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5A.d -MT H5A.obj ../H5A.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5trace.d -MT H5trace.obj ../H5trace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5timer.d -MT H5timer.obj ../H5timer.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5system.d -MT H5system.obj ../H5system.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5dbg.d -MT H5dbg.obj ../H5dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5checksum.d -MT H5checksum.obj ../H5checksum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5.d -MT H5.obj ../H5.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5.obj -c ../H5.c +In file included from ../H5.c:22: +../H5.c: In function ‘H5check_version’: +../H5private.h:1358:31: warning: ‘strncat’ specified bound 1 equals source length [-Wstringop-overflow=] + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5.c:831:6: note: in expansion of macro ‘HDstrncat’ + 831 | HDstrncat(lib_str, "-", (size_t)1); + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5checksum.obj -c ../H5checksum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5dbg.obj -c ../H5dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5system.obj -c ../H5system.c +../H5system.c:849: warning: ignoring #pragma comment [-Wunknown-pragmas] + 849 | #pragma comment(lib, "advapi32.lib") + | +../H5system.c: In function ‘Wgetlogin’: +../H5system.c:861:36: warning: pointer targets in passing argument 2 of ‘GetUserNameA’ differ in signedness [-Wpointer-sign] + 861 | if (GetUserName(Wlogin_buffer, &bufferCount) == 0) + | ^~~~~~~~~~~~ + | | + | long int * +In file included from /usr/share/mingw-w64/include/windows.h:70, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../H5private.h:179, + from ../H5system.c:33: +/usr/share/mingw-w64/include/winbase.h:2399:66: note: expected ‘LPDWORD’ {aka ‘long unsigned int *’} but argument is of type ‘long int *’ + 2399 | WINADVAPI WINBOOL WINAPI GetUserNameA (LPSTR lpBuffer, LPDWORD pcbBuffer); + | ~~~~~~~~^~~~~~~~~ +In file included from ../H5system.c:33: +../H5system.c: In function ‘H5_build_extpath’: +../H5private.h:1358:31: warning: ‘strncat’ specified bound 1 equals source length [-Wstringop-overflow=] + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5system.c:1115:17: note: in expansion of macro ‘HDstrncat’ + 1115 | HDstrncat(full_path, H5_DIR_SEPS, HDstrlen(H5_DIR_SEPS)); + | ^~~~~~~~~ +../H5private.h:1358:31: warning: ‘strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5system.c:1116:13: note: in expansion of macro ‘HDstrncat’ + 1116 | HDstrncat(full_path, new_name, HDstrlen(new_name)); + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5timer.obj -c ../H5timer.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5trace.obj -c ../H5trace.c +../H5trace.c: In function ‘H5_trace’: +../H5trace.c:250:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 250 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:264:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 264 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:283:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 283 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:299:56: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 299 | fprintf (out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:337:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 337 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:363:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 363 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:397:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 397 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:431:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 431 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:461:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 461 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:499:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 499 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:545:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 545 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:587:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 587 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:638:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 638 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:668:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 668 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:702:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 702 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:728:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 728 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:764:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 764 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:783:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 783 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:809:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 809 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:816:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 816 | fprintf(out, "0x%lx", (unsigned long)error); + | ^ +../H5trace.c:823:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 823 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:857:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 857 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:891:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 891 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:926:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 926 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:977:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 977 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1003:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1003 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1012:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1012 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1047:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1047 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1095:56: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1095 | fprintf (out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1102:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1102 | fprintf(out, "0x%lx", (unsigned long)statbuf); + | ^ +../H5trace.c:1116:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1116 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1150:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1150 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1180:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1180 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1368:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1368 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1402:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1402 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1440:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1440 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1464:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1464 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1546:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1546 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1578:56: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1578 | fprintf (out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1624:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1624 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1640:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1640 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1656:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1656 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1715:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1715 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1731:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1731 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1775:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1775 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1799:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1799 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1815:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1815 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1857:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1857 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1891:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1891 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1949:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1949 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1997:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1997 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2013:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2013 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2060:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2060 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2090:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2090 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2120:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2120 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2154:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2154 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2196:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2196 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2234:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2234 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2268:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2268 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2338:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2338 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2394:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2394 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2415:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2415 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2439:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2439 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2455:45: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2455 | fprintf(out, "%llu", iull); + | ^ +../H5trace.c:2455:42: warning: too many arguments for format [-Wformat-extra-args] + 2455 | fprintf(out, "%llu", iull); + | ^~~~~~ +../H5trace.c:2455:45: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2455 | fprintf(out, "%llu", iull); + | ^ +../H5trace.c:2455:42: warning: too many arguments for format [-Wformat-extra-args] + 2455 | fprintf(out, "%llu", iull); + | ^~~~~~ +../H5trace.c:2469:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2469 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2476:78: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2476 | fprintf(out, "%s0x%lx", (i ? ", " : ""), (unsigned long)(p[i])); + | ^ +../H5trace.c:2490:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2490 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2499:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2499 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2525:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2525 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2555:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2555 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2562:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2562 | fprintf(out, "0x%lx", (unsigned long)filter); + | ^ +../H5trace.c:2569:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2569 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2588:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2588 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2605:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2605 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5A.obj -c ../H5A.c +In file included from ../H5A.c:25: +../H5A.c: In function ‘H5Aget_name_by_idx’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5A.c:937:9: note: in expansion of macro ‘HDstrncpy’ + 937 | HDstrncpy(name, attr->shared->name, MIN((size_t)(ret_value + 1), size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5A.c:933:26: note: in expansion of macro ‘HDstrlen’ + 933 | ret_value = (ssize_t)HDstrlen(attr->shared->name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Abtree2.obj -c ../H5Abtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Adense.obj -c ../H5Adense.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Adeprec.obj -c ../H5Adeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Aint.obj -c ../H5Aint.c +../H5Aint.c: In function ‘H5A_create’: +../H5Aint.c:200:45: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 200 | if(NULL == (attr->shared->dt = H5T_copy(type, H5T_COPY_ALL))) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Aprivate.h:25, + from ../H5Apkg.h:37, + from ../H5Aint.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Aint.c: In function ‘H5A__read’: +../H5Aint.c:532:71: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 532 | (dst_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0) + | ^~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Aprivate.h:25, + from ../H5Apkg.h:37, + from ../H5Aint.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Aint.c: In function ‘H5A__write’: +../H5Aint.c:632:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 632 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0 || + | ^~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Aprivate.h:25, + from ../H5Apkg.h:37, + from ../H5Aint.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Atest.obj -c ../H5Atest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5AC.obj -c ../H5AC.c +In file included from ../H5AC.c:39: +../H5AC.c: In function ‘H5AC__init_package’: +../H5private.h:1992:13: warning: unused variable ‘err_occurred’ [-Wunused-variable] + 1992 | hbool_t err_occurred = FALSE; \ + | ^~~~~~~~~~~~ +../H5private.h:2175:5: note: in expansion of macro ‘FUNC_ENTER_COMMON’ + 2175 | FUNC_ENTER_COMMON(H5_IS_PKG(FUNC)); \ + | ^~~~~~~~~~~~~~~~~ +../H5AC.c:201:5: note: in expansion of macro ‘FUNC_ENTER_PACKAGE’ + 201 | FUNC_ENTER_PACKAGE + | ^~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5AClog.obj -c ../H5AClog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5ACdbg.obj -c ../H5ACdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5ACproxy_entry.obj -c ../H5ACproxy_entry.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B.obj -c ../H5B.c +../H5B.c: In function ‘H5B_valid’: +../H5B.c:2038:26: warning: variable ‘shared’ set but not used [-Wunused-but-set-variable] + 2038 | H5B_shared_t *shared; /* Pointer to shared B-tree info */ + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Bcache.obj -c ../H5Bcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +/usr/bin/ar -rc libttf.a autofit.o ftbase.o ftbbox.o ftbitmap.o ftfntfmt.o ftfstype.o ftgasp.o ftglyph.o ftgxval.o ftinit.o ftlcdfil.o ftmm.o ftotval.o ftpatent.o ftpfr.o ftstroke.o ftsynth.o ftsystem.o fttype1.o ftwinfnt.o ftcache.o ftgzip.o ftlzw.o pcf.o pfr.o psaux.o pshinter.o psmodule.o raster.o sfnt.o smooth.o truetype.o type1.o type1cid.o type42.o winfnt.o bdf.o cff.o +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +/usr/bin/ranlib libttf.a +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +g++ -o libttf.so -shared -fPIC -Wl,-hlibttf.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 autofit.o ftbase.o ftbbox.o ftbitmap.o ftfntfmt.o ftfstype.o ftgasp.o ftglyph.o ftgxval.o ftinit.o ftlcdfil.o ftmm.o ftotval.o ftpatent.o ftpfr.o ftstroke.o ftsynth.o ftsystem.o fttype1.o ftwinfnt.o ftcache.o ftgzip.o ftlzw.o pcf.o pfr.o psaux.o pshinter.o psmodule.o raster.o sfnt.o smooth.o truetype.o type1.o type1cid.o type42.o winfnt.o bdf.o cff.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Bdbg.obj -c ../H5Bdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ + T_A=windows-x64-mingw install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cff.d -MT cff.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bdf.d -MT bdf.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF winfnt.d -MT winfnt.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type42.d -MT type42.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1cid.d -MT type1cid.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1.d -MT type1.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF truetype.d -MT truetype.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF smooth.d -MT smooth.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF sfnt.d -MT sfnt.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF raster.d -MT raster.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psmodule.d -MT psmodule.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pshinter.d -MT pshinter.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psaux.d -MT psaux.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pfr.d -MT pfr.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pcf.d -MT pcf.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlzw.d -MT ftlzw.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgzip.d -MT ftgzip.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftcache.d -MT ftcache.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftwinfnt.d -MT ftwinfnt.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fttype1.d -MT fttype1.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsystem.d -MT ftsystem.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsynth.d -MT ftsynth.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftstroke.d -MT ftstroke.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpfr.d -MT ftpfr.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2.obj -c ../H5B2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpatent.d -MT ftpatent.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftotval.d -MT ftotval.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftmm.d -MT ftmm.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlcdfil.d -MT ftlcdfil.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftinit.d -MT ftinit.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgxval.d -MT ftgxval.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftglyph.d -MT ftglyph.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgasp.d -MT ftgasp.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfstype.d -MT ftfstype.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfntfmt.d -MT ftfntfmt.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbitmap.d -MT ftbitmap.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbbox.d -MT ftbbox.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbase.d -MT ftbase.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF autofit.d -MT autofit.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2cache.obj -c ../H5B2cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2dbg.obj -c ../H5B2dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2hdr.obj -c ../H5B2hdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o autofit.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2int.obj -c ../H5B2int.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2internal.obj -c ../H5B2internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2leaf.obj -c ../H5B2leaf.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2stat.obj -c ../H5B2stat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftbase.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftbbox.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2test.obj -c ../H5B2test.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftbitmap.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftfntfmt.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftfstype.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftgasp.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftglyph.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftgxval.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftinit.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftlcdfil.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftmm.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftotval.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftpatent.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftpfr.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftstroke.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftsynth.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftsystem.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o fttype1.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftwinfnt.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5C.obj -c ../H5C.c +../H5C.c: In function ‘H5C_flush_cache’: +../H5C.c:1057:14: warning: variable ‘ignore_protected’ set but not used [-Wunused-but-set-variable] + 1057 | hbool_t ignore_protected; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftcache.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cdbg.obj -c ../H5Cdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cepoch.obj -c ../H5Cepoch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftgzip.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftlzw.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o pcf.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cimage.obj -c ../H5Cimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Clog.obj -c ../H5Clog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o pfr.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cprefetched.obj -c ../H5Cprefetched.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cquery.obj -c ../H5Cquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o psaux.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ctag.obj -c ../H5Ctag.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o pshinter.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ctest.obj -c ../H5Ctest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o psmodule.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5CS.obj -c ../H5CS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o raster.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5D.obj -c ../H5D.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dbtree.obj -c ../H5Dbtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o sfnt.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dbtree2.obj -c ../H5Dbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o smooth.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dchunk.obj -c ../H5Dchunk.c +../H5Dchunk.c: In function ‘H5D__chunk_direct_write’: +../H5Dchunk.c:393:13: warning: unused variable ‘md_dxpl_generated’ [-Wunused-variable] + 393 | hbool_t md_dxpl_generated = FALSE; /* bool to indicate whether we should free the md_dxpl_id at exit */ + | ^~~~~~~~~~~~~~~~~ +../H5Dchunk.c: In function ‘H5D__chunk_init’: +../H5Dchunk.c:724:26: warning: unused variable ‘sc’ [-Wunused-variable] + 724 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_is_space_alloc’: +../H5Dchunk.c:816:32: warning: unused variable ‘sc’ [-Wunused-variable] + 816 | const H5O_storage_chunk_t *sc = &(storage->u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_dest’: +../H5Dchunk.c:2371:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2371 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_create’: +../H5Dchunk.c:2582:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2582 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_lookup’: +../H5Dchunk.c:2683:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2683 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_flush_entry’: +../H5Dchunk.c:2806:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2806 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_allocated’: +../H5Dchunk.c:3716:26: warning: unused variable ‘sc’ [-Wunused-variable] + 3716 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_allocate’: +../H5Dchunk.c:3809:32: warning: unused variable ‘sc’ [-Wunused-variable] + 3809 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_update_old_edge_chunks’: +../H5Dchunk.c:4242:32: warning: unused variable ‘sc’ [-Wunused-variable] + 4242 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c:4229:24: warning: unused variable ‘pline’ [-Wunused-variable] + 4229 | const H5O_pline_t *pline = &(dset->shared->dcpl_cache.pline); /* I/O pipeline info */ + | ^~~~~ +../H5Dchunk.c: In function ‘H5D__chunk_prune_by_extent’: +../H5Dchunk.c:4797:32: warning: unused variable ‘sc’ [-Wunused-variable] + 4797 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_delete’: +../H5Dchunk.c:5203:26: warning: unused variable ‘sc’ [-Wunused-variable] + 5203 | H5O_storage_chunk_t *sc = &(storage->u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_copy_cb’: +../H5Dchunk.c:5550:111: warning: passing argument 5 of ‘H5D__chunk_file_alloc’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 5550 | if(H5D__chunk_file_alloc(udata->idx_info_dst, NULL, &udata_dst.chunk_block, &need_insert, udata_dst.common.scaled) < 0) + | ~~~~~~~~~~~~~~~~^~~~~~~ +../H5Dchunk.c:300:13: note: expected ‘hsize_t *’ {aka ‘long long unsigned int *’} but argument is of type ‘const hsize_t *’ {aka ‘const long long unsigned int *’} + 300 | hsize_t scaled[]); + | ~~~~~~~~^~~~~~~~ +../H5Dchunk.c: In function ‘H5D__chunk_copy’: +../H5Dchunk.c:5689:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 5689 | if(NULL == (dt_mem = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) + | ^~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dchunk.c:55: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dchunk.c:5697:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 5697 | if(NULL == (dt_dst = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) + | ^~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dchunk.c:55: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dchunk.c: In function ‘H5D__chunk_bh_info’: +../H5Dchunk.c:5856:26: warning: unused variable ‘sc’ [-Wunused-variable] + 5856 | H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_dump_index’: +../H5Dchunk.c:5979:26: warning: unused variable ‘sc’ [-Wunused-variable] + 5979 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o truetype.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c:25: +../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/ttgload.c: In function ‘load_truetype_glyph’: +../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/ttgload.c:1662:26: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 1662 | (void*)(unsigned long)glyph_index ) ) + | ^ +../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/ttgload.c:1676:22: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 1676 | node->data = (void*)(unsigned long)glyph_index; + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dcompact.obj -c ../H5Dcompact.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dcontig.obj -c ../H5Dcontig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o type1.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ddbg.obj -c ../H5Ddbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o type1cid.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o type42.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ddeprec.obj -c ../H5Ddeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o winfnt.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dearray.obj -c ../H5Dearray.c +../H5Dearray.c: In function ‘H5D__earray_debug’: +../H5Dearray.c:446:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 446 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5Dearray.c:446:23: warning: too many arguments for format [-Wformat-extra-args] + 446 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +../H5Dearray.c:446:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 446 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5Dearray.c:446:23: warning: too many arguments for format [-Wformat-extra-args] + 446 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +../H5Dearray.c: In function ‘H5D__earray_filt_debug’: +../H5Dearray.c:605:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 605 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5Dearray.c:605:23: warning: too many arguments for format [-Wformat-extra-args] + 605 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +../H5Dearray.c:605:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 605 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5Dearray.c:605:23: warning: too many arguments for format [-Wformat-extra-args] + 605 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o bdf.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Defl.obj -c ../H5Defl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dfarray.obj -c ../H5Dfarray.c +../H5Dfarray.c: In function ‘H5D__farray_debug’: +../H5Dfarray.c:444:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 444 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5Dfarray.c:444:23: warning: too many arguments for format [-Wformat-extra-args] + 444 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +../H5Dfarray.c:444:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 444 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5Dfarray.c:444:23: warning: too many arguments for format [-Wformat-extra-args] + 444 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +../H5Dfarray.c: In function ‘H5D__farray_filt_debug’: +../H5Dfarray.c:710:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 710 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5Dfarray.c:710:23: warning: too many arguments for format [-Wformat-extra-args] + 710 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +../H5Dfarray.c:710:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 710 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5Dfarray.c:710:23: warning: too many arguments for format [-Wformat-extra-args] + 710 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dfill.obj -c ../H5Dfill.c +../H5Dfill.c: In function ‘H5D__fill’: +../H5Dfill.c:238:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 238 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(fill_type, H5T_COPY_ALL), FALSE)) < 0) + | ^~~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dfill.c:36: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dfill.c:241:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 241 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(buf_type, H5T_COPY_ALL), FALSE)) < 0) + | ^~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dfill.c:36: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dfill.c: In function ‘H5D__fill_init’: +../H5Dfill.c:413:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 413 | if(NULL == (fb_info->mem_type = H5T_copy(dset_type, H5T_COPY_REOPEN))) + | ^~~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dfill.c:36: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o cff.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o ttf.dll -shared -Wl,--out-implib,libttf.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ autofit.obj ftbase.obj ftbbox.obj ftbitmap.obj ftfntfmt.obj ftfstype.obj ftgasp.obj ftglyph.obj ftgxval.obj ftinit.obj ftlcdfil.obj ftmm.obj ftotval.obj ftpatent.obj ftpfr.obj ftstroke.obj ftsynth.obj ftsystem.obj fttype1.obj ftwinfnt.obj ftcache.obj ftgzip.obj ftlzw.obj pcf.obj pfr.obj psaux.obj pshinter.obj psmodule.obj raster.obj sfnt.obj smooth.obj truetype.obj type1.obj type1cid.obj type42.obj winfnt.obj bdf.obj cff.obj -lws2_32 +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make -C ./wmf install +make -C ./src install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' +mkdir -p O.Common +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dint.obj -c ../H5Dint.c +../H5Dint.c: In function ‘H5D__init_type’: +../H5Dint.c:681:43: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 681 | if((dset->shared->type = H5T_copy(type, H5T_COPY_ALL)) == NULL) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dint.c:25: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dint.c: In function ‘H5D__mark’: +../H5Dint.c:3174:37: warning: passing argument 1 of ‘H5D__layout_oh_write’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 3174 | if(H5D__layout_oh_write(dataset, dxpl_id, oh, update_flags) < 0) + | ^~~~~~~ +In file included from ../H5Dint.c:25: +../H5Dpkg.h:638:43: note: expected ‘H5D_t *’ {aka ‘struct H5D_t *’} but argument is of type ‘const H5D_t *’ {aka ‘const struct H5D_t *’} + 638 | H5_DLL herr_t H5D__layout_oh_write(H5D_t *dataset, hid_t dxpl_id, H5O_t *oh, + | ~~~~~~~^~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF recorder.d ../recorder.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF player.d ../player.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF meta.d ../meta.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bbuf.d ../bbuf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF api.d ../api.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../api.c +In file included from ../api.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../bbuf.c +In file included from ../bbuf.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dio.obj -c ../H5Dio.c +In file included from ../H5Dio.c:24: +../H5Dio.c: In function ‘H5D__ioinfo_init’: +../H5private.h:1992:13: warning: unused variable ‘err_occurred’ [-Wunused-variable] + 1992 | hbool_t err_occurred = FALSE; \ + | ^~~~~~~~~~~~ +../H5private.h:2199:5: note: in expansion of macro ‘FUNC_ENTER_COMMON’ + 2199 | FUNC_ENTER_COMMON(H5_IS_PKG(FUNC)); \ + | ^~~~~~~~~~~~~~~~~ +../H5Dio.c:867:5: note: in expansion of macro ‘FUNC_ENTER_STATIC’ + 867 | FUNC_ENTER_STATIC + | ^~~~~~~~~~~~~~~~~ +../H5Dio.c:920:1: warning: label ‘done’ defined but not used [-Wunused-label] + 920 | done: + | ^~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../meta.c +In file included from ../meta.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dlayout.obj -c ../H5Dlayout.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dnone.obj -c ../H5Dnone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Doh.obj -c ../H5Doh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dscatgath.obj -c ../H5Dscatgath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dselect.obj -c ../H5Dselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dsingle.obj -c ../H5Dsingle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../player.c +In file included from ../player.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +In file included from ../player.c:44: +../player/meta.h: In function ‘meta_dc_color’: +../player/meta.h:2386:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] + 2386 | { if (value = wmf_attr_query (API, attrlist, "color")) + | ^~~~~ +../player/meta.h: In function ‘meta_pen_create’: +../player/meta.h:3107:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] + 3107 | { if (value = wmf_attr_query (API, attrlist, "color")) + | ^~~~~ +../player/meta.h: In function ‘meta_brush_create’: +../player/meta.h:3209:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] + 3209 | { if (value = wmf_attr_query (API, attrlist, "color")) + | ^~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dtest.obj -c ../H5Dtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../recorder.c +In file included from ../recorder.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +../recorder.c: In function ‘wmf_canvas_line’: +../recorder.c:977:17: warning: unused variable ‘Size’ [-Wunused-variable] + 977 | unsigned long Size = 3 + 2; + | ^~~~ +../recorder.c: In function ‘s_update_header’: +../recorder.c:91:16: warning: ‘rbox.ptr’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 91 | *rbox->ptr++ = (unsigned char) ((ul >> 8) & 0xff); + | ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../recorder.c:98:16: note: ‘rbox.ptr’ was declared here + 98 | wmfRecordBox rbox; + | ^~~~ +../recorder.c:84:17: warning: ‘rbox.end’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 84 | if (rbox->end - rbox->ptr < 4) + | ~~~~~~~~~~^~~~~~~~~~~ +../recorder.c:98:16: note: ‘rbox.end’ was declared here + 98 | wmfRecordBox rbox; + | ^~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +/usr/bin/ar -rc libwmf.a api.o bbuf.o meta.o player.o recorder.o +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +/usr/bin/ranlib libwmf.a +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +g++ -o libwmf.so -shared -fPIC -Wl,-hlibwmf.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 api.o bbuf.o meta.o player.o recorder.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ + T_A=windows-x64-mingw install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF recorder.d -MT recorder.obj ../recorder.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF player.d -MT player.obj ../player.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF meta.d -MT meta.obj ../meta.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bbuf.d -MT bbuf.obj ../bbuf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF api.d -MT api.obj ../api.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o api.obj -c ../api.c +In file included from ../api.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, + from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, + from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, + from ../wmfdefs.h:24, + from ../api.c:29: +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] + 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] + 310 | # pragma warning( disable : 4018 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] + 311 | # pragma warning( disable : 4244 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] + 312 | # pragma warning( disable : 4142 ) + | +In file included from ../wmfdefs.h:25, + from ../api.c:29: +../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export + 34 | # pragma message( "WMF compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o bbuf.obj -c ../bbuf.c +In file included from ../bbuf.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, + from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, + from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, + from ../wmfdefs.h:24, + from ../bbuf.c:26: +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] + 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] + 310 | # pragma warning( disable : 4018 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] + 311 | # pragma warning( disable : 4244 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] + 312 | # pragma warning( disable : 4142 ) + | +In file included from ../wmfdefs.h:25, + from ../bbuf.c:26: +../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export + 34 | # pragma message( "WMF compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dvirtual.obj -c ../H5Dvirtual.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o meta.obj -c ../meta.c +In file included from ../meta.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, + from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, + from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, + from ../wmfdefs.h:24, + from ../meta.c:26: +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] + 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] + 310 | # pragma warning( disable : 4018 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] + 311 | # pragma warning( disable : 4244 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] + 312 | # pragma warning( disable : 4142 ) + | +In file included from ../wmfdefs.h:25, + from ../meta.c:26: +../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export + 34 | # pragma message( "WMF compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5E.obj -c ../H5E.c +In file included from ../H5E.c:52: +In function ‘H5E_get_class_name’, + inlined from ‘H5Eget_class_name’ at ../H5E.c:610:21: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5E.c:646:8: note: in expansion of macro ‘HDstrncpy’ + 646 | HDstrncpy(name, cls->cls_name, MIN((size_t)(len + 1), size)); + | ^~~~~~~~~ +../H5E.c: In function ‘H5Eget_class_name’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5E.c:642:20: note: in expansion of macro ‘HDstrlen’ + 642 | len = (ssize_t)HDstrlen(cls->cls_name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Edeprec.obj -c ../H5Edeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Eint.obj -c ../H5Eint.c +In file included from ../H5Eint.c:35: +../H5Eint.c: In function ‘H5E_get_msg’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Eint.c:143:8: note: in expansion of macro ‘HDstrncpy’ + 143 | HDstrncpy(msg_str, msg->msg, MIN((size_t)(len+1), size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Eint.c:139:20: note: in expansion of macro ‘HDstrlen’ + 139 | len = (ssize_t)HDstrlen(msg->msg); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EA.obj -c ../H5EA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o player.obj -c ../player.c +In file included from ../player.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, + from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, + from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, + from ../wmfdefs.h:24, + from ../player.c:33: +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] + 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] + 310 | # pragma warning( disable : 4018 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] + 311 | # pragma warning( disable : 4244 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] + 312 | # pragma warning( disable : 4142 ) + | +In file included from ../wmfdefs.h:25, + from ../player.c:33: +../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export + 34 | # pragma message( "WMF compiling as DLL export" ) + | ^~~~~~~ +In file included from ../player.c:44: +../player/meta.h: In function ‘meta_dc_color’: +../player/meta.h:2386:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] + 2386 | { if (value = wmf_attr_query (API, attrlist, "color")) + | ^~~~~ +../player/meta.h: In function ‘meta_pen_create’: +../player/meta.h:3107:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] + 3107 | { if (value = wmf_attr_query (API, attrlist, "color")) + | ^~~~~ +../player/meta.h: In function ‘meta_brush_create’: +../player/meta.h:3209:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] + 3209 | { if (value = wmf_attr_query (API, attrlist, "color")) + | ^~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAcache.obj -c ../H5EAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o recorder.obj -c ../recorder.c +In file included from ../recorder.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, + from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, + from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, + from ../wmfdefs.h:24, + from ../recorder.c:28: +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] + 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] + 310 | # pragma warning( disable : 4018 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] + 311 | # pragma warning( disable : 4244 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] + 312 | # pragma warning( disable : 4142 ) + | +In file included from ../wmfdefs.h:25, + from ../recorder.c:28: +../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export + 34 | # pragma message( "WMF compiling as DLL export" ) + | ^~~~~~~ +../recorder.c: In function ‘wmf_canvas_line’: +../recorder.c:977:17: warning: unused variable ‘Size’ [-Wunused-variable] + 977 | unsigned long Size = 3 + 2; + | ^~~~ +../recorder.c: In function ‘s_update_header’: +../recorder.c:91:16: warning: ‘rbox.ptr’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 91 | *rbox->ptr++ = (unsigned char) ((ul >> 8) & 0xff); + | ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../recorder.c:98:16: note: ‘rbox.ptr’ was declared here + 98 | wmfRecordBox rbox; + | ^~~~ +../recorder.c:84:17: warning: ‘rbox.end’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 84 | if (rbox->end - rbox->ptr < 4) + | ~~~~~~~~~~^~~~~~~~~~~ +../recorder.c:98:16: note: ‘rbox.end’ was declared here + 98 | wmfRecordBox rbox; + | ^~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o wmf.dll -shared -Wl,--out-implib,libwmf.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ api.obj bbuf.obj meta.obj player.obj recorder.obj -lws2_32 +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make -C ./webp install +make -C ./src install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' +mkdir -p O.Common +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF utils.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF thread.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerutils.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF random.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels_dec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman_encode.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersutils.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAdbg.obj -c ../H5EAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF color_cache.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_writer.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_reader.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxread.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxinternal.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxedit.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_encode.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webpenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF analysis.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphaenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF backward_references.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF delta_palettization.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAdblkpage.obj -c ../H5EAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF config.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filter.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF frameenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF histogram.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF iterator.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_tools.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_rescale.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_psnr.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_csp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF near_lossless.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF syntax.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF token.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treeenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8lenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAdblock.obj -c ../H5EAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_msa.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_clip_tables.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cpu.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costdsp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_avx2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersdsp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerdsp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF demux.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_decode.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8ldec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAhdr.obj -c ../H5EAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treedec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantdec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF io.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF idec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF framedec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF buffer.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphadec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAiblock.obj -c ../H5EAiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAint.obj -c ../H5EAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAsblock.obj -c ../H5EAsblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAstat.obj -c ../H5EAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAtest.obj -c ../H5EAtest.c +../H5EAtest.c: In function ‘H5EA__test_debug’: +../H5EAtest.c:339:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 339 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5EAtest.c:339:23: warning: too many arguments for format [-Wformat-extra-args] + 339 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +../H5EAtest.c:339:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 339 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5EAtest.c:339:23: warning: too many arguments for format [-Wformat-extra-args] + 339 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5F.obj -c ../H5F.c +In file included from ../H5F.c:24: +../H5F.c: In function ‘H5Fget_name’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5F.c:1311:9: note: in expansion of macro ‘HDstrncpy’ + 1311 | HDstrncpy(name, H5F_OPEN_NAME(f), MIN(len + 1,size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5F.c:1308:11: note: in expansion of macro ‘HDstrlen’ + 1308 | len = HDstrlen(H5F_OPEN_NAME(f)); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Faccum.obj -c ../H5Faccum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fcwfs.obj -c ../H5Fcwfs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fdbg.obj -c ../H5Fdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fdeprec.obj -c ../H5Fdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fefc.obj -c ../H5Fefc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ffake.obj -c ../H5Ffake.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fint.obj -c ../H5Fint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fio.obj -c ../H5Fio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fmount.obj -c ../H5Fmount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fquery.obj -c ../H5Fquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fsfile.obj -c ../H5Fsfile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fspace.obj -c ../H5Fspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fsuper.obj -c ../H5Fsuper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fsuper_cache.obj -c ../H5Fsuper_cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ftest.obj -c ../H5Ftest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FA.obj -c ../H5FA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAcache.obj -c ../H5FAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAdbg.obj -c ../H5FAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAdblock.obj -c ../H5FAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAdblkpage.obj -c ../H5FAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAhdr.obj -c ../H5FAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAint.obj -c ../H5FAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAstat.obj -c ../H5FAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAtest.obj -c ../H5FAtest.c +../H5FAtest.c: In function ‘H5FA__test_debug’: +../H5FAtest.c:322:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 322 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5FAtest.c:322:23: warning: too many arguments for format [-Wformat-extra-args] + 322 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +../H5FAtest.c:322:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 322 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5FAtest.c:322:23: warning: too many arguments for format [-Wformat-extra-args] + 322 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FD.obj -c ../H5FD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDcore.obj -c ../H5FDcore.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDfamily.obj -c ../H5FDfamily.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDint.obj -c ../H5FDint.c +../H5FDint.c: In function ‘H5FD_read’: +../H5FDint.c:183:17: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 183 | io_dxpl = fdio_info->raw_dxpl; + | ^ +../H5FDint.c:185:17: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 185 | io_dxpl = fdio_info->meta_dxpl; + | ^ +../H5FDint.c: In function ‘H5FD_write’: +../H5FDint.c:269:17: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 269 | io_dxpl = fdio_info->raw_dxpl; + | ^ +../H5FDint.c:271:17: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 271 | io_dxpl = fdio_info->meta_dxpl; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDlog.obj -c ../H5FDlog.c +../H5FDlog.c: In function ‘H5FD_log_open’: +../H5FDlog.c:630:95: warning: ‘stat_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDlog.c:630:59: warning: ‘stat_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDlog.c:628:95: warning: ‘open_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDlog.c:628:59: warning: ‘open_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDmulti.obj -c ../H5FDmulti.c +../H5FDmulti.c: In function ‘H5FD_multi_sb_encode’: +../H5FDmulti.c:662:5: warning: ‘strncpy’ output truncated copying 8 bytes from a string of length 9 [-Wstringop-truncation] + 662 | strncpy(name, "NCSAmulti", (size_t)8); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDmulti.c:697:9: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 697 | strncpy((char *)p, file->fa.memb_name[mt], n); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDmulti.c:696:20: note: length computed here + 696 | size_t n = strlen(file->fa.memb_name[mt]) + 1; + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDsec2.obj -c ../H5FDsec2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDspace.obj -c ../H5FDspace.c +../H5FDspace.c: In function ‘H5FD_extend’: +../H5FDspace.c:104:13: warning: unused variable ‘extra’ [-Wunused-variable] + 104 | hsize_t extra; /* Extra space to allocate, to align request */ + | ^~~~~ +../H5FDspace.c:102:13: warning: unused variable ‘orig_size’ [-Wunused-variable] + 102 | hsize_t orig_size = size; /* Original allocation size */ + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDstdio.obj -c ../H5FDstdio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDtest.obj -c ../H5FDtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FL.obj -c ../H5FL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FO.obj -c ../H5FO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +/usr/bin/ar -rc libwebp.a alphadec.o buffer.o framedec.o idec.o io.o quantdec.o treedec.o vp8.o vp8ldec.o webp.o anim_decode.o demux.o rescalerdsp.o rescaler_mips32.o rescaler_mips_dsp_r2.o rescaler_neon.o rescaler_sse2.o lossless.o lossless_enc.o lossless_enc_mips32.o lossless_enc_mips_dsp_r2.o lossless_enc_neon.o lossless_enc_sse2.o lossless_enc_sse41.o lossless_mips_dsp_r2.o lossless_neon.o lossless_sse2.o filtersdsp.o filters_mips_dsp_r2.o filters_sse2.o enc.o enc_avx2.o enc_mips32.o enc_mips_dsp_r2.o enc_neon.o enc_sse2.o enc_sse41.o costdsp.o cost_mips32.o cost_mips_dsp_r2.o cost_sse2.o cpu.o dec.o dec_clip_tables.o dec_mips32.o dec_mips_dsp_r2.o dec_msa.o dec_neon.o dec_sse2.o dec_sse41.o argb.o argb_mips_dsp_r2.o argb_sse2.o alpha_processing.o alpha_processing_mips_dsp_r2.o alpha_processing_sse2.o alpha_processing_sse41.o upsampling.o upsampling_mips_dsp_r2.o upsampling_neon.o upsampling_sse2.o yuv.o yuv_mips32.o yuv_mips_dsp_r2.o yuv_sse2.o vp8lenc.o treeenc.o token.o syntax.o near_lossless.o picture.o picture_csp.o picture_psnr.o picture_rescale.o picture_tools.o quantenc.o iterator.o histogram.o frameenc.o filter.o config.o costenc.o delta_palettization.o backward_references.o alphaenc.o analysis.o webpenc.o anim_encode.o muxedit.o muxinternal.o muxread.o bit_reader.o bit_writer.o color_cache.o filtersutils.o huffman.o huffman_encode.o quant_levels.o quant_levels_dec.o random.o rescalerutils.o thread.o utils.o +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +/usr/bin/ranlib libwebp.a +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +g++ -o libwebp.so -shared -fPIC -Wl,-hlibwebp.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 alphadec.o buffer.o framedec.o idec.o io.o quantdec.o treedec.o vp8.o vp8ldec.o webp.o anim_decode.o demux.o rescalerdsp.o rescaler_mips32.o rescaler_mips_dsp_r2.o rescaler_neon.o rescaler_sse2.o lossless.o lossless_enc.o lossless_enc_mips32.o lossless_enc_mips_dsp_r2.o lossless_enc_neon.o lossless_enc_sse2.o lossless_enc_sse41.o lossless_mips_dsp_r2.o lossless_neon.o lossless_sse2.o filtersdsp.o filters_mips_dsp_r2.o filters_sse2.o enc.o enc_avx2.o enc_mips32.o enc_mips_dsp_r2.o enc_neon.o enc_sse2.o enc_sse41.o costdsp.o cost_mips32.o cost_mips_dsp_r2.o cost_sse2.o cpu.o dec.o dec_clip_tables.o dec_mips32.o dec_mips_dsp_r2.o dec_msa.o dec_neon.o dec_sse2.o dec_sse41.o argb.o argb_mips_dsp_r2.o argb_sse2.o alpha_processing.o alpha_processing_mips_dsp_r2.o alpha_processing_sse2.o alpha_processing_sse41.o upsampling.o upsampling_mips_dsp_r2.o upsampling_neon.o upsampling_sse2.o yuv.o yuv_mips32.o yuv_mips_dsp_r2.o yuv_sse2.o vp8lenc.o treeenc.o token.o syntax.o near_lossless.o picture.o picture_csp.o picture_psnr.o picture_rescale.o picture_tools.o quantenc.o iterator.o histogram.o frameenc.o filter.o config.o costenc.o delta_palettization.o backward_references.o alphaenc.o analysis.o webpenc.o anim_encode.o muxedit.o muxinternal.o muxread.o bit_reader.o bit_writer.o color_cache.o filtersutils.o huffman.o huffman_encode.o quant_levels.o quant_levels_dec.o random.o rescalerutils.o thread.o utils.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ + T_A=windows-x64-mingw install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF utils.d -MT utils.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF thread.d -MT thread.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerutils.d -MT rescalerutils.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF random.d -MT random.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels_dec.d -MT quant_levels_dec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels.d -MT quant_levels.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman_encode.d -MT huffman_encode.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman.d -MT huffman.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersutils.d -MT filtersutils.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF color_cache.d -MT color_cache.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_writer.d -MT bit_writer.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FS.obj -c ../H5FS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_reader.d -MT bit_reader.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxread.d -MT muxread.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxinternal.d -MT muxinternal.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxedit.d -MT muxedit.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_encode.d -MT anim_encode.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webpenc.d -MT webpenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF analysis.d -MT analysis.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphaenc.d -MT alphaenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF backward_references.d -MT backward_references.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF delta_palettization.d -MT delta_palettization.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costenc.d -MT costenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF config.d -MT config.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filter.d -MT filter.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF frameenc.d -MT frameenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF histogram.d -MT histogram.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF iterator.d -MT iterator.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantenc.d -MT quantenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_tools.d -MT picture_tools.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_rescale.d -MT picture_rescale.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_psnr.d -MT picture_psnr.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_csp.d -MT picture_csp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture.d -MT picture.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF near_lossless.d -MT near_lossless.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF syntax.d -MT syntax.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF token.d -MT token.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treeenc.d -MT treeenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8lenc.d -MT vp8lenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_sse2.d -MT yuv_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips_dsp_r2.d -MT yuv_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips32.d -MT yuv_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv.d -MT yuv.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_sse2.d -MT upsampling_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_neon.d -MT upsampling_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_mips_dsp_r2.d -MT upsampling_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling.d -MT upsampling.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse41.d -MT alpha_processing_sse41.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse2.d -MT alpha_processing_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_mips_dsp_r2.d -MT alpha_processing_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing.d -MT alpha_processing.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_sse2.d -MT argb_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_mips_dsp_r2.d -MT argb_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb.d -MT argb.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse41.d -MT dec_sse41.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse2.d -MT dec_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_neon.d -MT dec_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_msa.d -MT dec_msa.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips_dsp_r2.d -MT dec_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips32.d -MT dec_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_clip_tables.d -MT dec_clip_tables.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec.d -MT dec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cpu.d -MT cpu.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_sse2.d -MT cost_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips_dsp_r2.d -MT cost_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips32.d -MT cost_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costdsp.d -MT costdsp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FScache.obj -c ../H5FScache.c +../H5FScache.c: In function ‘H5FS__cache_sinfo_deserialize’: +../H5FScache.c:1013:17: warning: variable ‘old_tot_space’ set but not used [-Wunused-but-set-variable] + 1013 | hsize_t old_tot_space; /* Total space managed from header */ + | ^~~~~~~~~~~~~ +../H5FScache.c:1012:17: warning: variable ‘old_ghost_sect_count’ set but not used [-Wunused-but-set-variable] + 1012 | hsize_t old_ghost_sect_count; /* Total ghost section count from header */ + | ^~~~~~~~~~~~~~~~~~~~ +../H5FScache.c:1011:17: warning: variable ‘old_serial_sect_count’ set but not used [-Wunused-but-set-variable] + 1011 | hsize_t old_serial_sect_count; /* Total serializable section count from header */ + | ^~~~~~~~~~~~~~~~~~~~~ +../H5FScache.c:1010:17: warning: variable ‘old_tot_sect_count’ set but not used [-Wunused-but-set-variable] + 1010 | hsize_t old_tot_sect_count; /* Total section count from header */ + | ^~~~~~~~~~~~~~~~~~ +../H5FScache.c: In function ‘H5FS__cache_sinfo_image_len’: +../H5FScache.c:1119:19: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] + 1119 | const H5FS_t *fspace; /* Free space header */ + | ^~~~~~ +../H5FScache.c: In function ‘H5FS__cache_sinfo_serialize’: +../H5FScache.c:1249:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] + 1249 | H5FS_t *fspace; /* Free space header */ + | ^~~~~~ +../H5FScache.c: In function ‘H5FS__cache_sinfo_free_icr’: +../H5FScache.c:1396:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] + 1396 | H5FS_t *fspace; /* Free space header */ + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse41.d -MT enc_sse41.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse2.d -MT enc_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_neon.d -MT enc_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips_dsp_r2.d -MT enc_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips32.d -MT enc_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_avx2.d -MT enc_avx2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc.d -MT enc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_sse2.d -MT filters_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_mips_dsp_r2.d -MT filters_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersdsp.d -MT filtersdsp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_sse2.d -MT lossless_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_neon.d -MT lossless_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_mips_dsp_r2.d -MT lossless_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse41.d -MT lossless_enc_sse41.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse2.d -MT lossless_enc_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_neon.d -MT lossless_enc_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips_dsp_r2.d -MT lossless_enc_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips32.d -MT lossless_enc_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc.d -MT lossless_enc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless.d -MT lossless.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_sse2.d -MT rescaler_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_neon.d -MT rescaler_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips_dsp_r2.d -MT rescaler_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips32.d -MT rescaler_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerdsp.d -MT rescalerdsp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF demux.d -MT demux.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_decode.d -MT anim_decode.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webp.d -MT webp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8ldec.d -MT vp8ldec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8.d -MT vp8.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treedec.d -MT treedec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantdec.d -MT quantdec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF io.d -MT io.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FSdbg.obj -c ../H5FSdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF idec.d -MT idec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF framedec.d -MT framedec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF buffer.d -MT buffer.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphadec.d -MT alphadec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FSint.obj -c ../H5FSint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alphadec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/rescaler.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././webpi.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./alphai.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o buffer.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o framedec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o idec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/rescaler.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././webpi.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./alphai.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c:18: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FSsection.obj -c ../H5FSsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o io.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/../enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/../enc/vp8li.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/vp8i.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o quantdec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FSstat.obj -c ../H5FSstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o treedec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FStest.obj -c ../H5FStest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o vp8.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/rescaler.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././webpi.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./alphai.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5G.obj -c ../H5G.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o vp8ldec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/rescaler.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././webpi.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./alphai.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o webp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gbtree2.obj -c ../H5Gbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o anim_decode.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/utils.h:24, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c:20: +../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o demux.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/utils.h:24, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c:21: +../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescalerdsp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescaler_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gcache.obj -c ../H5Gcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescaler_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescaler_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescaler_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gcompact.obj -c ../H5Gcompact.c +In file included from ../H5Gcompact.c:28: +../H5Gcompact.c: In function ‘H5G__compact_get_name_by_idx’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Gcompact.c:246:9: note: in expansion of macro ‘HDstrncpy’ + 246 | HDstrncpy(name, ltable.lnks[idx].name, MIN((size_t)(ret_value + 1), size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gcompact.c:242:26: note: in expansion of macro ‘HDstrlen’ + 242 | ret_value = (ssize_t)HDstrlen(ltable.lnks[idx].name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gdense.obj -c ../H5Gdense.c +In file included from ../H5Gdense.c:35: +../H5Gdense.c: In function ‘H5G__dense_get_name_by_idx’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Gdense.c:1278:13: note: in expansion of macro ‘HDstrncpy’ + 1278 | HDstrncpy(name, ltable.lnks[n].name, MIN((size_t)(ret_value + 1), size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gdense.c:1274:30: note: in expansion of macro ‘HDstrlen’ + 1274 | ret_value = (ssize_t)HDstrlen(ltable.lnks[n].name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_sse41.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filtersdsp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filters_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gdeprec.obj -c ../H5Gdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filters_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gent.obj -c ../H5Gent.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_avx2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c:12: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gint.obj -c ../H5Gint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_sse41.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o costdsp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c:12: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Glink.obj -c ../H5Glink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o cost_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c:12: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o cost_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c:12: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o cost_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o cpu.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gloc.obj -c ../H5Gloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_clip_tables.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_msa.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gname.obj -c ../H5Gname.c +In file included from ../H5Gname.c:35: +../H5Gname.c: In function ‘H5G_build_fullpath’: +../H5private.h:1358:31: warning: ‘strncat’ specified bound 1 equals source length [-Wstringop-overflow=] + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Gname.c:326:9: note: in expansion of macro ‘HDstrncat’ + 326 | HDstrncat(full_path, "/", (size_t)1); + | ^~~~~~~~~ +../H5Gname.c: In function ‘H5G_common_path.part.0’: +../H5Gname.c:253:23: warning: ‘nchars2’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 253 | prefix+=nchars2; + | ~~~~~~^~~~~~~~~ +In file included from ../H5Gname.c:35: +../H5private.h:1361:31: warning: ‘nchars1’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1361 | #define HDstrncmp(X,Y,Z) strncmp(X,Y,Z) + | ^~~~~~~ +../H5Gname.c:230:13: note: ‘nchars1’ was declared here + 230 | size_t nchars1,nchars2; /* Number of characters in components */ + | ^~~~~~~ +In file included from ../H5Gname.c:35: +In function ‘H5G_name_move_path’, + inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:1028:24, + inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: +../H5private.h:1358:31: warning: ‘strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Gname.c:771:13: note: in expansion of macro ‘HDstrncat’ + 771 | HDstrncat(new_path, full_suffix, full_suffix_len); + | ^~~~~~~~~ +../H5Gname.c: In function ‘H5G_name_replace_cb’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gname.c:717:23: note: in expansion of macro ‘HDstrlen’ + 717 | full_suffix_len = HDstrlen(full_suffix); + | ^~~~~~~~ +In function ‘H5G_name_replace_cb’, + inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: +../H5private.h:1358:31: warning: ‘strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Gname.c:1040:17: note: in expansion of macro ‘HDstrncat’ + 1040 | HDstrncat(new_full_path, full_suffix, full_suffix_len); + | ^~~~~~~~~ +../H5Gname.c: In function ‘H5G_name_replace_cb’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gname.c:1024:35: note: in expansion of macro ‘HDstrlen’ + 1024 | full_suffix_len = HDstrlen(full_suffix); + | ^~~~~~~~ +In function ‘H5G_build_fullpath’, + inlined from ‘H5G_build_fullpath_refstr_str’ at ../H5Gname.c:367:17: +../H5private.h:1358:31: warning: ‘strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Gname.c:327:5: note: in expansion of macro ‘HDstrncat’ + 327 | HDstrncat(full_path, name, name_len); + | ^~~~~~~~~ +../H5Gname.c: In function ‘H5G_build_fullpath_refstr_str’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gname.c:316:16: note: in expansion of macro ‘HDstrlen’ + 316 | name_len = HDstrlen(name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_sse41.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o argb.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o argb_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o argb_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gnode.obj -c ../H5Gnode.c +../H5Gnode.c: In function ‘H5G_node_remove’: +../H5Gnode.c:790:21: warning: unused variable ‘lt_key’ [-Wunused-variable] + 790 | H5G_node_key_t *lt_key = (H5G_node_key_t *)_lt_key; + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alpha_processing.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alpha_processing_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alpha_processing_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alpha_processing_sse41.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gobj.obj -c ../H5Gobj.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Goh.obj -c ../H5Goh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o upsampling.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o upsampling_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o upsampling_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Groot.obj -c ../H5Groot.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gstab.obj -c ../H5Gstab.c +In file included from ../H5Gstab.c:29: +../H5Gstab.c: In function ‘H5G__stab_get_name_by_idx’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Gstab.c:803:9: note: in expansion of macro ‘HDstrncpy’ + 803 | HDstrncpy(name, udata.name, MIN((size_t)(ret_value + 1), size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gstab.c:799:26: note: in expansion of macro ‘HDstrlen’ + 799 | ret_value = (ssize_t)HDstrlen(udata.name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gtest.obj -c ../H5Gtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o upsampling_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gtraverse.obj -c ../H5Gtraverse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o yuv.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./yuv.h:38, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o yuv_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o yuv_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HF.obj -c ../H5HF.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o yuv_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./yuv.h:38, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFbtree2.obj -c ../H5HFbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o vp8lenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c:18: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o treeenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o token.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./cost.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c:23: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o syntax.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../utils/../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../utils/utils.h:24, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFcache.obj -c ../H5HFcache.c +../H5HFcache.c: In function ‘H5HF__cache_hdr_serialize’: +../H5HFcache.c:774:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 774 | hdr->f = f; + | ^ +../H5HFcache.c: In function ‘H5HF__cache_iblock_serialize’: +../H5HFcache.c:1361:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1361 | hdr->f = f; + | ^ +../H5HFcache.c: In function ‘H5HF__cache_iblock_notify’: +../H5HFcache.c:1477:18: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] + 1477 | unsigned indir_idx; /* Index in parent's child iblock pointer array */ + | ^~~~~~~~~ +../H5HFcache.c:1476:26: warning: unused variable ‘par_iblock’ [-Wunused-variable] + 1476 | H5HF_indirect_t *par_iblock = iblock->parent; + | ^~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o near_lossless.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../dsp/lossless.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c:20: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFdbg.obj -c ../H5HFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFdblock.obj -c ../H5HFdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture_csp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c:18: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture_psnr.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture_rescale.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture_tools.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFdtable.obj -c ../H5HFdtable.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFhdr.obj -c ../H5HFhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o quantenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c:18: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFhuge.obj -c ../H5HFhuge.c +../H5HFhuge.c: In function ‘H5HF_huge_write’: +../H5HFhuge.c:890:8: warning: ‘obj_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 890 | if(H5F_block_write(hdr->f, H5FD_MEM_FHEAP_HUGE_OBJ, obj_addr, obj_size, H5AC_rawdata_dxpl_id, obj) < 0) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o iterator.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o histogram.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c:18: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFiblock.obj -c ../H5HFiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o frameenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./cost.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filter.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o config.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../webp/encode.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../webp/./types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../webp/./types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFiter.obj -c ../H5HFiter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o costenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./cost.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o delta_palettization.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/encode.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./delta_palettization.h:16, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c:13: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/./types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/./types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFman.obj -c ../H5HFman.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o backward_references.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alphaenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o analysis.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c:18: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o webpenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./cost.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c:19: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFsection.obj -c ../H5HFsection.c +../H5HFsection.c: In function ‘H5HF_sect_single_valid’: +../H5HFsection.c:1191:20: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] + 1191 | herr_t status; /* Generic status value */ + | ^~~~~~ +../H5HFsection.c:1189:20: warning: variable ‘dblock_overhead’ set but not used [-Wunused-but-set-variable] + 1189 | size_t dblock_overhead; /* Direct block's overhead */ + | ^~~~~~~~~~~~~~~ +../H5HFsection.c: In function ‘H5HF_sect_row_valid’: +../H5HFsection.c:2000:14: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] + 2000 | unsigned indir_idx; /* Index of row in underlying indirect section's row array */ + | ^~~~~~~~~ +../H5HFsection.c: In function ‘H5HF_sect_indirect_valid’: +../H5HFsection.c:4107:44: warning: variable ‘tmp_row_sect2’ set but not used [-Wunused-but-set-variable] + 4107 | const H5HF_free_section_t *tmp_row_sect2; /* Pointer to row section */ + | ^~~~~~~~~~~~~ +../H5HFsection.c:4099:40: warning: variable ‘tmp_row_sect’ set but not used [-Wunused-but-set-variable] + 4099 | const H5HF_free_section_t *tmp_row_sect; /* Pointer to row section */ + | ^~~~~~~~~~~~ +../H5HFsection.c:4134:44: warning: variable ‘tmp_child_sect2’ set but not used [-Wunused-but-set-variable] + 4134 | const H5HF_free_section_t *tmp_child_sect2; /* Pointer to child indirect section */ + | ^~~~~~~~~~~~~~~ +../H5HFsection.c: In function ‘H5HF_sect_single_full_dblock.part.0’: +../H5HFsection.c:774:21: warning: ‘dblock_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 774 | if((dblock_size - dblock_overhead) == sect->sect_info.size && + | ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~ +../H5HFsection.c:787:12: warning: ‘dblock_addr’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 787 | if(H5HF_man_dblock_destroy(hdr, dxpl_id, dblock, dblock_addr) < 0) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5HFsection.c: In function ‘H5HF_sect_single_valid’: +../H5HFsection.c:1223:26: warning: ‘dblock_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1223 | dblock = H5HF_man_dblock_protect(iblock->hdr, dxpl_id, dblock_addr, dblock_size, iblock, sect->u.single.par_entry, H5AC__READ_ONLY_FLAG); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5HFsection.c:1223:26: warning: ‘dblock_addr’ may be used uninitialized in this function [-Wmaybe-uninitialized] +../H5HFsection.c: In function ‘H5HF_sect_single_shrink’: +../H5HFsection.c:1095:26: warning: ‘dblock_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1095 | if(NULL == (dblock = H5HF_man_dblock_protect(hdr, dxpl_id, dblock_addr, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 1096 | dblock_size, (*sect)->u.single.parent, (*sect)->u.single.par_entry, H5AC__NO_FLAGS_SET))) + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5HFsection.c:1101:8: warning: ‘dblock_addr’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1101 | if(H5HF_man_dblock_destroy(hdr, dxpl_id, dblock, dblock_addr) < 0) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o anim_encode.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/../utils/../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/../utils/utils.h:24, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c:19: +../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/../utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/../utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFspace.obj -c ../H5HFspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o muxedit.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/vp8li.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/vp8i.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./muxi.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o muxinternal.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/vp8li.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/vp8i.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./muxi.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFstat.obj -c ../H5HFstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o muxread.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/vp8li.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/vp8i.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./muxi.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o bit_reader.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./bit_reader_inl.h:27, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c:18: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o bit_writer.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./bit_writer.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c:19: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o color_cache.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./color_cache.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFtest.obj -c ../H5HFtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filtersutils.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./filters.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o huffman.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./huffman.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o huffman_encode.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./huffman_encode.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o quant_levels.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./quant_levels.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFtiny.obj -c ../H5HFtiny.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o quant_levels_dec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./quant_levels_dec.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o random.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./random.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescalerutils.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o thread.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./thread.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o utils.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../webp/decode.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../webp/./types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../webp/./types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o webp.dll -shared -Wl,--out-implib,libwebp.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ alphadec.obj buffer.obj framedec.obj idec.obj io.obj quantdec.obj treedec.obj vp8.obj vp8ldec.obj webp.obj anim_decode.obj demux.obj rescalerdsp.obj rescaler_mips32.obj rescaler_mips_dsp_r2.obj rescaler_neon.obj rescaler_sse2.obj lossless.obj lossless_enc.obj lossless_enc_mips32.obj lossless_enc_mips_dsp_r2.obj lossless_enc_neon.obj lossless_enc_sse2.obj lossless_enc_sse41.obj lossless_mips_dsp_r2.obj lossless_neon.obj lossless_sse2.obj filtersdsp.obj filters_mips_dsp_r2.obj filters_sse2.obj enc.obj enc_avx2.obj enc_mips32.obj enc_mips_dsp_r2.obj enc_neon.obj enc_sse2.obj enc_sse41.obj costdsp.obj cost_mips32.obj cost_mips_dsp_r2.obj cost_sse2.obj cpu.obj dec.obj dec_clip_tables.obj dec_mips32.obj dec_mips_dsp_r2.obj dec_msa.obj dec_neon.obj dec_sse2.obj dec_sse41.obj argb.obj argb_mips_dsp_r2.obj argb_sse2.obj alpha_processing.obj alpha_processing_mips_dsp_r2.obj alpha_processing_sse2.obj alpha_processing_sse41.obj upsampling.obj upsampling_mips_dsp_r2.obj upsampling_neon.obj upsampling_sse2.obj yuv.obj yuv_mips32.obj yuv_mips_dsp_r2.obj yuv_sse2.obj vp8lenc.obj treeenc.obj token.obj syntax.obj near_lossless.obj picture.obj picture_csp.obj picture_psnr.obj picture_rescale.obj picture_tools.obj quantenc.obj iterator.obj histogram.obj frameenc.obj filter.obj config.obj costenc.obj delta_palettization.obj backward_references.obj alphaenc.obj analysis.obj webpenc.obj anim_encode.obj muxedit.obj muxinternal.obj muxread.obj bit_reader.obj bit_writer.obj color_cache.obj filtersutils.obj huffman.obj huffman_encode.obj quant_levels.obj quant_levels_dec.obj random.obj rescalerutils.obj thread.obj utils.obj -lws2_32 +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make -C ./png install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' +mkdir -p O.Common +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngread.d ../pngread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwutil.d ../pngwutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwtran.d ../pngwtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwrite.d ../pngwrite.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwio.d ../pngwio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngtrans.d ../pngtrans.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngset.d ../pngset.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HG.obj -c ../H5HG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrutil.d ../pngrutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrtran.d ../pngrtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrio.d ../pngrio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngpread.d ../pngpread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngmem.d ../pngmem.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngget.d ../pngget.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngerror.d ../pngerror.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF png.d ../png.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HGcache.obj -c ../H5HGcache.c +../H5HGcache.c: In function ‘H5HG__cache_heap_get_final_load_size’: +../H5HGcache.c:225:17: warning: ‘*((void *)&heap+312)’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 225 | *actual_len = heap.size; + | ~~~~~~~~~~~~^~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HGdbg.obj -c ../H5HGdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../png.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngerror.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HGquery.obj -c ../H5HGquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngget.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngmem.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HL.obj -c ../H5HL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngpread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngrio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLcache.obj -c ../H5HLcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLdbg.obj -c ../H5HLdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLint.obj -c ../H5HLint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngrtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLprfx.obj -c ../H5HLprfx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLdblk.obj -c ../H5HLdblk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngrutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HP.obj -c ../H5HP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngset.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngtrans.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5I.obj -c ../H5I.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwrite.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Itest.obj -c ../H5Itest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5L.obj -c ../H5L.c +../H5L.c: In function ‘H5L_move_cb’: +../H5L.c:2639:41: warning: passing argument 1 of ‘H5RS_wrap’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 2639 | dst_name_r = H5RS_wrap(udata->dst_name); + | ~~~~~^~~~~~~~~~ +In file included from ../H5Gprivate.h:35, + from ../H5Tprivate.h:28, + from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5L.c:26: +../H5RSprivate.h:47:20: note: expected ‘char *’ but argument is of type ‘const char *’ + 47 | H5_DLL H5RS_str_t *H5RS_wrap(char *s); + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Lexternal.obj -c ../H5Lexternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +/usr/bin/ar -rc libpng.a png.o pngerror.o pngget.o pngmem.o pngpread.o pngrio.o pngrtran.o pngrutil.o pngset.o pngtrans.o pngwio.o pngwrite.o pngwtran.o pngwutil.o pngread.o +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +/usr/bin/ranlib libpng.a +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +g++ -o libpng.so -shared -fPIC -Wl,-hlibpng.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 png.o pngerror.o pngget.o pngmem.o pngpread.o pngrio.o pngrtran.o pngrutil.o pngset.o pngtrans.o pngwio.o pngwrite.o pngwtran.o pngwutil.o pngread.o -lbzlib -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ + T_A=windows-x64-mingw install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngread.d -MT pngread.obj ../pngread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwutil.d -MT pngwutil.obj ../pngwutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MF.obj -c ../H5MF.c +../H5MF.c: In function ‘H5MF_settle_meta_data_fsm’: +../H5MF.c:3249:17: warning: unused variable ‘fs_stat’ [-Wunused-variable] + 3249 | H5FS_stat_t fs_stat; /* Information for hdr FSM */ + | ^~~~~~~ +../H5MF.c: In function ‘H5MF__fsm_type_is_self_referential.part.0’: +../H5MF.c:3548:17: warning: ‘lg_fshdr_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3547 | result = (fsm_type == sm_fshdr_fsm) || (fsm_type == sm_fssinfo_fsm) + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 3548 | || (fsm_type == lg_fshdr_fsm) || (fsm_type == lg_fssinfo_fsm); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5MF.c:3548:47: warning: ‘lg_fssinfo_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3547 | result = (fsm_type == sm_fshdr_fsm) || (fsm_type == sm_fssinfo_fsm) + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 3548 | || (fsm_type == lg_fshdr_fsm) || (fsm_type == lg_fssinfo_fsm); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5MF.c:3547:45: warning: ‘sm_fssinfo_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3547 | result = (fsm_type == sm_fshdr_fsm) || (fsm_type == sm_fssinfo_fsm) + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5MF.c:3548:47: warning: ‘sm_fshdr_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3547 | result = (fsm_type == sm_fshdr_fsm) || (fsm_type == sm_fssinfo_fsm) + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 3548 | || (fsm_type == lg_fshdr_fsm) || (fsm_type == lg_fssinfo_fsm); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5MF.c: In function ‘H5MF__fsm_is_self_referential.part.0’: +../H5MF.c:3606:48: warning: ‘lg_fshdr_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3606 | (fspace == f->shared->fs_man[lg_fshdr_fsm]) || + | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ +../H5MF.c:3607:48: warning: ‘lg_fssinfo_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3607 | (fspace == f->shared->fs_man[lg_fssinfo_fsm]); + | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ +../H5MF.c:3605:48: warning: ‘sm_fssinfo_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3605 | (fspace == f->shared->fs_man[sm_fssinfo_fsm]) || + | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ +../H5MF.c:3604:46: warning: ‘sm_fshdr_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3604 | result = (fspace == f->shared->fs_man[sm_fshdr_fsm]) || + | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ +../H5MF.c: In function ‘H5MF_settle_meta_data_fsm’: +../H5MF.c:3240:20: warning: ‘lg_fssinfo_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3240 | H5F_mem_page_t lg_fssinfo_fs_type; /* large fs sinfo fsm */ + | ^~~~~~~~~~~~~~~~~~ +../H5MF.c:3239:20: warning: ‘lg_fshdr_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3239 | H5F_mem_page_t lg_fshdr_fs_type; /* large fs hdr fsm */ + | ^~~~~~~~~~~~~~~~ +../H5MF.c:3286:25: warning: ‘sm_fssinfo_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3286 | sm_sinfo_fspace = f->shared->fs_man[sm_fssinfo_fs_type]; + | ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5MF.c: In function ‘H5MF_tidy_self_referential_fsm_hack’: +../H5MF.c:3873:16: warning: ‘lg_fssinfo_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3873 | if(H5FS_free(f, f->shared->fs_man[lg_fssinfo_fs_type], dxpl_id, FALSE) < 0) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5MF.c:3854:29: warning: ‘lg_fshdr_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3854 | if(f->shared->fs_man[lg_fshdr_fs_type]) { + | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~ +../H5MF.c:3829:25: warning: ‘sm_fshdr_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3829 | if(f->shared->fs_man[sm_fshdr_fs_type]) { + | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~ +../H5MF.c:3848:12: warning: ‘sm_fssinfo_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3848 | if(H5FS_free(f, f->shared->fs_man[sm_fssinfo_fs_type], dxpl_id, FALSE) < 0) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwtran.d -MT pngwtran.obj ../pngwtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwrite.d -MT pngwrite.obj ../pngwrite.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MFaggr.obj -c ../H5MFaggr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwio.d -MT pngwio.obj ../pngwio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MFdbg.obj -c ../H5MFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngtrans.d -MT pngtrans.obj ../pngtrans.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngset.d -MT pngset.obj ../pngset.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MFsection.obj -c ../H5MFsection.c +../H5MFsection.c: In function ‘H5MF_sect_split’: +../H5MFsection.c:376:22: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 376 | FUNC_LEAVE_NOAPI((H5FS_section_info_t *)ret_value) + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrutil.d -MT pngrutil.obj ../pngrutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MM.obj -c ../H5MM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrtran.d -MT pngrtran.obj ../pngrtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrio.d -MT pngrio.obj ../pngrio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MP.obj -c ../H5MP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngpread.d -MT pngpread.obj ../pngpread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MPtest.obj -c ../H5MPtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngmem.d -MT pngmem.obj ../pngmem.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngget.d -MT pngget.obj ../pngget.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngerror.d -MT pngerror.obj ../pngerror.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5O.obj -c ../H5O.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF png.d -MT png.obj ../png.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oainfo.obj -c ../H5Oainfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oalloc.obj -c ../H5Oalloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o png.obj -c ../png.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oattr.obj -c ../H5Oattr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngerror.obj -c ../pngerror.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oattribute.obj -c ../H5Oattribute.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngget.obj -c ../pngget.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Obogus.obj -c ../H5Obogus.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Obtreek.obj -c ../H5Obtreek.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngmem.obj -c ../pngmem.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ocache.obj -c ../H5Ocache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ocache_image.obj -c ../H5Ocache_image.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngpread.obj -c ../pngpread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ochunk.obj -c ../H5Ochunk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngrio.obj -c ../pngrio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ocont.obj -c ../H5Ocont.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ocopy.obj -c ../H5Ocopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Odbg.obj -c ../H5Odbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngrtran.obj -c ../pngrtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Odrvinfo.obj -c ../H5Odrvinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Odtype.obj -c ../H5Odtype.c +../H5Odtype.c: In function ‘H5O_dtype_copy’: +../H5Odtype.c:1192:32: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1192 | if(NULL == (dst = H5T_copy(src, H5T_COPY_ALL))) + | ^~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Odtype.c:19: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Odtype.c: In function ‘H5O_dtype_pre_copy_file’: +../H5Odtype.c:1541:49: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1541 | if(NULL == (udata->src_dtype = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) + | ^~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Odtype.c:19: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oefl.obj -c ../H5Oefl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngrutil.obj -c ../pngrutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ofill.obj -c ../H5Ofill.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngset.obj -c ../pngset.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oflush.obj -c ../H5Oflush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ofsinfo.obj -c ../H5Ofsinfo.c +../H5Ofsinfo.c: In function ‘H5O_fsinfo_decode’: +../H5Ofsinfo.c:132:35: warning: ‘threshold’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 132 | fsinfo->threshold = threshold; + | ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngtrans.obj -c ../pngtrans.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oginfo.obj -c ../H5Oginfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngwio.obj -c ../pngwio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Olayout.obj -c ../H5Olayout.c +../H5Olayout.c: In function ‘H5O__layout_decode’: +../H5Olayout.c:412:90: warning: ‘tmp_hsize’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 412 | if(NULL == (mesg->storage.u.virt.list = (H5O_storage_virtual_ent_t *)H5MM_calloc((size_t)tmp_hsize * sizeof(H5O_storage_virtual_ent_t)))) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Olinfo.obj -c ../H5Olinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngwrite.obj -c ../pngwrite.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Olink.obj -c ../H5Olink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngwtran.obj -c ../pngwtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Omessage.obj -c ../H5Omessage.c +../H5Omessage.c: In function ‘H5O_msg_reset_share’: +../H5Omessage.c:1691:28: warning: variable ‘type’ set but not used [-Wunused-but-set-variable] + 1691 | const H5O_msg_class_t *type; /* Actual H5O class type for the ID */ + | ^~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Omtime.obj -c ../H5Omtime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oname.obj -c ../H5Oname.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Onull.obj -c ../H5Onull.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngwutil.obj -c ../pngwutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Opline.obj -c ../H5Opline.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Orefcount.obj -c ../H5Orefcount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Osdspace.obj -c ../H5Osdspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngread.obj -c ../pngread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-windres -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include ../png.rc png.coff +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o png.dll -shared -Wl,--out-implib,libpng.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ png.obj pngerror.obj pngget.obj pngmem.obj pngpread.obj pngrio.obj pngrtran.obj pngrutil.obj pngset.obj pngtrans.obj pngwio.obj pngwrite.obj pngwtran.obj pngwutil.obj pngread.obj png.coff -lbzlib -lzlib -lws2_32 +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make -C ./jp2 install +make -C ./src install +make -C ./libjasper install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../../.. +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../../.. +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' +mkdir -p O.Common +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../../.. \ + T_A=linux-x86_64 install +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_util.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tsfb.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tagtree.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2cod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oshared.obj -c ../H5Oshared.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1cod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_qmfb.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqenc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqdec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqcod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mct.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_math.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_cs.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_bs.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_cod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_version.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tvp.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tmr.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_string.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_stream.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_seq.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_malloc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oshmesg.obj -c ../H5Oshmesg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_init.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_image.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_iccdata.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_icc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_getopt.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_debug.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_cm.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ostab.obj -c ../H5Ostab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Otest.obj -c ../H5Otest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ounknown.obj -c ../H5Ounknown.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5P.obj -c ../H5P.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_iccattrtab_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:730:49: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘jas_iccsig_t’ {aka ‘long unsigned int’} [-Wformat=] + 730 | fprintf(out, "attrno=%d; attrname=\"%s\"(0x%08x); attrtype=\"%s\"(0x%08x)\n", + | ~~~^ + | | + | unsigned int + | %08lx +...... + 733 | attr->name, + | ~~~~~~~~~~ + | | + | jas_iccsig_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:730:74: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 7 has type ‘jas_iccsig_t’ {aka ‘long unsigned int’} [-Wformat=] + 730 | fprintf(out, "attrno=%d; attrname=\"%s\"(0x%08x); attrtype=\"%s\"(0x%08x)\n", + | ~~~^ + | | + | unsigned int + | %08lx +...... + 735 | attrval->type + | ~~~~~~~~~~~~~ + | | + | jas_iccsig_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_iccattrval_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:886:41: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘jas_iccsig_t’ {aka ‘long unsigned int’} [-Wformat=] + 886 | fprintf(out, "refcnt = %d; type = 0x%08x %s\n", attrval->refcnt, + | ~~~^ + | | + | unsigned int + | %08lx + 887 | attrval->type, jas_iccsigtostr(attrval->type, &buf[0])); + | ~~~~~~~~~~~~~ + | | + | jas_iccsig_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icccurv_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1044:37: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint32_t’ {aka ‘long unsigned int’} [-Wformat=] + 1044 | fprintf(out, "number of entires = %d\n", curv->numents); + | ~^ ~~~~~~~~~~~~~ + | | | + | int jas_iccuint32_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icctxtdesc_copy’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1072:20: warning: variable ‘txtdesc’ set but not used [-Wunused-but-set-variable] + 1072 | jas_icctxtdesc_t *txtdesc = &attrval->data.txtdesc; + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icctxtdesc_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1170:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint32_t’ {aka ‘long unsigned int’} [-Wformat=] + 1170 | fprintf(out, "uclangcode = %d; uclen = %d\n", txtdesc->uclangcode, + | ~^ ~~~~~~~~~~~~~~~~~~~ + | | | + | int jas_iccuint32_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1170:42: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘jas_iccuint32_t’ {aka ‘long unsigned int’} [-Wformat=] + 1170 | fprintf(out, "uclangcode = %d; uclen = %d\n", txtdesc->uclangcode, + | ~^ + | | + | int + | %ld + 1171 | txtdesc->uclen); + | ~~~~~~~~~~~~~~ + | | + | jas_iccuint32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1172:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1172 | fprintf(out, "sccode = %d\n", txtdesc->sccode); + | ~^ ~~~~~~~~~~~~~~~ + | | | + | int jas_iccuint16_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut8_copy’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1259:17: warning: variable ‘lut8’ set but not used [-Wunused-but-set-variable] + 1259 | jas_icclut8_t *lut8 = &attrval->data.lut8; + | ^~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut8_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1403:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1403 | fprintf(out, "numintabents=%d, numouttabents=%d\n", + | ~^ + | | + | int + | %ld + 1404 | lut8->numintabents, lut8->numouttabents); + | ~~~~~~~~~~~~~~~~~~ + | | + | jas_iccuint16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1403:48: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1403 | fprintf(out, "numintabents=%d, numouttabents=%d\n", + | ~^ + | | + | int + | %ld + 1404 | lut8->numintabents, lut8->numouttabents); + | ~~~~~~~~~~~~~~~~~~~ + | | + | jas_iccuint16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut16_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1567:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1567 | fprintf(out, "numintabents=%d, numouttabents=%d\n", + | ~^ + | | + | int + | %ld + 1568 | lut16->numintabents, lut16->numouttabents); + | ~~~~~~~~~~~~~~~~~~~ + | | + | jas_iccuint16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1567:48: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1567 | fprintf(out, "numintabents=%d, numouttabents=%d\n", + | ~^ + | | + | int + | %ld + 1568 | lut16->numintabents, lut16->numouttabents); + | ~~~~~~~~~~~~~~~~~~~~ + | | + | jas_iccuint16_t {aka long unsigned int} +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pacpl.obj -c ../H5Pacpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c: In function ‘jas_image_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:824:45: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘jas_image_cmpttype_t’ {aka ‘long int’} [-Wformat=] + 824 | fprintf(out, "prec=%d, sgnd=%d, cmpttype=%d\n", cmpt->prec_, + | ~^ + | | + | int + | %ld + 825 | cmpt->sgnd_, cmpt->type_); + | ~~~~~~~~~~~ + | | + | jas_image_cmpttype_t {aka long int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c: In function ‘jas_image_chclrspc’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1289:6: warning: variable ‘numoutchans’ set but not used [-Wunused-but-set-variable] + 1289 | int numoutchans; + | ^~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1282:6: warning: variable ‘numinauxchans’ set but not used [-Wunused-but-set-variable] + 1282 | int numinauxchans; + | ^~~~~~~~~~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pdapl.obj -c ../H5Pdapl.c +In file included from ../H5Pdapl.c:35: +../H5Pdapl.c: In function ‘H5Pget_efile_prefix’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Pdapl.c:1280:13: note: in expansion of macro ‘HDstrncpy’ + 1280 | HDstrncpy(prefix, my_prefix, MIN(len + 1, size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Pdapl.c:1278:15: note: in expansion of macro ‘HDstrlen’ + 1278 | len = HDstrlen(my_prefix); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c: In function ‘jas_seq2d_output’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:426:17: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 426 | fprintf(out, "%d %d\n", jas_seq2d_xstart(matrix), + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:426:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 426 | fprintf(out, "%d %d\n", jas_seq2d_xstart(matrix), + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:428:17: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 428 | fprintf(out, "%d %d\n", jas_matrix_numcols(matrix), + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:428:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 428 | fprintf(out, "%d %d\n", jas_matrix_numcols(matrix), + | ~^ + | | + | int + | %ld +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c: In function ‘jas_stream_tmpfile’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c:368:2: warning: ignoring return value of ‘tmpnam’, declared with attribute warn_unused_result [-Wunused-result] + 368 | tmpnam(obj->pathname); + | ^~~~~~~~~~~~~~~~~~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c: In function ‘jp2_box_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:323:34: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 323 | fprintf(out, "type=%c%s%c (0x%08x); length=%d\n", '"', boxinfo->name, + | ~~~^ + | | + | unsigned int + | %08lx + 324 | '"', box->type, box->len); + | ~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:323:46: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 323 | fprintf(out, "type=%c%s%c (0x%08x); length=%d\n", '"', boxinfo->name, + | ~^ + | | + | int + | %ld + 324 | '"', box->type, box->len); + | ~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c: In function ‘jp2_cdef_dumpdata’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:435:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 435 | fprintf(out, "channo=%d; type=%d; assoc=%d\n", + | ~^ + | | + | int + | %ld + 436 | cdef->ents[i].channo, cdef->ents[i].type, cdef->ents[i].assoc); + | ~~~~~~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:435:34: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 435 | fprintf(out, "channo=%d; type=%d; assoc=%d\n", + | ~^ + | | + | int + | %ld + 436 | cdef->ents[i].channo, cdef->ents[i].type, cdef->ents[i].assoc); + | ~~~~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:435:44: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 435 | fprintf(out, "channo=%d; type=%d; assoc=%d\n", + | ~^ + | | + | int + | %ld + 436 | cdef->ents[i].channo, cdef->ents[i].type, cdef->ents[i].assoc); + | ~~~~~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c: In function ‘jp2_pclr_dumpdata’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:874:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 874 | fprintf(out, "LUT[%d][%d]=%d\n", i, j, pclr->lutdata[i * pclr->numchans + j]); + | ~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + | | | + | int int_fast32_t {aka long int} + | %ld +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c: In function ‘jp2_decode’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c:107:14: warning: variable ‘cdefd’ set but not used [-Wunused-but-set-variable] + 107 | jp2_cdef_t *cdefd; + | ^~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pdcpl.obj -c ../H5Pdcpl.c +../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] + 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:84:36: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ + 84 | #define H5D_CRT_LAYOUT_DEF H5D_DEF_LAYOUT_CONTIG + | ^~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:209:46: note: in expansion of macro ‘H5D_CRT_LAYOUT_DEF’ + 209 | static const H5O_layout_t H5D_def_layout_g = H5D_CRT_LAYOUT_DEF; /* Default storage layout */ + | ^~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] + 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:84:36: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ + 84 | #define H5D_CRT_LAYOUT_DEF H5D_DEF_LAYOUT_CONTIG + | ^~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:209:46: note: in expansion of macro ‘H5D_CRT_LAYOUT_DEF’ + 209 | static const H5O_layout_t H5D_def_layout_g = H5D_CRT_LAYOUT_DEF; /* Default storage layout */ + | ^~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] + 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:84:36: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ + 84 | #define H5D_CRT_LAYOUT_DEF H5D_DEF_LAYOUT_CONTIG + | ^~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:209:46: note: in expansion of macro ‘H5D_CRT_LAYOUT_DEF’ + 209 | static const H5O_layout_t H5D_def_layout_g = H5D_CRT_LAYOUT_DEF; /* Default storage layout */ + | ^~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:75:33: warning: missing braces around initializer [-Wmissing-braces] + 75 | #define H5D_DEF_LAYOUT_COMPACT {H5D_COMPACT, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:221:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_COMPACT’ + 221 | static H5O_layout_t H5D_def_layout_compact_g = H5D_DEF_LAYOUT_COMPACT; + | ^~~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:75:33: warning: missing braces around initializer [-Wmissing-braces] + 75 | #define H5D_DEF_LAYOUT_COMPACT {H5D_COMPACT, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:221:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_COMPACT’ + 221 | static H5O_layout_t H5D_def_layout_compact_g = H5D_DEF_LAYOUT_COMPACT; + | ^~~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:75:33: warning: missing braces around initializer [-Wmissing-braces] + 75 | #define H5D_DEF_LAYOUT_COMPACT {H5D_COMPACT, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:221:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_COMPACT’ + 221 | static H5O_layout_t H5D_def_layout_compact_g = H5D_DEF_LAYOUT_COMPACT; + | ^~~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] + 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:222:47: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ + 222 | static H5O_layout_t H5D_def_layout_contig_g = H5D_DEF_LAYOUT_CONTIG; + | ^~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] + 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:222:47: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ + 222 | static H5O_layout_t H5D_def_layout_contig_g = H5D_DEF_LAYOUT_CONTIG; + | ^~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] + 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:222:47: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ + 222 | static H5O_layout_t H5D_def_layout_contig_g = H5D_DEF_LAYOUT_CONTIG; + | ^~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:77:33: warning: missing braces around initializer [-Wmissing-braces] + 77 | #define H5D_DEF_LAYOUT_CHUNK {H5D_CHUNKED, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:223:46: note: in expansion of macro ‘H5D_DEF_LAYOUT_CHUNK’ + 223 | static H5O_layout_t H5D_def_layout_chunk_g = H5D_DEF_LAYOUT_CHUNK; + | ^~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:77:33: warning: missing braces around initializer [-Wmissing-braces] + 77 | #define H5D_DEF_LAYOUT_CHUNK {H5D_CHUNKED, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:223:46: note: in expansion of macro ‘H5D_DEF_LAYOUT_CHUNK’ + 223 | static H5O_layout_t H5D_def_layout_chunk_g = H5D_DEF_LAYOUT_CHUNK; + | ^~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:77:33: warning: missing braces around initializer [-Wmissing-braces] + 77 | #define H5D_DEF_LAYOUT_CHUNK {H5D_CHUNKED, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:223:46: note: in expansion of macro ‘H5D_DEF_LAYOUT_CHUNK’ + 223 | static H5O_layout_t H5D_def_layout_chunk_g = H5D_DEF_LAYOUT_CHUNK; + | ^~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:78:33: warning: missing braces around initializer [-Wmissing-braces] + 78 | #define H5D_DEF_LAYOUT_VIRTUAL {H5D_VIRTUAL, H5O_LAYOUT_VERSION_4, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:224:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_VIRTUAL’ + 224 | static H5O_layout_t H5D_def_layout_virtual_g = H5D_DEF_LAYOUT_VIRTUAL; + | ^~~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:78:33: warning: missing braces around initializer [-Wmissing-braces] + 78 | #define H5D_DEF_LAYOUT_VIRTUAL {H5D_VIRTUAL, H5O_LAYOUT_VERSION_4, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:224:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_VIRTUAL’ + 224 | static H5O_layout_t H5D_def_layout_virtual_g = H5D_DEF_LAYOUT_VIRTUAL; + | ^~~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:78:33: warning: missing braces around initializer [-Wmissing-braces] + 78 | #define H5D_DEF_LAYOUT_VIRTUAL {H5D_VIRTUAL, H5O_LAYOUT_VERSION_4, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:224:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_VIRTUAL’ + 224 | static H5O_layout_t H5D_def_layout_virtual_g = H5D_DEF_LAYOUT_VIRTUAL; + | ^~~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c: In function ‘H5P_get_fill_value’: +../H5Pdcpl.c:3329:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 3329 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(type, H5T_COPY_TRANSIENT), FALSE)) < 0) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Pdcpl.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_ms_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:407:28: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 407 | fprintf(out, "type = 0x%04x (%s);", ms->id, mstabent->name); + | ~~~^ ~~~~~~ + | | | + | | uint_fast16_t {aka long unsigned int} + | unsigned int + | %04lx +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:409:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 409 | fprintf(out, " len = %d;", ms->len + 2); + | ~^ ~~~~~~~~~~~ + | | | + | int uint_fast16_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_sot_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:462:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 462 | fprintf(out, "tileno = %d; len = %d; partno = %d; numparts = %d\n", + | ~^ + | | + | int + | %ld + 463 | sot->tileno, sot->len, sot->partno, sot->numparts); + | ~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:462:36: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 462 | fprintf(out, "tileno = %d; len = %d; partno = %d; numparts = %d\n", + | ~^ + | | + | int + | %ld + 463 | sot->tileno, sot->len, sot->partno, sot->numparts); + | ~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_siz_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:562:28: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 562 | fprintf(out, "caps = 0x%02x;\n", siz->caps); + | ~~~^ ~~~~~~~~~ + | | | + | | uint_fast16_t {aka long unsigned int} + | unsigned int + | %02lx +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", + | ~^ + | | + | int + | %ld + 564 | siz->width, siz->height, siz->xoff, siz->yoff); + | ~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", + | ~^ + | | + | int + | %ld + 564 | siz->width, siz->height, siz->xoff, siz->yoff); + | ~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:49: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", + | ~^ + | | + | int + | %ld + 564 | siz->width, siz->height, siz->xoff, siz->yoff); + | ~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:60: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", + | ~^ + | | + | int + | %ld + 564 | siz->width, siz->height, siz->xoff, siz->yoff); + | ~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " + | ~^ + | | + | int + | %ld + 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, + | ~~~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:46: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " + | ~^ + | | + | int + | %ld + 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, + | ~~~~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:61: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " + | ~^ + | | + | int + | %ld + 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, + | ~~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:15: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, + 567 | siz->tileyoff); + | ~~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:566:17: note: format string is defined here + 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_cod_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:634:37: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 634 | fprintf(out, "prg = %d; numlyrs = %d;\n", + | ~^ + | | + | int + | %ld + 635 | cod->prg, cod->numlyrs); + | ~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_coc_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:712:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 712 | fprintf(out, "compno = %d; csty = 0x%02x; numdlvls = %d;\n", + | ~^ + | | + | int + | %ld + 713 | coc->compno, coc->compparms.csty, coc->compparms.numdlvls); + | ~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_rgn_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:843:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 843 | fprintf(out, "compno = %d; roisty = %d; roishift = %d\n", + | ~^ + | | + | int + | %ld + 844 | rgn->compno, rgn->roisty, rgn->roishift); + | ~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_qcc_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:936:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 936 | fprintf(out, "compno = %d; qntsty = %d; numguard = %d; " + | ~^ + | | + | int + | %ld + 937 | "numstepsizes = %d\n", qcc->compno, qcc->compparms.qntsty, qcc->compparms.numguard, + | ~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_sop_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1060:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1060 | fprintf(out, "seqno = %d;\n", sop->seqno); + | ~^ ~~~~~~~~~~ + | | | + | int uint_fast16_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_ppm_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1126:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1126 | fprintf(out, "ind=%d; len = %d;\n", ppm->ind, ppm->len); + | ~^ ~~~~~~~~ + | | | + | int uint_fast16_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_ppt_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1198:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 1198 | fprintf(out, "ind=%d; len = %d;\n", ppt->ind, ppt->len); + | ~^ ~~~~~~~~ + | | | + | int uint_fast32_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_poc_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1304:27: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1304 | fprintf(out, "cs[%d] = %d; ce[%d] = %d; ", + | ~^ + | | + | int + | %ld + 1305 | pchgno, pchg->compnostart, pchgno, pchg->compnoend); + | ~~~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1304:40: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1304 | fprintf(out, "cs[%d] = %d; ce[%d] = %d; ", + | ~^ + | | + | int + | %ld + 1305 | pchgno, pchg->compnostart, pchgno, pchg->compnoend); + | ~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1308:27: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1308 | fprintf(out, "le[%d] = %d\n", pchgno, pchg->lyrnoend); + | ~^ ~~~~~~~~~~~~~~ + | | | + | int uint_fast16_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_crg_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1371:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1371 | fprintf(out, "hoff[%d] = %d; voff[%d] = %d\n", compno, + | ~^ + | | + | int + | %ld + 1372 | comp->hoff, compno, comp->voff); + | ~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1371:44: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1371 | fprintf(out, "hoff[%d] = %d; voff[%d] = %d\n", compno, + | ~^ + | | + | int + | %ld + 1372 | comp->hoff, compno, comp->voff); + | ~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_com_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1434:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1434 | fprintf(out, "regid = %d;\n", com->regid); + | ~^ ~~~~~~~~~~ + | | | + | int uint_fast16_t {aka long unsigned int} + | %ld +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pdeprec.obj -c ../H5Pdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_process_crg’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:414:13: warning: variable ‘crg’ set but not used [-Wunused-but-set-variable] + 414 | jpc_crg_t *crg; + | ^~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_tileinit’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:659:16: warning: variable ‘brcbgyend’ set but not used [-Wunused-but-set-variable] + 659 | uint_fast32_t brcbgyend; + | ^~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - + | ~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - + | ~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - + | ~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - + | ~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - + | ~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} + 2007 | rlvl->xstart, rlvl->yend - rlvl->ystart); + | ~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - + 2007 | rlvl->xstart, rlvl->yend - rlvl->ystart); + | ~~~~~~~~~~~~~~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - + | ~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - + | ~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - + | ~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - + | ~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - + | ~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} + 2021 | prc->xstart, prc->yend - prc->ystart); + | ~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - + 2021 | prc->xstart, prc->yend - prc->ystart); + | ~~~~~~~~~~~~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pdxpl.obj -c ../H5Pdxpl.c +In file included from ../H5Pdxpl.c:35: +../H5Pdxpl.c: In function ‘H5Pget_data_transform’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Pdxpl.c:1129:2: note: in expansion of macro ‘HDstrncpy’ + 1129 | HDstrncpy(expression, pexp, MIN(len + 1, size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Pdxpl.c:1127:11: note: in expansion of macro ‘HDstrlen’ + 1127 | len = HDstrlen(pexp); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pencdec.obj -c ../H5Pencdec.c +In file included from ../H5Pencdec.c:29: +In function ‘H5P__encode_cb’, + inlined from ‘H5P__encode_cb’ at ../H5Pencdec.c:332:1: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Pencdec.c:351:13: note: in expansion of macro ‘HDstrncpy’ + 351 | HDstrncpy((char *)*(udata->pp), prop->name, prop_name_len); + | ^~~~~~~~~ +../H5Pencdec.c: In function ‘H5P__encode_cb’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Pencdec.c:349:25: note: in expansion of macro ‘HDstrlen’ + 349 | prop_name_len = HDstrlen(prop->name) + 1; + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_calcssmant’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:870:6: warning: variable ‘e’ set but not used [-Wunused-but-set-variable] + 870 | int e; + | ^ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainhdr’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:901:12: warning: variable ‘mctsynweight’ set but not used [-Wunused-but-set-variable] + 901 | jpc_fix_t mctsynweight; + | ^~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainbody’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1115:7: warning: variable ‘numbytes’ set but not used [-Wunused-but-set-variable] + 1115 | long numbytes; + | ^~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1101:6: warning: variable ‘tiley’ set but not used [-Wunused-but-set-variable] + 1101 | int tiley; + | ^~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1100:6: warning: variable ‘tilex’ set but not used [-Wunused-but-set-variable] + 1100 | int tilex; + | ^~~~~ +At top level: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:883:12: warning: ‘jpc_calcssexp’ defined but not used [-Wunused-function] + 883 | static int jpc_calcssexp(jpc_fix_t stepsize) + | ^~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:867:12: warning: ‘jpc_calcssmant’ defined but not used [-Wunused-function] + 867 | static int jpc_calcssmant(jpc_fix_t stepsize) + | ^~~~~~~~~~~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c: In function ‘jpc_mqdec_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c:304:39: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 304 | fprintf(out, "IND %d, MPS %d, QEVAL %x\n", (int) (*mqdec->curctx - + | ~^ + | | + | unsigned int + | %lx + 305 | jpc_mqstates), (*mqdec->curctx)->mps, (*mqdec->curctx)->qeval); + | ~~~~~~~~~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c: In function ‘jpc_mqenc_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:386:26: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 386 | fprintf(out, "AREG = %08x, CREG = %08x, CTREG = %d\n", + | ~~~^ + | | + | unsigned int + | %08lx + 387 | mqenc->areg, mqenc->creg, mqenc->ctreg); + | ~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:386:39: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 386 | fprintf(out, "AREG = %08x, CREG = %08x, CTREG = %d\n", + | ~~~^ + | | + | unsigned int + | %08lx + 387 | mqenc->areg, mqenc->creg, mqenc->ctreg); + | ~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:386:51: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 386 | fprintf(out, "AREG = %08x, CREG = %08x, CTREG = %d\n", + | ~^ + | | + | int + | %ld + 387 | mqenc->areg, mqenc->creg, mqenc->ctreg); + | ~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:388:49: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 388 | fprintf(out, "IND = %02d, MPS = %d, QEVAL = %04x\n", + | ~~~^ + | | + | unsigned int + | %04lx + 389 | (int) (*mqenc->curctx - jpc_mqstates), (*mqenc->curctx)->mps, + 390 | (*mqenc->curctx)->qeval); + | ~~~~~~~~~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pfapl.obj -c ../H5Pfapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pfcpl.obj -c ../H5Pfcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:288:2: warning: initialization of ‘int (*)(int *, int, int, int, int, int)’ from incompatible pointer type ‘int (*)(jpc_fix_t *, int, int, int, int, int)’ {aka ‘int (*)(long int *, int, int, int, int, int)’} [-Wincompatible-pointer-types] + 288 | jpc_ft_analyze, + | ^~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:288:2: note: (near initialization for ‘jpc_ft_qmfb2d.analyze’) +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:295:2: warning: initialization of ‘int (*)(int *, int, int, int, int, int)’ from incompatible pointer type ‘int (*)(jpc_fix_t *, int, int, int, int, int)’ {aka ‘int (*)(long int *, int, int, int, int, int)’} [-Wincompatible-pointer-types] + 295 | jpc_ns_analyze, + | ^~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:295:2: note: (near initialization for ‘jpc_ns_qmfb2d.analyze’) +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:296:2: warning: initialization of ‘int (*)(int *, int, int, int, int, int)’ from incompatible pointer type ‘int (*)(jpc_fix_t *, int, int, int, int, int)’ {aka ‘int (*)(long int *, int, int, int, int, int)’} [-Wincompatible-pointer-types] + 296 | jpc_ns_synthesize, + | ^~~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:296:2: note: (near initialization for ‘jpc_ns_qmfb2d.synthesize’) +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c: In function ‘jpc_ft_synthesize’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:1607:11: warning: assignment to ‘jpc_fix_t *’ {aka ‘long int *’} from incompatible pointer type ‘int *’ [-Wincompatible-pointer-types] + 1607 | startptr = &a[0]; + | ^ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:1615:11: warning: assignment to ‘jpc_fix_t *’ {aka ‘long int *’} from incompatible pointer type ‘int *’ [-Wincompatible-pointer-types] + 1615 | startptr = &a[0]; + | ^ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pfmpl.obj -c ../H5Pfmpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pgcpl.obj -c ../H5Pgcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pint.obj -c ../H5Pint.c +../H5Pint.c: In function ‘H5P__iterate_pclass_cb’: +../H5Pint.c:4066:11: warning: unused variable ‘key’ [-Wunused-variable] + 4066 | char *key = (char *)_key; /* Pointer to the property's name */ + | ^~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c: In function ‘jpc_enc_enccblk’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:205:18: warning: variable ‘rlvl’ set but not used [-Wunused-but-set-variable] + 205 | jpc_enc_rlvl_t *rlvl; + | ^~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:200:6: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] + 200 | int ret; + | ^~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Plapl.obj -c ../H5Plapl.c +../H5Plapl.c: In function ‘H5P__lacc_elink_fapl_cmp’: +../H5Plapl.c:570:16: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] + 570 | herr_t status; + | ^~~~~~ +In file included from ../H5Plapl.c:35: +../H5Plapl.c: In function ‘H5Pget_elink_prefix’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Plapl.c:1062:13: note: in expansion of macro ‘HDstrncpy’ + 1062 | HDstrncpy(prefix, my_prefix, MIN(len + 1, size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Plapl.c:1060:15: note: in expansion of macro ‘HDstrlen’ + 1060 | len = HDstrlen(my_prefix); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:77: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c: In function ‘jpc_tsfb_analyze’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:177:3: warning: passing argument 2 of ‘jpc_tsfb_analyze2’ from incompatible pointer type [-Wincompatible-pointer-types] + 177 | (&(matrix)->rows_[i][j]) + | ^ + | | + | jas_seqent_t * {aka long int *} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:259:3: note: in expansion of macro ‘jas_matrix_getref’ + 259 | (jas_matrix_getref(s, (y) - (s)->ystart_, (x) - (s)->xstart_)) + | ^~~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:130:55: note: in expansion of macro ‘jas_seq2d_getref’ + 130 | return (tsfb->numlvls > 0) ? jpc_tsfb_analyze2(tsfb, jas_seq2d_getref(a, + | ^~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:85:46: note: expected ‘int *’ but argument is of type ‘jas_seqent_t *’ {aka ‘long int *’} + 85 | int jpc_tsfb_analyze2(jpc_tsfb_t *tsfb, int *a, int xstart, int ystart, + | ~~~~~^ +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:77: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c: In function ‘jpc_tsfb_synthesize’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:177:3: warning: passing argument 2 of ‘jpc_tsfb_synthesize2’ from incompatible pointer type [-Wincompatible-pointer-types] + 177 | (&(matrix)->rows_[i][j]) + | ^ + | | + | jas_seqent_t * {aka long int *} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:259:3: note: in expansion of macro ‘jas_matrix_getref’ + 259 | (jas_matrix_getref(s, (y) - (s)->ystart_, (x) - (s)->xstart_)) + | ^~~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:158:4: note: in expansion of macro ‘jas_seq2d_getref’ + 158 | jas_seq2d_getref(a, jas_seq2d_xstart(a), jas_seq2d_ystart(a)), + | ^~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:88:49: note: expected ‘int *’ but argument is of type ‘jas_seqent_t *’ {aka ‘long int *’} + 88 | int jpc_tsfb_synthesize2(jpc_tsfb_t *tsfb, int *a, int xstart, int ystart, + | ~~~~~^ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Plcpl.obj -c ../H5Plcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c: In function ‘jpc_atoaf’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:11: warning: comparison between pointer and zero character constant [-Wpointer-compare] + 105 | if (cp != '\0') { + | ^~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:8: note: did you mean to dereference the pointer? + 105 | if (cp != '\0') { + | ^ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:12: warning: comparison between pointer and zero character constant [-Wpointer-compare] + 123 | if (cp != '\0') { + | ^~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:9: note: did you mean to dereference the pointer? + 123 | if (cp != '\0') { + | ^ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +/usr/bin/ar -rc libjp2.a jas_cm.o jas_debug.o jas_getopt.o jas_icc.o jas_iccdata.o jas_image.o jas_init.o jas_malloc.o jas_seq.o jas_stream.o jas_string.o jas_tmr.o jas_tvp.o jas_version.o jp2_cod.o jp2_dec.o jp2_enc.o jpc_bs.o jpc_cs.o jpc_dec.o jpc_enc.o jpc_math.o jpc_mct.o jpc_mqcod.o jpc_mqdec.o jpc_mqenc.o jpc_qmfb.o jpc_t1cod.o jpc_t1dec.o jpc_t1enc.o jpc_t2cod.o jpc_t2dec.o jpc_t2enc.o jpc_tagtree.o jpc_tsfb.o jpc_util.o +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +/usr/bin/ranlib libjp2.a +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +g++ -o libjp2.so -shared -fPIC -Wl,-hlibjp2.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jas_cm.o jas_debug.o jas_getopt.o jas_icc.o jas_iccdata.o jas_image.o jas_init.o jas_malloc.o jas_seq.o jas_stream.o jas_string.o jas_tmr.o jas_tvp.o jas_version.o jp2_cod.o jp2_dec.o jp2_enc.o jpc_bs.o jpc_cs.o jpc_dec.o jpc_enc.o jpc_math.o jpc_mct.o jpc_mqcod.o jpc_mqdec.o jpc_mqenc.o jpc_qmfb.o jpc_t1cod.o jpc_t1dec.o jpc_t1enc.o jpc_t2cod.o jpc_t2dec.o jpc_t2enc.o jpc_tagtree.o jpc_tsfb.o jpc_util.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +/usr/bin/ld: jas_stream.o: in function `jas_stream_tmpfile': +jas_stream.c:(.text+0x7e9): warning: the use of `tmpnam' is dangerous, better use `mkstemp' +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../../.. \ + T_A=windows-x64-mingw install +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_util.d -MT jpc_util.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pocpl.obj -c ../H5Pocpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tsfb.d -MT jpc_tsfb.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tagtree.d -MT jpc_tagtree.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pocpypl.obj -c ../H5Pocpypl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2enc.d -MT jpc_t2enc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pstrcpl.obj -c ../H5Pstrcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2dec.d -MT jpc_t2dec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2cod.d -MT jpc_t2cod.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ptest.obj -c ../H5Ptest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1enc.d -MT jpc_t1enc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1dec.d -MT jpc_t1dec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5PB.obj -c ../H5PB.c +../H5PB.c: In function ‘H5PB_dest’: +../H5PB.c:487:7: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 487 | f = fio_info->f; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1cod.d -MT jpc_t1cod.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_qmfb.d -MT jpc_qmfb.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5PL.obj -c ../H5PL.c +In file included from ../H5PL.c:23: +../H5PL.c: In function ‘H5PLget’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5PL.c:623:9: note: in expansion of macro ‘HDstrncpy’ + 623 | HDstrncpy(pathname, dl_path, MIN((size_t)(len + 1), size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5PL.c:621:11: note: in expansion of macro ‘HDstrlen’ + 621 | len = HDstrlen(dl_path); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqenc.d -MT jpc_mqenc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqdec.d -MT jpc_mqdec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5R.obj -c ../H5R.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqcod.d -MT jpc_mqcod.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Rdeprec.obj -c ../H5Rdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mct.d -MT jpc_mct.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_math.d -MT jpc_math.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5UC.obj -c ../H5UC.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_enc.d -MT jpc_enc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5RS.obj -c ../H5RS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_dec.d -MT jpc_dec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_cs.d -MT jpc_cs.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_bs.d -MT jpc_bs.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5S.obj -c ../H5S.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_enc.d -MT jp2_enc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_dec.d -MT jp2_dec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Sall.obj -c ../H5Sall.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_cod.d -MT jp2_cod.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_version.d -MT jas_version.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tvp.d -MT jas_tvp.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tmr.d -MT jas_tmr.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_string.d -MT jas_string.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Sdbg.obj -c ../H5Sdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_stream.d -MT jas_stream.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_seq.d -MT jas_seq.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_malloc.d -MT jas_malloc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_init.d -MT jas_init.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_image.d -MT jas_image.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_iccdata.d -MT jas_iccdata.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_icc.d -MT jas_icc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_getopt.d -MT jas_getopt.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_debug.d -MT jas_debug.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_cm.d -MT jas_cm.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Shyper.obj -c ../H5Shyper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_cm.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c:68: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Snone.obj -c ../H5Snone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_debug.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c:69: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Spoint.obj -c ../H5Spoint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_getopt.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_getopt.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c:77: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Sselect.obj -c ../H5Sselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Stest.obj -c ../H5Stest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_icc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:63: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icctxtdesc_copy’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1072:20: warning: variable ‘txtdesc’ set but not used [-Wunused-but-set-variable] + 1072 | jas_icctxtdesc_t *txtdesc = &attrval->data.txtdesc; + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut8_copy’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1259:17: warning: variable ‘lut8’ set but not used [-Wunused-but-set-variable] + 1259 | jas_icclut8_t *lut8 = &attrval->data.lut8; + | ^~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_iccdata.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c:62: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SL.obj -c ../H5SL.c +../H5SL.c: In function ‘H5SL_term_package’: +../H5SL.c:655:21: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] + 655 | herr_t ret; + | ^~~ +In file included from ../H5SL.c:64: +../H5SL.c: In function ‘H5SL_search’: +../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 2267 | return(ret_value); \ + | ^ +../H5SL.c:1397:11: note: ‘ret_value’ was declared here + 1397 | void *ret_value; /* Return value */ + | ^~~~~~~~~ +In file included from ../H5SL.c:64: +../H5SL.c: In function ‘H5SL_find’: +../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 2267 | return(ret_value); \ + | ^ +../H5SL.c:1698:18: note: ‘ret_value’ was declared here + 1698 | H5SL_node_t *ret_value; /* Return value */ + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_image.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_math.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:80: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c: In function ‘jas_image_chclrspc’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1289:6: warning: variable ‘numoutchans’ set but not used [-Wunused-but-set-variable] + 1289 | int numoutchans; + | ^~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1282:6: warning: variable ‘numinauxchans’ set but not used [-Wunused-but-set-variable] + 1282 | int numinauxchans; + | ^~~~~~~~~~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_init.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c:66: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_malloc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c:80: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SM.obj -c ../H5SM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SMbtree2.obj -c ../H5SMbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_seq.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:78: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SMcache.obj -c ../H5SMcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SMmessage.obj -c ../H5SMmessage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_stream.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c:89: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_string.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c:76: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_tmr.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_tmr.h:66, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c:76: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_tvp.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c:77: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_version.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_version.h:71, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c:62: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SMtest.obj -c ../H5SMtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5ST.obj -c ../H5ST.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jp2_cod.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_stream.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:77: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jp2_dec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_image.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c:74: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c: In function ‘jp2_decode’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c:107:14: warning: variable ‘cdefd’ set but not used [-Wunused-but-set-variable] + 107 | jp2_cdef_t *cdefd; + | ^~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jp2_enc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c:75: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5T.obj -c ../H5T.c +../H5T.c: In function ‘H5T_path_find’: +../H5T.c:4499:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 4499 | if(NULL == (path->src = H5T_copy(src, H5T_COPY_ALL))) + | ^~~ +../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) + | ~~~~~~~^~~~~~ +../H5T.c:4501:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 4501 | if(NULL == (path->dst = H5T_copy(dst, H5T_COPY_ALL))) + | ^~~ +../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) + | ~~~~~~~^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_bs.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c:78: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tarray.obj -c ../H5Tarray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tbit.obj -c ../H5Tbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_cs.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:78: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_qcd_getparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:972:22: warning: ‘tmp’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 972 | compparms->numguard = (tmp >> 5) & 7; + | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:961:15: note: ‘tmp’ was declared here + 961 | uint_fast8_t tmp; + | ^~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_qcc_getparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:972:22: warning: ‘tmp’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 972 | compparms->numguard = (tmp >> 5) & 7; + | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:961:15: note: ‘tmp’ was declared here + 961 | uint_fast8_t tmp; + | ^~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:902:15: warning: ‘tmp’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 902 | qcc->compno = tmp; + | ~~~~~~~~~~~~^~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tcommit.obj -c ../H5Tcommit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tcompound.obj -c ../H5Tcompound.c +../H5Tcompound.c: In function ‘H5T__insert’: +../H5Tcompound.c:459:56: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 459 | parent->shared->u.compnd.memb[idx].type = H5T_copy(member, H5T_COPY_ALL); + | ^~~~~~ +In file included from ../H5Tpkg.h:37, + from ../H5Tcompound.c:33: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_dec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:76: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_process_crg’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:414:13: warning: variable ‘crg’ set but not used [-Wunused-but-set-variable] + 414 | jpc_crg_t *crg; + | ^~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_tileinit’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:659:16: warning: variable ‘brcbgyend’ set but not used [-Wunused-but-set-variable] + 659 | uint_fast32_t brcbgyend; + | ^~~~~~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_enc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:78: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_calcssmant’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:870:6: warning: variable ‘e’ set but not used [-Wunused-but-set-variable] + 870 | int e; + | ^ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainhdr’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:901:12: warning: variable ‘mctsynweight’ set but not used [-Wunused-but-set-variable] + 901 | jpc_fix_t mctsynweight; + | ^~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainbody’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1115:7: warning: variable ‘numbytes’ set but not used [-Wunused-but-set-variable] + 1115 | long numbytes; + | ^~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1101:6: warning: variable ‘tiley’ set but not used [-Wunused-but-set-variable] + 1101 | int tiley; + | ^~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1100:6: warning: variable ‘tilex’ set but not used [-Wunused-but-set-variable] + 1100 | int tilex; + | ^~~~~ +At top level: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:883:12: warning: ‘jpc_calcssexp’ defined but not used [-Wunused-function] + 883 | static int jpc_calcssexp(jpc_fix_t stepsize) + | ^~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:867:12: warning: ‘jpc_calcssmant’ defined but not used [-Wunused-function] + 867 | static int jpc_calcssmant(jpc_fix_t stepsize) + | ^~~~~~~~~~~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_math.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_mct.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c:76: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_mqcod.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c:74: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_mqdec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c:78: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_mqenc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_stream.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:77: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_qmfb.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_fix.h:81, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:82: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t1cod.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c:77: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t1dec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_fix.h:81, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c:78: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t1enc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_fix.h:81, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:78: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c: In function ‘jpc_enc_enccblk’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:205:18: warning: variable ‘rlvl’ set but not used [-Wunused-but-set-variable] + 205 | jpc_enc_rlvl_t *rlvl; + | ^~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:200:6: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] + 200 | int ret; + | ^~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t2cod.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_math.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c:70: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t2dec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c:78: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t2enc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_fix.h:81, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c:78: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_tagtree.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c:79: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tconv.obj -c ../H5Tconv.c +../H5Tconv.c: In function ‘H5T_conv_struct_free’: +../H5Tconv.c:1876:17: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] + 1876 | int status; + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tcset.obj -c ../H5Tcset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_tsfb.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:76: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tdbg.obj -c ../H5Tdbg.c +../H5Tdbg.c: In function ‘H5T_debug’: +../H5Tdbg.c:428:4: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 428 | (unsigned long)(dt->shared->u.enumer.value + (i * base_size) + k)); + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_util.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_math.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:79: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c: In function ‘jpc_atoaf’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:11: warning: comparison between pointer and zero character constant [-Wpointer-compare] + 105 | if (cp != '\0') { + | ^~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:8: note: did you mean to dereference the pointer? + 105 | if (cp != '\0') { + | ^ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:12: warning: comparison between pointer and zero character constant [-Wpointer-compare] + 123 | if (cp != '\0') { + | ^~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:9: note: did you mean to dereference the pointer? + 123 | if (cp != '\0') { + | ^ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-windres -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jp2.rc jp2.coff +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o jp2.dll -shared -Wl,--out-implib,libjp2.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ jas_cm.obj jas_debug.obj jas_getopt.obj jas_icc.obj jas_iccdata.obj jas_image.obj jas_init.obj jas_malloc.obj jas_seq.obj jas_stream.obj jas_string.obj jas_tmr.obj jas_tvp.obj jas_version.obj jp2_cod.obj jp2_dec.obj jp2_enc.obj jpc_bs.obj jpc_cs.obj jpc_dec.obj jpc_enc.obj jpc_math.obj jpc_mct.obj jpc_mqcod.obj jpc_mqdec.obj jpc_mqenc.obj jpc_qmfb.obj jpc_t1cod.obj jpc_t1dec.obj jpc_t1enc.obj jpc_t2cod.obj jpc_t2dec.obj jpc_t2enc.obj jpc_tagtree.obj jpc_tsfb.obj jpc_util.obj jp2.coff -lws2_32 +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tdeprec.obj -c ../H5Tdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make -C ./jbig install +make -C ./libjbig install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' +mkdir -p O.Common +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig_tab.d ../jbig_tab.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig.d ../jbig.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tenum.obj -c ../H5Tenum.c +../H5Tenum.c: In function ‘H5T__enum_create’: +../H5Tenum.c:110:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 110 | ret_value->shared->parent = H5T_copy(parent, H5T_COPY_ALL); + | ^~~~~~ +In file included from ../H5Tpkg.h:37, + from ../H5Tenum.c:26: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Tenum.c: In function ‘H5T_enum_nameof’: +../H5Tenum.c:411:38: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 411 | if(NULL == (copied_dt = H5T_copy(dt, H5T_COPY_ALL))) + | ^~ +In file included from ../H5Tpkg.h:37, + from ../H5Tenum.c:26: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Tenum.c: In function ‘H5T_enum_valueof’: +../H5Tenum.c:550:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 550 | if (NULL==(copied_dt=H5T_copy(dt, H5T_COPY_ALL))) + | ^~ +In file included from ../H5Tpkg.h:37, + from ../H5Tenum.c:26: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tfields.obj -c ../H5Tfields.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tfixed.obj -c ../H5Tfixed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../jbig.c +../jbig.c: In function ‘jbg_dec_merge_planes’: +../jbig.c:3041:7: warning: variable ‘bpp’ set but not used [-Wunused-but-set-variable] + 3041 | int bpp; + | ^~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../jbig_tab.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +/usr/bin/ar -rc libjbig.a jbig.o jbig_tab.o +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +/usr/bin/ranlib libjbig.a +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +g++ -o libjbig.so -shared -fPIC -Wl,-hlibjbig.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jbig.o jbig_tab.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tfloat.obj -c ../H5Tfloat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ + T_A=windows-x64-mingw install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig_tab.d -MT jbig_tab.obj ../jbig_tab.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig.d -MT jbig.obj ../jbig.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tnative.obj -c ../H5Tnative.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Toffset.obj -c ../H5Toffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Toh.obj -c ../H5Toh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o jbig.obj -c ../jbig.c +In file included from ../jbig.c:52: +../jbig.h:255: warning: ignoring #pragma warning [-Wunknown-pragmas] + 255 | # pragma warning( disable : 4273 ) + | +../jbig.h:267: warning: ignoring #pragma warning [-Wunknown-pragmas] + 267 | # pragma warning( disable : 4018 ) + | +../jbig.h:268: warning: ignoring #pragma warning [-Wunknown-pragmas] + 268 | # pragma warning( disable : 4244 ) + | +../jbig.h:269: warning: ignoring #pragma warning [-Wunknown-pragmas] + 269 | # pragma warning( disable : 4142 ) + | +../jbig.c:704:15: warning: ‘jbg_ceil_half’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 704 | unsigned long jbg_ceil_half(unsigned long x, int n) + | ^~~~~~~~~~~~~ +../jbig.c:744:6: warning: ‘jbg_enc_init’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 744 | void jbg_enc_init(struct jbg_enc_state *s, unsigned long x, unsigned long y, + | ^~~~~~~~~~~~ +../jbig.c:810:5: warning: ‘jbg_enc_lrlmax’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 810 | int jbg_enc_lrlmax(struct jbg_enc_state *s, unsigned long x, + | ^~~~~~~~~~~~~~ +../jbig.c:828:6: warning: ‘jbg_enc_layers’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 828 | void jbg_enc_layers(struct jbg_enc_state *s, int d) + | ^~~~~~~~~~~~~~ +../jbig.c:847:5: warning: ‘jbg_enc_lrange’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 847 | int jbg_enc_lrange(struct jbg_enc_state *s, int dl, int dh) + | ^~~~~~~~~~~~~~ +../jbig.c:861:6: warning: ‘jbg_enc_options’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 861 | void jbg_enc_options(struct jbg_enc_state *s, int order, int options, + | ^~~~~~~~~~~~~~~ +../jbig.c:1682:6: warning: ‘jbg_int2dppriv’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 1682 | void jbg_int2dppriv(unsigned char *dptable, const char *internal) + | ^~~~~~~~~~~~~~ +../jbig.c:1715:6: warning: ‘jbg_dppriv2int’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 1715 | void jbg_dppriv2int(char *internal, const unsigned char *dptable) + | ^~~~~~~~~~~~~~ +../jbig.c:1745:6: warning: ‘jbg_enc_out’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 1745 | void jbg_enc_out(struct jbg_enc_state *s) + | ^~~~~~~~~~~ +../jbig.c:1923:6: warning: ‘jbg_enc_free’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 1923 | void jbg_enc_free(struct jbg_enc_state *s) + | ^~~~~~~~~~~~ +../jbig.c:1977:13: warning: ‘jbg_strerror’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 1977 | const char *jbg_strerror(int errnum, int language) + | ^~~~~~~~~~~~ +../jbig.c:1991:6: warning: ‘jbg_dec_init’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 1991 | void jbg_dec_init(struct jbg_dec_state *s) + | ^~~~~~~~~~~~ +../jbig.c:2014:6: warning: ‘jbg_dec_maxsize’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 2014 | void jbg_dec_maxsize(struct jbg_dec_state *s, unsigned long xmax, + | ^~~~~~~~~~~~~~~ +../jbig.c:2503:5: warning: ‘jbg_dec_in’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 2503 | int jbg_dec_in(struct jbg_dec_state *s, unsigned char *data, size_t len, + | ^~~~~~~~~~ +../jbig.c:2830:6: warning: ‘jbg_dec_getwidth’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 2830 | long jbg_dec_getwidth(const struct jbg_dec_state *s) + | ^~~~~~~~~~~~~~~~ +../jbig.c:2849:6: warning: ‘jbg_dec_getheight’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 2849 | long jbg_dec_getheight(const struct jbg_dec_state *s) + | ^~~~~~~~~~~~~~~~~ +../jbig.c:2868:16: warning: ‘jbg_dec_getimage’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 2868 | unsigned char *jbg_dec_getimage(const struct jbg_dec_state *s, int plane) + | ^~~~~~~~~~~~~~~~ +../jbig.c:2888:6: warning: ‘jbg_dec_getsize’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 2888 | long jbg_dec_getsize(const struct jbg_dec_state *s) + | ^~~~~~~~~~~~~~~ +../jbig.c:2910:6: warning: ‘jbg_dec_getsize_merged’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 2910 | long jbg_dec_getsize_merged(const struct jbg_dec_state *s) + | ^~~~~~~~~~~~~~~~~~~~~~ +../jbig.c:2932:6: warning: ‘jbg_dec_free’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 2932 | void jbg_dec_free(struct jbg_dec_state *s) + | ^~~~~~~~~~~~ +../jbig.c:2975:6: warning: ‘jbg_split_planes’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 2975 | void jbg_split_planes(unsigned long x, unsigned long y, int has_planes, + | ^~~~~~~~~~~~~~~~ +../jbig.c:3036:6: warning: ‘jbg_dec_merge_planes’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 3036 | void jbg_dec_merge_planes(const struct jbg_dec_state *s, int use_graycode, + | ^~~~~~~~~~~~~~~~~~~~ +../jbig.c: In function ‘jbg_dec_merge_planes’: +../jbig.c:3041:7: warning: variable ‘bpp’ set but not used [-Wunused-but-set-variable] + 3041 | int bpp; + | ^~~ +../jbig.c: At top level: +../jbig.c:3165:5: warning: ‘jbg_newlen’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 3165 | int jbg_newlen(unsigned char *bie, size_t len) + | ^~~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o jbig_tab.obj -c ../jbig_tab.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-windres -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc ../jbig.rc jbig.coff +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o jbig.dll -shared -Wl,--out-implib,libjbig.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ jbig.obj jbig_tab.obj jbig.coff -lws2_32 +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +make -C ./magick install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Topaque.obj -c ../H5Topaque.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' +mkdir -p O.Common +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF analyze_Linux.d ../analyze_Linux.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF xwindow.d ../xwindow.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF widget.d ../widget.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF version.d ../version.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF utility.d ../utility.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF unix_port.d ../unix_port.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Torder.obj -c ../H5Torder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type.d ../type.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tsd.d ../tsd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF transform.d ../transform.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF timer.d ../timer.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF texture.d ../texture.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tempfile.d ../tempfile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF statistics.d ../statistics.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF signature.d ../signature.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF shear.d ../shear.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF semaphore.d ../semaphore.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF segment.d ../segment.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resource.d ../resource.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tpad.obj -c ../H5Tpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resize.d ../resize.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF render.d ../render.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF registry.d ../registry.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF random.d ../random.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF quantize.d ../quantize.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF profile.d ../profile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF PreRvIcccm.d ../PreRvIcccm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF plasma.d ../plasma.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_iterator.d ../pixel_iterator.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_cache.d ../pixel_cache.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF paint.d ../paint.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF operator.d ../operator.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tprecis.obj -c ../H5Tprecis.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF omp_data_view.d ../omp_data_view.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_feature.d ../nt_feature.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_base.d ../nt_base.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF montage.d ../montage.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF monitor.d ../monitor.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF module.d ../module.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF memory.d ../memory.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF map.d ../map.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick_endian.d ../magick_endian.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick.d ../magick.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magic.d ../magic.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tstrpad.obj -c ../H5Tstrpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF log.d ../log.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF locale.d ../locale.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF list.d ../list.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF import.d ../import.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF image.d ../image.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF hclut.d ../hclut.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gradient.d ../gradient.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gem.d ../gem.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fx.d ../fx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF floats.d ../floats.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF export.d ../export.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF error.d ../error.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tvisit.obj -c ../H5Tvisit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enum_strings.d ../enum_strings.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enhance.d ../enhance.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF effect.d ../effect.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF draw.d ../draw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF display.d ../display.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF describe.d ../describe.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF deprecate.d ../deprecate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF delegate.d ../delegate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF decorate.d ../decorate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF constitute.d ../constitute.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF confirm_access.d ../confirm_access.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compress.d ../compress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF composite.d ../composite.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compare.d ../compare.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF command.d ../command.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tvlen.obj -c ../H5Tvlen.c +../H5Tvlen.c: In function ‘H5T__vlen_create’: +../H5Tvlen.c:142:47: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 142 | if(NULL == (dt->shared->parent = H5T_copy(base, H5T_COPY_ALL))) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Tvlen.c:23: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color_lookup.d ../color_lookup.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colorspace.d ../colorspace.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colormap.d ../colormap.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color.d ../color.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF channel.d ../channel.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cdl.d ../cdl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF blob.d ../blob.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bit_stream.d ../bit_stream.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF average.d ../average.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF attribute.d ../attribute.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5TS.obj -c ../H5TS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF annotate.d ../annotate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF animate.d ../animate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +mkdir ../../../../include/magick +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5VM.obj -c ../H5VM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5WB.obj -c ../H5WB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Z.obj -c ../H5Z.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../animate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zdeflate.obj -c ../H5Zdeflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zfletcher32.obj -c ../H5Zfletcher32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../annotate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../attribute.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../average.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Znbit.obj -c ../H5Znbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../bit_stream.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../blob.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../cdl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../channel.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../color.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zscaleoffset.obj -c ../H5Zscaleoffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../colormap.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zshuffle.obj -c ../H5Zshuffle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../colorspace.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../color_lookup.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zszip.obj -c ../H5Zszip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ztrans.obj -c ../H5Ztrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tinit.obj -c ../os/WIN32/H5Tinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5lib_settings.obj -c ../H5lib_settings.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosc_filter.obj -c ../blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jpeg_h5filter.obj -c ../jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../command.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../compare.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5detect.obj -c ../H5detect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o hdf5.dll -shared -Wl,--out-implib,libhdf5.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ H5.obj H5checksum.obj H5dbg.obj H5system.obj H5timer.obj H5trace.obj H5A.obj H5Abtree2.obj H5Adense.obj H5Adeprec.obj H5Aint.obj H5Atest.obj H5AC.obj H5AClog.obj H5ACdbg.obj H5ACproxy_entry.obj H5B.obj H5Bcache.obj H5Bdbg.obj H5B2.obj H5B2cache.obj H5B2dbg.obj H5B2hdr.obj H5B2int.obj H5B2internal.obj H5B2leaf.obj H5B2stat.obj H5B2test.obj H5C.obj H5Cdbg.obj H5Cepoch.obj H5Cimage.obj H5Clog.obj H5Cprefetched.obj H5Cquery.obj H5Ctag.obj H5Ctest.obj H5CS.obj H5D.obj H5Dbtree.obj H5Dbtree2.obj H5Dchunk.obj H5Dcompact.obj H5Dcontig.obj H5Ddbg.obj H5Ddeprec.obj H5Dearray.obj H5Defl.obj H5Dfarray.obj H5Dfill.obj H5Dint.obj H5Dio.obj H5Dlayout.obj H5Dnone.obj H5Doh.obj H5Dscatgath.obj H5Dselect.obj H5Dsingle.obj H5Dtest.obj H5Dvirtual.obj H5E.obj H5Edeprec.obj H5Eint.obj H5EA.obj H5EAcache.obj H5EAdbg.obj H5EAdblkpage.obj H5EAdblock.obj H5EAhdr.obj H5EAiblock.obj H5EAint.obj H5EAsblock.obj H5EAstat.obj H5EAtest.obj H5F.obj H5Faccum.obj H5Fcwfs.obj H5Fdbg.obj H5Fdeprec.obj H5Fefc.obj H5Ffake.obj H5Fint.obj H5Fio.obj H5Fmount.obj H5Fquery.obj H5Fsfile.obj H5Fspace.obj H5Fsuper.obj H5Fsuper_cache.obj H5Ftest.obj H5FA.obj H5FAcache.obj H5FAdbg.obj H5FAdblock.obj H5FAdblkpage.obj H5FAhdr.obj H5FAint.obj H5FAstat.obj H5FAtest.obj H5FD.obj H5FDcore.obj H5FDfamily.obj H5FDint.obj H5FDlog.obj H5FDmulti.obj H5FDsec2.obj H5FDspace.obj H5FDstdio.obj H5FDtest.obj H5FL.obj H5FO.obj H5FS.obj H5FScache.obj H5FSdbg.obj H5FSint.obj H5FSsection.obj H5FSstat.obj H5FStest.obj H5G.obj H5Gbtree2.obj H5Gcache.obj H5Gcompact.obj H5Gdense.obj H5Gdeprec.obj H5Gent.obj H5Gint.obj H5Glink.obj H5Gloc.obj H5Gname.obj H5Gnode.obj H5Gobj.obj H5Goh.obj H5Groot.obj H5Gstab.obj H5Gtest.obj H5Gtraverse.obj H5HF.obj H5HFbtree2.obj H5HFcache.obj H5HFdbg.obj H5HFdblock.obj H5HFdtable.obj H5HFhdr.obj H5HFhuge.obj H5HFiblock.obj H5HFiter.obj H5HFman.obj H5HFsection.obj H5HFspace.obj H5HFstat.obj H5HFtest.obj H5HFtiny.obj H5HG.obj H5HGcache.obj H5HGdbg.obj H5HGquery.obj H5HL.obj H5HLcache.obj H5HLdbg.obj H5HLint.obj H5HLprfx.obj H5HLdblk.obj H5HP.obj H5I.obj H5Itest.obj H5L.obj H5Lexternal.obj H5MF.obj H5MFaggr.obj H5MFdbg.obj H5MFsection.obj H5MM.obj H5MP.obj H5MPtest.obj H5O.obj H5Oainfo.obj H5Oalloc.obj H5Oattr.obj H5Oattribute.obj H5Obogus.obj H5Obtreek.obj H5Ocache.obj H5Ocache_image.obj H5Ochunk.obj H5Ocont.obj H5Ocopy.obj H5Odbg.obj H5Odrvinfo.obj H5Odtype.obj H5Oefl.obj H5Ofill.obj H5Oflush.obj H5Ofsinfo.obj H5Oginfo.obj H5Olayout.obj H5Olinfo.obj H5Olink.obj H5Omessage.obj H5Omtime.obj H5Oname.obj H5Onull.obj H5Opline.obj H5Orefcount.obj H5Osdspace.obj H5Oshared.obj H5Oshmesg.obj H5Ostab.obj H5Otest.obj H5Ounknown.obj H5P.obj H5Pacpl.obj H5Pdapl.obj H5Pdcpl.obj H5Pdeprec.obj H5Pdxpl.obj H5Pencdec.obj H5Pfapl.obj H5Pfcpl.obj H5Pfmpl.obj H5Pgcpl.obj H5Pint.obj H5Plapl.obj H5Plcpl.obj H5Pocpl.obj H5Pocpypl.obj H5Pstrcpl.obj H5Ptest.obj H5PB.obj H5PL.obj H5R.obj H5Rdeprec.obj H5UC.obj H5RS.obj H5S.obj H5Sall.obj H5Sdbg.obj H5Shyper.obj H5Snone.obj H5Spoint.obj H5Sselect.obj H5Stest.obj H5SL.obj H5SM.obj H5SMbtree2.obj H5SMcache.obj H5SMmessage.obj H5SMtest.obj H5ST.obj H5T.obj H5Tarray.obj H5Tbit.obj H5Tcommit.obj H5Tcompound.obj H5Tconv.obj H5Tcset.obj H5Tdbg.obj H5Tdeprec.obj H5Tenum.obj H5Tfields.obj H5Tfixed.obj H5Tfloat.obj H5Tnative.obj H5Toffset.obj H5Toh.obj H5Topaque.obj H5Torder.obj H5Tpad.obj H5Tprecis.obj H5Tstrpad.obj H5Tvisit.obj H5Tvlen.obj H5TS.obj H5VM.obj H5WB.obj H5Z.obj H5Zdeflate.obj H5Zfletcher32.obj H5Znbit.obj H5Zscaleoffset.obj H5Zshuffle.obj H5Zszip.obj H5Ztrans.obj H5Tinit.obj H5lib_settings.obj blosc_filter.obj jpeg_h5filter.obj -lszip -lzlib -lblosc -ljpeg -lws2_32 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o H5detect.exe -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ H5detect.obj -lnetapi32 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make -C ./hdf5_hlSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5TB.d ../H5TB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5PT.d ../H5PT.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTparse.d ../H5LTparse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTanalyze.d ../H5LTanalyze.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LT.d ../H5LT.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LD.d ../H5LD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../composite.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5IM.d ../H5IM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DS.d ../H5DS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DO.d ../H5DO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../compress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5DO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../confirm_access.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5DS.c +../H5DS.c: In function ‘H5DSset_label’: +../H5DS.c:1436:7: warning: ‘u.buf’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1436 | } u; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5IM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../constitute.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LT.c +In file included from /usr/include/string.h:495, + from ../H5LT.c:17: +In function ‘strncat’, + inlined from ‘realloc_and_append’ at ../H5LT.c:2296:4, + inlined from ‘indentation’ at ../H5LT.c:2337:16: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output may be truncated copying between 0 and 255 bytes from a string of length 255 [-Wstringop-truncation] + 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../decorate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LTanalyze.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../delegate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LTparse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../deprecate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5PT.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../describe.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5TB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +/usr/bin/ar -rc libhdf5_hl.a H5DO.o H5DS.o H5IM.o H5LD.o H5LT.o H5LTanalyze.o H5LTparse.o H5PT.o H5TB.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +/usr/bin/ranlib libhdf5_hl.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +g++ -o libhdf5_hl.so -shared -fPIC -Wl,-hlibhdf5_hl.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 H5DO.o H5DS.o H5IM.o H5LD.o H5LT.o H5LTanalyze.o H5LTparse.o H5PT.o H5TB.o -lhdf5 -lszip -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5TB.d -MT H5TB.obj ../H5TB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5PT.d -MT H5PT.obj ../H5PT.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTparse.d -MT H5LTparse.obj ../H5LTparse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTanalyze.d -MT H5LTanalyze.obj ../H5LTanalyze.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LT.d -MT H5LT.obj ../H5LT.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LD.d -MT H5LD.obj ../H5LD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5IM.d -MT H5IM.obj ../H5IM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DS.d -MT H5DS.obj ../H5DS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DO.d -MT H5DO.obj ../H5DO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5DO.obj -c ../H5DO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5DS.obj -c ../H5DS.c +../H5DS.c: In function ‘H5DSset_label’: +../H5DS.c:1436:7: warning: ‘u.buf’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1436 | } u; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../display.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5IM.obj -c ../H5IM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../draw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5LD.obj -c ../H5LD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5LT.obj -c ../H5LT.c +In file included from ../H5HLprivate2.h:24, + from ../H5LTprivate.h:18, + from ../H5LT.c:19: +In function ‘realloc_and_append’, + inlined from ‘indentation’ at ../H5LT.c:2337:16: +../../hdf5Src/H5private.h:1358:31: warning: ‘strncat’ output may be truncated copying between 0 and 255 bytes from a string of length 255 [-Wstringop-truncation] + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5LT.c:2296:4: note: in expansion of macro ‘HDstrncat’ + 2296 | HDstrncat(buf, str_to_add, size_str_to_add); + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5LTanalyze.obj -c ../H5LTanalyze.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../effect.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5LTparse.obj -c ../H5LTparse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../enhance.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5PT.obj -c ../H5PT.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../enum_strings.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../error.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5TB.obj -c ../H5TB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o hdf5_hl.dll -shared -Wl,--out-implib,libhdf5_hl.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ H5DO.obj H5DS.obj H5IM.obj H5LD.obj H5LT.obj H5LTanalyze.obj H5LTparse.obj H5PT.obj H5TB.obj -lhdf5 -lszip -lzlib -lws2_32 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make -C ./hdf5PluginSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5plugin.d ../jpeg_h5plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d ../../../supportApp/hdf5Src/jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_plugin.d ../blosc_plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d ../../../supportApp/hdf5Src/blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/hdf5Src/blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../blosc_plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/hdf5Src/jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jpeg_h5plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +g++ -o libHDF5_blosc_plugin.so -shared -fPIC -Wl,-hlibHDF5_blosc_plugin.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 blosc_filter.o blosc_plugin.o -lhdf5 -lblosc -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +g++ -o libHDF5_jpeg_plugin.so -shared -fPIC -Wl,-hlibHDF5_jpeg_plugin.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jpeg_h5filter.o jpeg_h5plugin.o -lhdf5 -ljpeg -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5plugin.d -MT jpeg_h5plugin.obj ../jpeg_h5plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d -MT jpeg_h5filter.obj ../../../supportApp/hdf5Src/jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_plugin.d -MT blosc_plugin.obj ../blosc_plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d -MT blosc_filter.obj ../../../supportApp/hdf5Src/blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosc_filter.obj -c ../../../supportApp/hdf5Src/blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosc_plugin.obj -c ../blosc_plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jpeg_h5filter.obj -c ../../../supportApp/hdf5Src/jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jpeg_h5plugin.obj -c ../jpeg_h5plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o HDF5_blosc_plugin.dll -shared -Wl,--out-implib,libHDF5_blosc_plugin.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ blosc_filter.obj blosc_plugin.obj -lhdf5 -lblosc -lws2_32 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o HDF5_jpeg_plugin.dll -shared -Wl,--out-implib,libHDF5_jpeg_plugin.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ jpeg_h5filter.obj jpeg_h5plugin.obj -lhdf5 -ljpeg -lws2_32 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make -C ./netCDFSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_initialize.d ../../../supportApp/netCDFSrc/liblib/nc_initialize.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF utf8proc.d ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutil.d ../../../supportApp/netCDFSrc/libdispatch/dutil.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dwinpath.d ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF doffsets.d ../../../supportApp/netCDFSrc/libdispatch/doffsets.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dauth.d ../../../supportApp/netCDFSrc/libdispatch/dauth.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF drc.d ../../../supportApp/netCDFSrc/libdispatch/drc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclistmgr.d ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc.d ../../../supportApp/netCDFSrc/libdispatch/nc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nctime.d ../../../supportApp/netCDFSrc/libdispatch/nctime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nchashmap.d ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncbytes.d ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclist.d ../../../supportApp/netCDFSrc/libdispatch/nclist.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncuri.d ../../../supportApp/netCDFSrc/libdispatch/ncuri.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dstring.d ../../../supportApp/netCDFSrc/libdispatch/dstring.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclog.d ../../../supportApp/netCDFSrc/libdispatch/nclog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutf8.d ../../../supportApp/netCDFSrc/libdispatch/dutf8.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddispatch.d ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dinternal.d ../../../supportApp/netCDFSrc/libdispatch/dinternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarinq.d ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarput.d ../../../supportApp/netCDFSrc/libdispatch/dvarput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarget.d ../../../supportApp/netCDFSrc/libdispatch/dvarget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvar.d ../../../supportApp/netCDFSrc/libdispatch/dvar.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF derror.d ../../../supportApp/netCDFSrc/libdispatch/derror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattget.d ../../../supportApp/netCDFSrc/libdispatch/dattget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattput.d ../../../supportApp/netCDFSrc/libdispatch/dattput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattinq.d ../../../supportApp/netCDFSrc/libdispatch/dattinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF datt.d ../../../supportApp/netCDFSrc/libdispatch/datt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddim.d ../../../supportApp/netCDFSrc/libdispatch/ddim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dfile.d ../../../supportApp/netCDFSrc/libdispatch/dfile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dcopy.d ../../../supportApp/netCDFSrc/libdispatch/dcopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dparallel.d ../../../supportApp/netCDFSrc/libdispatch/dparallel.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF posixio.d ../../../supportApp/netCDFSrc/libsrc/posixio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF memio.d ../../../supportApp/netCDFSrc/libsrc/memio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncio.d ../../../supportApp/netCDFSrc/libsrc/ncio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lookup3.d ../../../supportApp/netCDFSrc/libsrc/lookup3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_hashmap.d ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncx.d ../../../supportApp/netCDFSrc/libsrc/ncx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dim.d ../../../supportApp/netCDFSrc/libsrc/dim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF var.d ../../../supportApp/netCDFSrc/libsrc/var.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3internal.d ../../../supportApp/netCDFSrc/libsrc/nc3internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3dispatch.d ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF attr.d ../../../supportApp/netCDFSrc/libsrc/attr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF putget.d ../../../supportApp/netCDFSrc/libsrc/putget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF v1hpg.d ../../../supportApp/netCDFSrc/libsrc/v1hpg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/v1hpg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/putget.c +putget.m4: In function ‘putNCvx_char_char’: +putget.m4:754:15: warning: unused variable ‘fillp’ [-Wunused-variable] +At top level: +putget.m4:912:1: warning: ‘getNCvx_char_char’ defined but not used [-Wunused-function] +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/attr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/nc3internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/var.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/dim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/ncx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../export.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../floats.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/lookup3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/ncio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/memio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../fx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/posixio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dparallel.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../gem.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dcopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../gradient.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dfile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../hclut.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ddim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/datt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dattinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dattput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dattget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/derror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvar.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../image.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvarget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvarput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dinternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dutf8.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nclog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dstring.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ncuri.c +In file included from /usr/include/string.h:495, + from ../../../supportApp/netCDFSrc/libdispatch/ncuri.c:8: +In function ‘strncpy’, + inlined from ‘ncuriparse’ at ../../../supportApp/netCDFSrc/libdispatch/ncuri.c:153:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/ncuri.c: In function ‘ncuriparse’: +../../../supportApp/netCDFSrc/libdispatch/ncuri.c:137:12: note: length computed here + 137 | len0 = strlen(uri0); + | ^~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nclist.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nctime.c +../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdParseRelunits’: +../../../supportApp/netCDFSrc/libdispatch/nctime.c:384:25: warning: ‘%s’ directive writing up to 47 bytes into a region of size between 0 and 47 [-Wformat-overflow=] + 384 | sprintf(basetime,"%s %s",basetime_1,basetime_2); + | ^~ ~~~~~~~~~~ +In file included from /usr/include/stdio.h:867, + from ../../../supportApp/netCDFSrc/libdispatch/nctime.c:20: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output between 2 and 96 bytes into a destination of size 48 + 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 37 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdComp2Rel.constprop’: +../../../supportApp/netCDFSrc/libdispatch/nctime.c:877:15: warning: ‘ndel’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 877 | *reltime = (double)ndel; + | ^~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c:871:19: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 871 | *reltime = delta/168.0; + | ~~~~~^~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdRel2Comp’: +../../../supportApp/netCDFSrc/libdispatch/nctime.c:1073:3: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1073 | Cde2h(base_etm+delta, old_timetype, 1970, &humantime); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdRel2Iso’: +../../../supportApp/netCDFSrc/libdispatch/nctime.c:1073:3: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1073 | Cde2h(base_etm+delta, old_timetype, 1970, &humantime); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c:983:9: note: ‘delta’ was declared here + 983 | double delta; + | ^~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/drc.c +In file included from /usr/include/string.h:495, + from ../../../supportApp/netCDFSrc/libdispatch/drc.c:15: +In function ‘strncpy’, + inlined from ‘rcsearch’ at ../../../supportApp/netCDFSrc/libdispatch/drc.c:403:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/drc.c: In function ‘rcsearch’: +../../../supportApp/netCDFSrc/libdispatch/drc.c:396:16: note: length computed here + 396 | int plen = strlen(prefix); + | ^~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dauth.c +In file included from /usr/include/string.h:495, + from ../../../supportApp/netCDFSrc/libdispatch/dauth.c:10: +In function ‘strncpy’, + inlined from ‘NC_combinehostport’ at ../../../supportApp/netCDFSrc/libdispatch/dauth.c:82:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/doffsets.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dutil.c +In file included from /usr/include/string.h:495, + from ../../../supportApp/netCDFSrc/libdispatch/dutil.c:8: +In function ‘strncpy’, + inlined from ‘NC_mktmp’ at ../../../supportApp/netCDFSrc/libdispatch/dutil.c:210:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 4096 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../import.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../list.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../locale.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/liblib/nc_initialize.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../test_big_classic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../log.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +/usr/bin/ar -rc libnetCDF.a v1hpg.o putget.o attr.o nc3dispatch.o nc3internal.o var.o dim.o ncx.o nc_hashmap.o lookup3.o ncio.o memio.o posixio.o dparallel.o dcopy.o dfile.o ddim.o datt.o dattinq.o dattput.o dattget.o derror.o dvar.o dvarget.o dvarput.o dvarinq.o dinternal.o ddispatch.o dutf8.o nclog.o dstring.o ncuri.o nclist.o ncbytes.o nchashmap.o nctime.o nc.o nclistmgr.o drc.o dauth.o doffsets.o dwinpath.o dutil.o utf8proc.o nc_initialize.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +/usr/bin/ranlib libnetCDF.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +g++ -o libnetCDF.so -shared -fPIC -Wl,-hlibnetCDF.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 v1hpg.o putget.o attr.o nc3dispatch.o nc3internal.o var.o dim.o ncx.o nc_hashmap.o lookup3.o ncio.o memio.o posixio.o dparallel.o dcopy.o dfile.o ddim.o datt.o dattinq.o dattput.o dattget.o derror.o dvar.o dvarget.o dvarput.o dvarinq.o dinternal.o ddispatch.o dutf8.o nclog.o dstring.o ncuri.o nclist.o ncbytes.o nchashmap.o nctime.o nc.o nclistmgr.o drc.o dauth.o doffsets.o dwinpath.o dutil.o utf8proc.o nc_initialize.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../magic.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +g++ -o test_big_classic -Wl,-Bstatic -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 test_big_classic.o -lnetCDF -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_initialize.d -MT nc_initialize.obj ../../../supportApp/netCDFSrc/liblib/nc_initialize.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF utf8proc.d -MT utf8proc.obj ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../magick.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutil.d -MT dutil.obj ../../../supportApp/netCDFSrc/libdispatch/dutil.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dwinpath.d -MT dwinpath.obj ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF doffsets.d -MT doffsets.obj ../../../supportApp/netCDFSrc/libdispatch/doffsets.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dauth.d -MT dauth.obj ../../../supportApp/netCDFSrc/libdispatch/dauth.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF drc.d -MT drc.obj ../../../supportApp/netCDFSrc/libdispatch/drc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclistmgr.d -MT nclistmgr.obj ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc.d -MT nc.obj ../../../supportApp/netCDFSrc/libdispatch/nc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nctime.d -MT nctime.obj ../../../supportApp/netCDFSrc/libdispatch/nctime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../magick_endian.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nchashmap.d -MT nchashmap.obj ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncbytes.d -MT ncbytes.obj ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclist.d -MT nclist.obj ../../../supportApp/netCDFSrc/libdispatch/nclist.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncuri.d -MT ncuri.obj ../../../supportApp/netCDFSrc/libdispatch/ncuri.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dstring.d -MT dstring.obj ../../../supportApp/netCDFSrc/libdispatch/dstring.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclog.d -MT nclog.obj ../../../supportApp/netCDFSrc/libdispatch/nclog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutf8.d -MT dutf8.obj ../../../supportApp/netCDFSrc/libdispatch/dutf8.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddispatch.d -MT ddispatch.obj ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dinternal.d -MT dinternal.obj ../../../supportApp/netCDFSrc/libdispatch/dinternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarinq.d -MT dvarinq.obj ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarput.d -MT dvarput.obj ../../../supportApp/netCDFSrc/libdispatch/dvarput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarget.d -MT dvarget.obj ../../../supportApp/netCDFSrc/libdispatch/dvarget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvar.d -MT dvar.obj ../../../supportApp/netCDFSrc/libdispatch/dvar.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../map.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF derror.d -MT derror.obj ../../../supportApp/netCDFSrc/libdispatch/derror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattget.d -MT dattget.obj ../../../supportApp/netCDFSrc/libdispatch/dattget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattput.d -MT dattput.obj ../../../supportApp/netCDFSrc/libdispatch/dattput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattinq.d -MT dattinq.obj ../../../supportApp/netCDFSrc/libdispatch/dattinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF datt.d -MT datt.obj ../../../supportApp/netCDFSrc/libdispatch/datt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddim.d -MT ddim.obj ../../../supportApp/netCDFSrc/libdispatch/ddim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../memory.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dfile.d -MT dfile.obj ../../../supportApp/netCDFSrc/libdispatch/dfile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dcopy.d -MT dcopy.obj ../../../supportApp/netCDFSrc/libdispatch/dcopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dparallel.d -MT dparallel.obj ../../../supportApp/netCDFSrc/libdispatch/dparallel.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../module.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../monitor.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF posixio.d -MT posixio.obj ../../../supportApp/netCDFSrc/libsrc/posixio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../montage.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../nt_base.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../nt_feature.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF memio.d -MT memio.obj ../../../supportApp/netCDFSrc/libsrc/memio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncio.d -MT ncio.obj ../../../supportApp/netCDFSrc/libsrc/ncio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lookup3.d -MT lookup3.obj ../../../supportApp/netCDFSrc/libsrc/lookup3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_hashmap.d -MT nc_hashmap.obj ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../omp_data_view.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncx.d -MT ncx.obj ../../../supportApp/netCDFSrc/libsrc/ncx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dim.d -MT dim.obj ../../../supportApp/netCDFSrc/libsrc/dim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF var.d -MT var.obj ../../../supportApp/netCDFSrc/libsrc/var.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3internal.d -MT nc3internal.obj ../../../supportApp/netCDFSrc/libsrc/nc3internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3dispatch.d -MT nc3dispatch.obj ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF attr.d -MT attr.obj ../../../supportApp/netCDFSrc/libsrc/attr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF putget.d -MT putget.obj ../../../supportApp/netCDFSrc/libsrc/putget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF v1hpg.d -MT v1hpg.obj ../../../supportApp/netCDFSrc/libsrc/v1hpg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o v1hpg.obj -c ../../../supportApp/netCDFSrc/libsrc/v1hpg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../operator.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../paint.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../pixel_cache.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../pixel_iterator.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../plasma.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../PreRvIcccm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o putget.obj -c ../../../supportApp/netCDFSrc/libsrc/putget.c +putget.m4: In function ‘putNCvx_char_char’: +putget.m4:754:15: warning: unused variable ‘fillp’ [-Wunused-variable] +At top level: +putget.m4:912:1: warning: ‘getNCvx_char_char’ defined but not used [-Wunused-function] +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../profile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o attr.obj -c ../../../supportApp/netCDFSrc/libsrc/attr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc3dispatch.obj -c ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc3internal.obj -c ../../../supportApp/netCDFSrc/libsrc/nc3internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../quantize.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../random.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o var.obj -c ../../../supportApp/netCDFSrc/libsrc/var.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../registry.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dim.obj -c ../../../supportApp/netCDFSrc/libsrc/dim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../render.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ncx.obj -c ../../../supportApp/netCDFSrc/libsrc/ncx.c +ncx.m4: In function ‘ncx_put_off_t’: +ncx.m4:2299:51: warning: right shift count >= width of type [-Wshift-count-overflow] +ncx.m4: In function ‘ncx_get_off_t’: +ncx.m4:2356:26: warning: left shift count >= width of type [-Wshift-count-overflow] +ncx.m4:2357:26: warning: left shift count >= width of type [-Wshift-count-overflow] +ncx.m4:2358:26: warning: left shift count >= width of type [-Wshift-count-overflow] +ncx.m4:2359:26: warning: left shift count >= width of type [-Wshift-count-overflow] +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc_hashmap.obj -c ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o lookup3.obj -c ../../../supportApp/netCDFSrc/libsrc/lookup3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ncio.obj -c ../../../supportApp/netCDFSrc/libsrc/ncio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../resize.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../resource.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o memio.obj -c ../../../supportApp/netCDFSrc/libsrc/memio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../segment.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../semaphore.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o posixio.obj -c ../../../supportApp/netCDFSrc/libsrc/posixio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dparallel.obj -c ../../../supportApp/netCDFSrc/libdispatch/dparallel.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../shear.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dcopy.obj -c ../../../supportApp/netCDFSrc/libdispatch/dcopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../signature.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dfile.obj -c ../../../supportApp/netCDFSrc/libdispatch/dfile.c +../../../supportApp/netCDFSrc/libdispatch/dfile.c: In function ‘nc__pseudofd’: +../../../supportApp/netCDFSrc/libdispatch/dfile.c:2172:13: warning: unused variable ‘maxfd’ [-Wunused-variable] + 2172 | int maxfd = 32767; /* default */ + | ^~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../statistics.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ddim.obj -c ../../../supportApp/netCDFSrc/libdispatch/ddim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o datt.obj -c ../../../supportApp/netCDFSrc/libdispatch/datt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dattinq.obj -c ../../../supportApp/netCDFSrc/libdispatch/dattinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../tempfile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dattput.obj -c ../../../supportApp/netCDFSrc/libdispatch/dattput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dattget.obj -c ../../../supportApp/netCDFSrc/libdispatch/dattget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../texture.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o derror.obj -c ../../../supportApp/netCDFSrc/libdispatch/derror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dvar.obj -c ../../../supportApp/netCDFSrc/libdispatch/dvar.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../timer.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../transform.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dvarget.obj -c ../../../supportApp/netCDFSrc/libdispatch/dvarget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../tsd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../type.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../unix_port.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dvarput.obj -c ../../../supportApp/netCDFSrc/libdispatch/dvarput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dvarinq.obj -c ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dinternal.obj -c ../../../supportApp/netCDFSrc/libdispatch/dinternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ddispatch.obj -c ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dutf8.obj -c ../../../supportApp/netCDFSrc/libdispatch/dutf8.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nclog.obj -c ../../../supportApp/netCDFSrc/libdispatch/nclog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dstring.obj -c ../../../supportApp/netCDFSrc/libdispatch/dstring.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ncuri.obj -c ../../../supportApp/netCDFSrc/libdispatch/ncuri.c +../../../supportApp/netCDFSrc/libdispatch/ncuri.c: In function ‘ncuriparse’: +../../../supportApp/netCDFSrc/libdispatch/ncuri.c:153:5: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 153 | strncpy(uri,uri0,len0+1); + | ^~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/ncuri.c:137:12: note: length computed here + 137 | len0 = strlen(uri0); + | ^~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nclist.obj -c ../../../supportApp/netCDFSrc/libdispatch/nclist.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ncbytes.obj -c ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../utility.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nchashmap.obj -c ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c +../../../supportApp/netCDFSrc/libdispatch/nchashmap.c: In function ‘printhstring’: +../../../supportApp/netCDFSrc/libdispatch/nchashmap.c:1948:37: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1948 | fprintf(stderr,"%lx %ld |%s|\n",(unsigned long)s,(unsigned long)n,ss); + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../version.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nctime.obj -c ../../../supportApp/netCDFSrc/libdispatch/nctime.c +../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdParseRelunits’: +../../../supportApp/netCDFSrc/libdispatch/nctime.c:384:25: warning: ‘%s’ directive writing up to 47 bytes into a region of size between 0 and 47 [-Wformat-overflow=] + 384 | sprintf(basetime,"%s %s",basetime_1,basetime_2); + | ^~ ~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c:384:4: note: ‘sprintf’ output between 2 and 96 bytes into a destination of size 48 + 384 | sprintf(basetime,"%s %s",basetime_1,basetime_2); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdComp2Rel.constprop’: +../../../supportApp/netCDFSrc/libdispatch/nctime.c:877:15: warning: ‘ndel’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 877 | *reltime = (double)ndel; + | ^~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c:871:19: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 871 | *reltime = delta/168.0; + | ~~~~~^~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdRel2Comp’: +../../../supportApp/netCDFSrc/libdispatch/nctime.c:1073:3: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1073 | Cde2h(base_etm+delta, old_timetype, 1970, &humantime); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc.obj -c ../../../supportApp/netCDFSrc/libdispatch/nc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nclistmgr.obj -c ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o drc.obj -c ../../../supportApp/netCDFSrc/libdispatch/drc.c +../../../supportApp/netCDFSrc/libdispatch/drc.c: In function ‘rcsearch’: +../../../supportApp/netCDFSrc/libdispatch/drc.c:403:5: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 403 | strncpy(path,prefix,pathlen); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/drc.c:396:16: note: length computed here + 396 | int plen = strlen(prefix); + | ^~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dauth.obj -c ../../../supportApp/netCDFSrc/libdispatch/dauth.c +../../../supportApp/netCDFSrc/libdispatch/dauth.c: In function ‘NC_combinehostport’: +../../../supportApp/netCDFSrc/libdispatch/dauth.c:82:5: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 82 | strncpy(hp,host,len); + | ^~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o doffsets.obj -c ../../../supportApp/netCDFSrc/libdispatch/doffsets.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dwinpath.obj -c ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dutil.obj -c ../../../supportApp/netCDFSrc/libdispatch/dutil.c +../../../supportApp/netCDFSrc/libdispatch/dutil.c: In function ‘NC_mktmp’: +../../../supportApp/netCDFSrc/libdispatch/dutil.c:210:5: warning: ‘strncpy’ specified bound 4096 equals destination size [-Wstringop-truncation] + 210 | strncpy(tmp,cvtpath,sizeof(tmp)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o utf8proc.obj -c ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc_initialize.obj -c ../../../supportApp/netCDFSrc/liblib/nc_initialize.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o test_big_classic.obj -c ../test_big_classic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o netCDF.dll -shared -Wl,--out-implib,libnetCDF.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ v1hpg.obj putget.obj attr.obj nc3dispatch.obj nc3internal.obj var.obj dim.obj ncx.obj nc_hashmap.obj lookup3.obj ncio.obj memio.obj posixio.obj dparallel.obj dcopy.obj dfile.obj ddim.obj datt.obj dattinq.obj dattput.obj dattget.obj derror.obj dvar.obj dvarget.obj dvarput.obj dvarinq.obj dinternal.obj ddispatch.obj dutf8.obj nclog.obj dstring.obj ncuri.obj nclist.obj ncbytes.obj nchashmap.obj nctime.obj nc.obj nclistmgr.obj drc.obj dauth.obj doffsets.obj dwinpath.obj dutil.obj utf8proc.obj nc_initialize.obj -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o test_big_classic.exe -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ test_big_classic.obj -lnetCDF -lnetapi32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../widget.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../analyze_Linux.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make -C ./nexusSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF stptok.d ../stptok.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxxml.d ../nxxml.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxstack.d ../nxstack.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxio.d ../nxio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxdataset.d ../nxdataset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napiu.d ../napiu.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi5.d ../napi5.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi.d ../napi.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../napi.c +In file included from /usr/include/string.h:495, + from ../napi.c:29: +In function ‘strncpy’, + inlined from ‘nxigetdata_’ at ../napi.c:1252:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi.c: In function ‘nxigetdata_’: +../napi.c:1252:3: note: length computed here + 1252 | strncpy((char *)data, pPtr2, strlen(pPtr2)); /* not NULL terminated by default */ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../xwindow.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +/usr/bin/ar -rc libMagick.a animate.o annotate.o attribute.o average.o bit_stream.o blob.o cdl.o channel.o color.o colormap.o colorspace.o color_lookup.o command.o compare.o composite.o compress.o confirm_access.o constitute.o decorate.o delegate.o deprecate.o describe.o display.o draw.o effect.o enhance.o enum_strings.o error.o export.o floats.o fx.o gem.o gradient.o hclut.o image.o import.o list.o locale.o log.o magic.o magick.o magick_endian.o map.o memory.o module.o monitor.o montage.o nt_base.o nt_feature.o omp_data_view.o operator.o paint.o pixel_cache.o pixel_iterator.o plasma.o PreRvIcccm.o profile.o quantize.o random.o registry.o render.o resize.o resource.o segment.o semaphore.o shear.o signature.o statistics.o tempfile.o texture.o timer.o transform.o tsd.o type.o unix_port.o utility.o version.o widget.o xwindow.o analyze_Linux.o +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +/usr/bin/ranlib libMagick.a +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +g++ -o libMagick.so -shared -fPIC -Wl,-hlibMagick.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 animate.o annotate.o attribute.o average.o bit_stream.o blob.o cdl.o channel.o color.o colormap.o colorspace.o color_lookup.o command.o compare.o composite.o compress.o confirm_access.o constitute.o decorate.o delegate.o deprecate.o describe.o display.o draw.o effect.o enhance.o enum_strings.o error.o export.o floats.o fx.o gem.o gradient.o hclut.o image.o import.o list.o locale.o log.o magic.o magick.o magick_endian.o map.o memory.o module.o monitor.o montage.o nt_base.o nt_feature.o omp_data_view.o operator.o paint.o pixel_cache.o pixel_iterator.o plasma.o PreRvIcccm.o profile.o quantize.o random.o registry.o render.o resize.o resource.o segment.o semaphore.o shear.o signature.o statistics.o tempfile.o texture.o timer.o transform.o tsd.o type.o unix_port.o utility.o version.o widget.o xwindow.o analyze_Linux.o -lbzlib -llcms -lttf -lzlib -Wl,-Bdynamic -lXext -lpthread -lm -lrt -ldl -lgcc +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ + T_A=windows-x64-mingw install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF analyze_Win32.d -MT analyze_Win32.obj ../analyze_Win32.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../napi5.c +../napi5.c: In function ‘NX5makegroup’: +../napi5.c:506:8: warning: variable ‘iRet’ set but not used [-Wunused-but-set-variable] + 506 | hid_t iRet; + | ^~~~ +../napi5.c: In function ‘NX5getinfo64’: +../napi5.c:1919:31: warning: unused variable ‘vlen_bytes’ [-Wunused-variable] + 1919 | hsize_t myDim[H5S_MAX_RANK], vlen_bytes = 0, total_dims_size = 1; + | ^~~~~~~~~~ +../napi5.c: In function ‘NX5compmakedata64’: +../napi5.c:879:5: warning: ‘dID’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 879 | if (dID < 0) { + | ^ +In file included from /usr/include/string.h:495, + from ../napi5.c:34: +In function ‘strncpy’, + inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, + inlined from ‘NX5getgroupinfo’ at ../napi5.c:1555:4: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5makegroup’: +../napi5.c:516:29: warning: ‘%s’ directive output may be truncated writing up to 1023 bytes into a region of size 1022 [-Wformat-truncation=] + 516 | snprintf(pBuffer, 1023, "/%s/%s", pFile->name_ref, name); + | ^~ +In file included from /usr/include/stdio.h:867, + from ../../../include/os/Linux/H5Epublic.h:20, + from ../../../include/os/Linux/hdf5.h:26, + from ../napi5.h:9, + from ../napi5.c:39: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output 3 or more bytes (assuming 1026) into a destination of size 1023 + 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 68 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5opengroup’: +../napi5.c:571:26: warning: ‘__builtin___sprintf_chk’ may write a terminating nul past the end of the destination [-Wformat-overflow=] + 571 | sprintf(pBuffer, "%s/%s", pFile->name_tmp, name); + | ^ +In file included from /usr/include/stdio.h:867, + from ../../../include/os/Linux/H5Epublic.h:20, + from ../../../include/os/Linux/hdf5.h:26, + from ../napi5.h:9, + from ../napi5.c:39: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output 2 or more bytes (assuming 1025) into a destination of size 1024 + 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 37 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c:575:34: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 1011 [-Wformat-overflow=] + 575 | sprintf(pBuffer, "ERROR: group %s does not exist", + | ^~ +In file included from /usr/include/stdio.h:867, + from ../../../include/os/Linux/H5Epublic.h:20, + from ../../../include/os/Linux/hdf5.h:26, + from ../napi5.h:9, + from ../napi5.c:39: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output between 29 and 1052 bytes into a destination of size 1024 + 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 37 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from ../napi5.c:34: +In function ‘strncpy’, + inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, + inlined from ‘NX5opengroup’ at ../napi5.c:611:10: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘NX5getattra’ at ../napi5.c:2540:4: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5getattra’: +../napi5.c:2540:4: note: length computed here + 2540 | strncpy(data, strdata, strlen(strdata)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from ../napi5.c:34: +In function ‘strncpy’, + inlined from ‘NX5getdata’ at ../napi5.c:1859:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5getdata’: +../napi5.c:1859:5: note: length computed here + 1859 | strncpy(data, strdata, strlen(strdata)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5getnextentry’: +../napi5.c:1766:20: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 243 [-Wformat-overflow=] + 1766 | "ERROR: group %s does not exist", + | ^~ + 1767 | ph_name); + | ~~~~~~~ +In file included from /usr/include/stdio.h:867, + from ../../../include/os/Linux/H5Epublic.h:20, + from ../../../include/os/Linux/hdf5.h:26, + from ../napi5.h:9, + from ../napi5.c:39: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output between 29 and 1052 bytes into a destination of size 256 + 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 37 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from ../napi5.c:34: +In function ‘strncpy’, + inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, + inlined from ‘NX5getnextentry’ at ../napi5.c:1781:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, + inlined from ‘NX5getgroupinfo_recurse’ at ../napi5.c:1496:4: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF xwindow.d -MT xwindow.obj ../xwindow.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../napiu.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF widget.d -MT widget.obj ../widget.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxdataset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxstack.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF version.d -MT version.obj ../version.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxxml.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../stptok.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF utility.d -MT utility.obj ../utility.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +/usr/bin/ar -rc libNeXus.a napi.o napi5.o napiu.o nxdataset.o nxio.o nxstack.o nxxml.o stptok.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +/usr/bin/ranlib libNeXus.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +g++ -o libNeXus.so -shared -fPIC -Wl,-hlibNeXus.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 napi.o napi5.o napiu.o nxdataset.o nxio.o nxstack.o nxxml.o stptok.o -lhdf5 -lszip -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF unix_port.d -MT unix_port.obj ../unix_port.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF stptok.d -MT stptok.obj ../stptok.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxxml.d -MT nxxml.obj ../nxxml.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxstack.d -MT nxstack.obj ../nxstack.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxio.d -MT nxio.obj ../nxio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type.d -MT type.obj ../type.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tsd.d -MT tsd.obj ../tsd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF transform.d -MT transform.obj ../transform.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxdataset.d -MT nxdataset.obj ../nxdataset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napiu.d -MT napiu.obj ../napiu.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi5.d -MT napi5.obj ../napi5.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF timer.d -MT timer.obj ../timer.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF texture.d -MT texture.obj ../texture.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tempfile.d -MT tempfile.obj ../tempfile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi.d -MT napi.obj ../napi.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF statistics.d -MT statistics.obj ../statistics.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF signature.d -MT signature.obj ../signature.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF shear.d -MT shear.obj ../shear.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF semaphore.d -MT semaphore.obj ../semaphore.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF segment.d -MT segment.obj ../segment.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resource.d -MT resource.obj ../resource.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resize.d -MT resize.obj ../resize.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF render.d -MT render.obj ../render.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF registry.d -MT registry.obj ../registry.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF random.d -MT random.obj ../random.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF quantize.d -MT quantize.obj ../quantize.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF profile.d -MT profile.obj ../profile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF PreRvIcccm.d -MT PreRvIcccm.obj ../PreRvIcccm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o napi.obj -c ../napi.c +../napi.c: In function ‘nxigetdata_’: +../napi.c:1252:3: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1252 | strncpy((char *)data, pPtr2, strlen(pPtr2)); /* not NULL terminated by default */ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF plasma.d -MT plasma.obj ../plasma.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_iterator.d -MT pixel_iterator.obj ../pixel_iterator.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_cache.d -MT pixel_cache.obj ../pixel_cache.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF paint.d -MT paint.obj ../paint.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF operator.d -MT operator.obj ../operator.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o napi5.obj -c ../napi5.c +../napi5.c: In function ‘NX5makegroup’: +../napi5.c:506:8: warning: variable ‘iRet’ set but not used [-Wunused-but-set-variable] + 506 | hid_t iRet; + | ^~~~ +../napi5.c: In function ‘NX5getinfo64’: +../napi5.c:1919:31: warning: unused variable ‘vlen_bytes’ [-Wunused-variable] + 1919 | hsize_t myDim[H5S_MAX_RANK], vlen_bytes = 0, total_dims_size = 1; + | ^~~~~~~~~~ +../napi5.c: In function ‘NX5compmakedata64’: +../napi5.c:879:5: warning: ‘dID’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 879 | if (dID < 0) { + | ^ +In function ‘readStringAttributeN’, + inlined from ‘NX5getgroupinfo’ at ../napi5.c:1555:4: +../napi5.c:171:3: warning: ‘strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] + 171 | strncpy(data, vdat, maxlen); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5opengroup’: +../napi5.c:571:26: warning: ‘sprintf’ may write a terminating nul past the end of the destination [-Wformat-overflow=] + 571 | sprintf(pBuffer, "%s/%s", pFile->name_tmp, name); + | ^ +../napi5.c:571:3: note: ‘sprintf’ output 2 or more bytes (assuming 1025) into a destination of size 1024 + 571 | sprintf(pBuffer, "%s/%s", pFile->name_tmp, name); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c:575:34: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 1011 [-Wformat-overflow=] + 575 | sprintf(pBuffer, "ERROR: group %s does not exist", + | ^~ +../napi5.c:575:3: note: ‘sprintf’ output between 29 and 1052 bytes into a destination of size 1024 + 575 | sprintf(pBuffer, "ERROR: group %s does not exist", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 576 | pFile->name_tmp); + | ~~~~~~~~~~~~~~~~ +In function ‘readStringAttributeN’, + inlined from ‘NX5opengroup’ at ../napi5.c:611:10: +../napi5.c:171:3: warning: ‘strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] + 171 | strncpy(data, vdat, maxlen); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5getattra’: +../napi5.c:2540:4: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 2540 | strncpy(data, strdata, strlen(strdata)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5getdata’: +../napi5.c:1859:5: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1859 | strncpy(data, strdata, strlen(strdata)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5getnextentry’: +../napi5.c:1766:20: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 243 [-Wformat-overflow=] + 1766 | "ERROR: group %s does not exist", + | ^~ + 1767 | ph_name); + | ~~~~~~~ +../napi5.c:1765:5: note: ‘sprintf’ output between 29 and 1052 bytes into a destination of size 256 + 1765 | sprintf(pBuffer, + | ^~~~~~~~~~~~~~~~ + 1766 | "ERROR: group %s does not exist", + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 1767 | ph_name); + | ~~~~~~~~ +In function ‘readStringAttributeN’, + inlined from ‘NX5getnextentry’ at ../napi5.c:1781:9: +../napi5.c:171:3: warning: ‘strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] + 171 | strncpy(data, vdat, maxlen); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘readStringAttributeN’, + inlined from ‘NX5getgroupinfo_recurse’ at ../napi5.c:1496:4: +../napi5.c:171:3: warning: ‘strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] + 171 | strncpy(data, vdat, maxlen); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o napiu.obj -c ../napiu.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF omp_data_view.d -MT omp_data_view.obj ../omp_data_view.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_feature.d -MT nt_feature.obj ../nt_feature.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_base.d -MT nt_base.obj ../nt_base.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF montage.d -MT montage.obj ../montage.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF monitor.d -MT monitor.obj ../monitor.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF module.d -MT module.obj ../module.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF memory.d -MT memory.obj ../memory.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nxdataset.obj -c ../nxdataset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nxio.obj -c ../nxio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF map.d -MT map.obj ../map.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nxstack.obj -c ../nxstack.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nxxml.obj -c ../nxxml.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o stptok.obj -c ../stptok.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick_endian.d -MT magick_endian.obj ../magick_endian.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o NeXus.dll -shared -Wl,--out-implib,libNeXus.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ napi.obj napi5.obj napiu.obj nxdataset.obj nxio.obj nxstack.obj nxxml.obj stptok.obj -lhdf5 -lszip -lzlib -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick.d -MT magick.obj ../magick.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magic.d -MT magic.obj ../magic.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF log.d -MT log.obj ../log.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF locale.d -MT locale.obj ../locale.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF list.d -MT list.obj ../list.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF import.d -MT import.obj ../import.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF image.d -MT image.obj ../image.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF hclut.d -MT hclut.obj ../hclut.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gradient.d -MT gradient.obj ../gradient.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gem.d -MT gem.obj ../gem.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fx.d -MT fx.obj ../fx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF floats.d -MT floats.obj ../floats.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF export.d -MT export.obj ../export.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF error.d -MT error.obj ../error.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enum_strings.d -MT enum_strings.obj ../enum_strings.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enhance.d -MT enhance.obj ../enhance.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF effect.d -MT effect.obj ../effect.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF draw.d -MT draw.obj ../draw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF display.d -MT display.obj ../display.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF describe.d -MT describe.obj ../describe.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF deprecate.d -MT deprecate.obj ../deprecate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF delegate.d -MT delegate.obj ../delegate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF decorate.d -MT decorate.obj ../decorate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF constitute.d -MT constitute.obj ../constitute.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF confirm_access.d -MT confirm_access.obj ../confirm_access.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compress.d -MT compress.obj ../compress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF composite.d -MT composite.obj ../composite.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compare.d -MT compare.obj ../compare.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF command.d -MT command.obj ../command.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color_lookup.d -MT color_lookup.obj ../color_lookup.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colorspace.d -MT colorspace.obj ../colorspace.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colormap.d -MT colormap.obj ../colormap.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color.d -MT color.obj ../color.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF channel.d -MT channel.obj ../channel.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cdl.d -MT cdl.obj ../cdl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF blob.d -MT blob.obj ../blob.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bit_stream.d -MT bit_stream.obj ../bit_stream.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF average.d -MT average.obj ../average.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF attribute.d -MT attribute.obj ../attribute.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF annotate.d -MT annotate.obj ../annotate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF animate.d -MT animate.obj ../animate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o animate.obj -c ../animate.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../animate.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o annotate.obj -c ../annotate.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../annotate.c:41: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, + from ../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, + from ../annotate.c:64: +../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] + 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ + | +../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] + 310 | # pragma warning( disable : 4018 ) + | +../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] + 311 | # pragma warning( disable : 4244 ) + | +../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] + 312 | # pragma warning( disable : 4142 ) + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o attribute.obj -c ../attribute.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../attribute.c:40: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o average.obj -c ../average.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../average.c:17: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o bit_stream.obj -c ../bit_stream.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../bit_stream.c:13: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o cdl.obj -c ../cdl.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../cdl.c:14: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o blob.obj -c ../blob.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../blob.c:40: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../blob.c:64: +/builds/DATAnet/adurl/.cache/adsupport-master/include/bzlib.h:81:14: note: #pragma message: BZIP compiling as DLL import + 81 | # pragma message( "BZIP compiling as DLL import" ) + | ^~~~~~~ +../blob.c: In function ‘GmBlobReserveSize’: +../blob.c:502:27: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 502 | "Request to reserve %" MAGICK_OFF_F "u output bytes %s", + | ^~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../blob.c:40: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../blob.c:502:27: warning: format ‘%s’ expects argument of type ‘char *’, but argument 6 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] + 502 | "Request to reserve %" MAGICK_OFF_F "u output bytes %s", + | ^~~~~~~~~~~~~~~~~~~~~~ + 503 | size, + | ~~~~ + | | + | magick_off_t {aka long long int} +../blob.c:502:80: note: format string is defined here + 502 | "Request to reserve %" MAGICK_OFF_F "u output bytes %s", + | ~^ + | | + | char * + | %I64d +../blob.c:502:27: warning: too many arguments for format [-Wformat-extra-args] + 502 | "Request to reserve %" MAGICK_OFF_F "u output bytes %s", + | ^~~~~~~~~~~~~~~~~~~~~~ +../blob.c: In function ‘GmMapBlob’: +../blob.c:2337:8: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2337 | "Failed to mmap fd %d using %s mode at offset %" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../blob.c:40: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../blob.c:2337:8: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2337 | "Failed to mmap fd %d using %s mode at offset %" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../blob.c:40: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../blob.c:2337:8: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] + 2337 | "Failed to mmap fd %d using %s mode at offset %" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 2338 | MAGICK_OFF_F "u and length %" MAGICK_OFF_F + 2339 | "u (%d=\"%s\").",file,MapModeToString(mode),offset, + | ~~~~~~ + | | + | magick_off_t {aka long long int} +../blob.c:2339:13: note: format string is defined here + 2339 | "u (%d=\"%s\").",file,MapModeToString(mode),offset, + | ~^ + | | + | int + | %I64d +../blob.c:2337:8: warning: format ‘%s’ expects argument of type ‘char *’, but argument 9 has type ‘long long int’ [-Wformat=] + 2337 | "Failed to mmap fd %d using %s mode at offset %" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +...... + 2340 | (magick_off_t) length,errno,strerror(errno)); + | ~~~~~~~~~~~~~~~~~~~~~ + | | + | long long int +../blob.c:2339:18: note: format string is defined here + 2339 | "u (%d=\"%s\").",file,MapModeToString(mode),offset, + | ~^ + | | + | char * + | %I64d +../blob.c:2337:8: warning: too many arguments for format [-Wformat-extra-args] + 2337 | "Failed to mmap fd %d using %s mode at offset %" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../blob.c:2344:4: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2344 | "Mmapped fd %d using %s mode at offset %" MAGICK_OFF_F + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../blob.c:40: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../blob.c:2344:4: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2344 | "Mmapped fd %d using %s mode at offset %" MAGICK_OFF_F + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../blob.c:40: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../blob.c:2344:4: warning: format ‘%p’ expects argument of type ‘void *’, but argument 8 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] + 2344 | "Mmapped fd %d using %s mode at offset %" MAGICK_OFF_F + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 2345 | "u and length %" MAGICK_OFF_F "u to address %p", + 2346 | file,MapModeToString(mode),offset,(magick_off_t) length, + | ~~~~~~ + | | + | magick_off_t {aka long long int} +../blob.c:2345:49: note: format string is defined here + 2345 | "u and length %" MAGICK_OFF_F "u to address %p", + | ~^ + | | + | void * + | %I64d +../blob.c:2344:4: warning: too many arguments for format [-Wformat-extra-args] + 2344 | "Mmapped fd %d using %s mode at offset %" MAGICK_OFF_F + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o color.obj -c ../color.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../color.c:36: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o channel.obj -c ../channel.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../channel.c:37: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o colormap.obj -c ../colormap.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../colormap.c:17: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o colorspace.obj -c ../colorspace.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../colorspace.c:32: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o color_lookup.obj -c ../color_lookup.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../color_lookup.c:16: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o compare.obj -c ../compare.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../compare.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o composite.obj -c ../composite.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../composite.c:41: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o compress.obj -c ../compress.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../compress.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o confirm_access.obj -c ../confirm_access.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../confirm_access.c:13: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o command.obj -c ../command.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../command.c:40: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o constitute.obj -c ../constitute.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../constitute.c:45: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o delegate.obj -c ../delegate.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../delegate.c:43: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o decorate.obj -c ../decorate.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../decorate.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o deprecate.obj -c ../deprecate.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../deprecate.c:37: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o display.obj -c ../display.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../display.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o describe.obj -c ../describe.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../describe.c:17: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o draw.obj -c ../draw.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../draw.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../draw.c: In function ‘GmDrawComposite’: +../draw.c:2411:27: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 3 has type ‘size_t’ {aka ‘long long unsigned int’} [-Wformat=] + 2411 | FormatString(buffer,"%" MAGICK_SIZE_T_F "d bytes", (4L*blob_length/3L+4L)); + | ^~~ ~~~~~~~~~~~~~~~~~~~~~~ + | | + | size_t {aka long long unsigned int} +../draw.c:2411:48: note: format string is defined here + 2411 | FormatString(buffer,"%" MAGICK_SIZE_T_F "d bytes", (4L*blob_length/3L+4L)); + | ~~~~~~~~~~~~~~~~~~~~^ + | | + | long int +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o enhance.obj -c ../enhance.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../enhance.c:42: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o effect.obj -c ../effect.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../effect.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o enum_strings.obj -c ../enum_strings.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../enum_strings.c:14: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o error.obj -c ../error.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../error.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o floats.obj -c ../floats.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../floats.c:17: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o fx.obj -c ../fx.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../fx.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o gem.obj -c ../gem.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../gem.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o gradient.obj -c ../gradient.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../gradient.c:17: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o hclut.obj -c ../hclut.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../hclut.c:14: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o image.obj -c ../image.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../image.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o import.obj -c ../import.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../import.c:16: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o list.obj -c ../list.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../list.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o locale.obj -c ../locale.c +In file included from ../studio.h:196, + from ../locale.c:35: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o log.obj -c ../log.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../log.c:37: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o magic.obj -c ../magic.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../magic.c:36: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o magick.obj -c ../magick.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../magick.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o magick_endian.obj -c ../magick_endian.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../magick_endian.c:25: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o map.obj -c ../map.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../map.c:13: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o memory.obj -c ../memory.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../memory.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o module.obj -c ../module.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../module.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o export.obj -c ../export.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../export.c:16: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o monitor.obj -c ../monitor.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../monitor.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o montage.obj -c ../montage.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../montage.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o nt_base.obj -c ../nt_base.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../nt_base.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../nt_base.c: In function ‘NTdlopen’: +../nt_base.c:817:10: warning: unused variable ‘Err’ [-Wunused-variable] + 817 | DWORD Err = GetLastError(); + | ^~~ +../nt_base.c:805:8: warning: variable ‘Err’ set but not used [-Wunused-but-set-variable] + 805 | DWORD Err = GetLastError(); + | ^~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o omp_data_view.obj -c ../omp_data_view.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../omp_data_view.c:31: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o nt_feature.obj -c ../nt_feature.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../nt_feature.c:35: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o paint.obj -c ../paint.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../paint.c:37: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o operator.obj -c ../operator.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../operator.c:16: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o pixel_iterator.obj -c ../pixel_iterator.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pixel_iterator.c:15: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o pixel_cache.obj -c ../pixel_cache.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pixel_cache.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../pixel_cache.c: In function ‘GmCheckImagePixelLimits’: +../pixel_cache.c:1331:28: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 1331 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../pixel_cache.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../pixel_cache.c:1331:28: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘magick_int64_t’ {aka ‘long long int’} [-Wformat=] + 1331 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~~~~~~~ +../pixel_cache.c:1331:64: note: format string is defined here + 1331 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", + | ~~~~~~^ + | | + | char * + | %.1024I64d +../pixel_cache.c:1331:28: warning: too many arguments for format [-Wformat-extra-args] + 1331 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~~~~~~~ +../pixel_cache.c:1347:28: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 1347 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../pixel_cache.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../pixel_cache.c:1347:28: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘magick_int64_t’ {aka ‘long long int’} [-Wformat=] + 1347 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~~~~~~~ +../pixel_cache.c:1347:64: note: format string is defined here + 1347 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", + | ~~~~~~^ + | | + | char * + | %.1024I64d +../pixel_cache.c:1347:28: warning: too many arguments for format [-Wformat-extra-args] + 1347 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~~~~~~~ +../pixel_cache.c:1368:22: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../pixel_cache.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../pixel_cache.c:1368:22: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../pixel_cache.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../pixel_cache.c:1368:22: warning: format ‘%s’ expects argument of type ‘char *’, but argument 3 has type ‘magick_int64_t’ {aka ‘long long int’} [-Wformat=] + 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~ + 1369 | total_pixels, + | ~~~~~~~~~~~~ + | | + | magick_int64_t {aka long long int} +../pixel_cache.c:1368:75: note: format string is defined here + 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", + | ~~~~~~^ + | | + | char * + | %.1024I64d +../pixel_cache.c:1368:22: warning: too many arguments for format [-Wformat-extra-args] + 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~ +../pixel_cache.c: In function ‘SetNexus’: +../pixel_cache.c:4240:8: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 4240 | "Failed to allocate %" MAGICK_SIZE_T_F + | ^~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../pixel_cache.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../pixel_cache.c:4240:8: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘magick_uint64_t’ {aka ‘long long unsigned int’} [-Wformat=] + 4240 | "Failed to allocate %" MAGICK_SIZE_T_F + | ^~~~~~~~~~~~~~~~~~~~~~ +...... + 4245 | number_pixels, + | ~~~~~~~~~~~~~ + | | + | magick_uint64_t {aka long long unsigned int} +../pixel_cache.c:4242:59: note: format string is defined here + 4242 | "(number pixels=%" MAGICK_OFF_F "u, region width=%lu, " + | ~~^ + | | + | long unsigned int + | %I64u +../pixel_cache.c:4240:8: warning: too many arguments for format [-Wformat-extra-args] + 4240 | "Failed to allocate %" MAGICK_SIZE_T_F + | ^~~~~~~~~~~~~~~~~~~~~~ +../pixel_cache.c: In function ‘WriteCacheIndexes’: +../pixel_cache.c:4591:11: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 4591 | "Failed to write row %ld at file offset %" MAGICK_OFF_F + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../pixel_cache.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../pixel_cache.c:4591:11: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 7 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] + 4591 | "Failed to write row %ld at file offset %" MAGICK_OFF_F + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +...... + 4595 | row_offset, + | ~~~~~~~~~~ + | | + | magick_off_t {aka long long int} +../pixel_cache.c:4592:43: note: format string is defined here + 4592 | "d. Wrote %" MAGICK_SSIZE_T_F "d rather than %" + | ~~~~~~~~~~~~~~~~~~~~~^ + | | + | long int +../pixel_cache.c:4591:11: warning: format ‘%s’ expects argument of type ‘char *’, but argument 9 has type ‘long unsigned int’ [-Wformat=] + 4591 | "Failed to write row %ld at file offset %" MAGICK_OFF_F + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +...... + 4597 | (MAGICK_SIZE_T) length, + | ~~~~~~~~~~~~~~~~~~~~~~ + | | + | long unsigned int +../pixel_cache.c:4593:66: note: format string is defined here + 4593 | MAGICK_SIZE_T_F "u bytes (%s).", + | ~^ + | | + | char * + | %ld +../pixel_cache.c:4591:11: warning: too many arguments for format [-Wformat-extra-args] + 4591 | "Failed to write row %ld at file offset %" MAGICK_OFF_F + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../pixel_cache.c: In function ‘WriteCachePixels’: +../pixel_cache.c:4754:11: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 4754 | "Failed to write row %ld at file offset %" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../pixel_cache.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../pixel_cache.c:4754:11: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 7 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] + 4754 | "Failed to write row %ld at file offset %" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +...... + 4759 | row_offset, + | ~~~~~~~~~~ + | | + | magick_off_t {aka long long int} +../pixel_cache.c:4756:57: note: format string is defined here + 4755 | MAGICK_OFF_F "d. Wrote %" + | ~~ + 4756 | MAGICK_SSIZE_T_F "d rather than %" + | ~~~~~~~~~~~~~~~~~~^ + | | + | long int +../pixel_cache.c:4754:11: warning: format ‘%s’ expects argument of type ‘char *’, but argument 9 has type ‘long unsigned int’ [-Wformat=] + 4754 | "Failed to write row %ld at file offset %" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +...... + 4761 | (MAGICK_SIZE_T) length, + | ~~~~~~~~~~~~~~~~~~~~~~ + | | + | long unsigned int +../pixel_cache.c:4757:66: note: format string is defined here + 4757 | MAGICK_SIZE_T_F "u bytes (%s).", + | ~^ + | | + | char * + | %ld +../pixel_cache.c:4754:11: warning: too many arguments for format [-Wformat-extra-args] + 4754 | "Failed to write row %ld at file offset %" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o plasma.obj -c ../plasma.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../plasma.c:17: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o PreRvIcccm.obj -c ../PreRvIcccm.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../PreRvIcccm.c:35: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o profile.obj -c ../profile.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../profile.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o random.obj -c ../random.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../random.c:15: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o quantize.obj -c ../quantize.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../quantize.c:174: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o registry.obj -c ../registry.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../registry.c:37: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o resize.obj -c ../resize.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../resize.c:35: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o resource.obj -c ../resource.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../resource.c:41: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o segment.obj -c ../segment.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../segment.c:80: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o render.obj -c ../render.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../render.c:43: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../render.c: In function ‘GmDrawImage’: +../render.c:2462:49: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2462 | FormatString(resource_str,"%" MAGICK_INT64_F "d", width_resource_limit); + | ^~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../render.c:43: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../render.c:2462:49: warning: too many arguments for format [-Wformat-extra-args] + 2462 | FormatString(resource_str,"%" MAGICK_INT64_F "d", width_resource_limit); + | ^~~ +../render.c:2470:49: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2470 | FormatString(resource_str,"%" MAGICK_INT64_F "d", hight_resource_limit); + | ^~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../render.c:43: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../render.c:2470:49: warning: too many arguments for format [-Wformat-extra-args] + 2470 | FormatString(resource_str,"%" MAGICK_INT64_F "d", hight_resource_limit); + | ^~~ +../render.c:2478:49: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2478 | FormatString(resource_str,"%" MAGICK_INT64_F "d", pixels_resource_limit); + | ^~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../render.c:43: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../render.c:2478:49: warning: too many arguments for format [-Wformat-extra-args] + 2478 | FormatString(resource_str,"%" MAGICK_INT64_F "d", pixels_resource_limit); + | ^~~ +../render.c:2494:52: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2494 | FormatString(gradient_size_str,"%" MAGICK_INT64_F "dx%" MAGICK_INT64_F "d", + | ^~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../render.c:43: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../render.c:2494:52: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2494 | FormatString(gradient_size_str,"%" MAGICK_INT64_F "dx%" MAGICK_INT64_F "d", + | ^~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../render.c:43: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../render.c:2494:52: warning: too many arguments for format [-Wformat-extra-args] + 2494 | FormatString(gradient_size_str,"%" MAGICK_INT64_F "dx%" MAGICK_INT64_F "d", + | ^~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o semaphore.obj -c ../semaphore.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../semaphore.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o shear.obj -c ../shear.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../shear.c:44: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o signature.obj -c ../signature.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../signature.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o tempfile.obj -c ../tempfile.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../tempfile.c:12: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o statistics.obj -c ../statistics.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../statistics.c:17: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o timer.obj -c ../timer.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../timer.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o texture.obj -c ../texture.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../texture.c:16: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o tsd.obj -c ../tsd.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../tsd.c:15: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o transform.obj -c ../transform.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../transform.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o type.obj -c ../type.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../type.c:37: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o unix_port.obj -c ../unix_port.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../unix_port.c:36: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o version.obj -c ../version.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../version.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o widget.obj -c ../widget.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../widget.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o xwindow.obj -c ../xwindow.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../xwindow.c:37: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o utility.obj -c ../utility.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../utility.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../utility.c: In function ‘GmMagickSpawnVP’: +../utility.c:4046:37: warning: passing argument 3 of ‘spawnvp’ from incompatible pointer type [-Wincompatible-pointer-types] + 4046 | status = spawnvp(_P_WAIT, file, (const char * const *) argv); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ + | | + | const char * const* +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/nt_base.h:26, + from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:222, + from ../utility.c:39: +/usr/share/mingw-w64/include/process.h:198:74: note: expected ‘char * const*’ but argument is of type ‘const char * const*’ + 198 | _CRTIMP intptr_t __cdecl spawnvp(int,const char *_Filename,char *const _ArgList[]) __MINGW_ATTRIB_DEPRECATED_MSVC2005; + | ~~~~~~~~~~~~^~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o analyze_Win32.obj -c ../analyze_Win32.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../analyze_Win32.c:17: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o Magick.dll -shared -Wl,--out-implib,libMagick.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ animate.obj annotate.obj attribute.obj average.obj bit_stream.obj blob.obj cdl.obj channel.obj color.obj colormap.obj colorspace.obj color_lookup.obj command.obj compare.obj composite.obj compress.obj confirm_access.obj constitute.obj decorate.obj delegate.obj deprecate.obj describe.obj display.obj draw.obj effect.obj enhance.obj enum_strings.obj error.obj export.obj floats.obj fx.obj gem.obj gradient.obj hclut.obj image.obj import.obj list.obj locale.obj log.obj magic.obj magick.obj magick_endian.obj map.obj memory.obj module.obj monitor.obj montage.obj nt_base.obj nt_feature.obj omp_data_view.obj operator.obj paint.obj pixel_cache.obj pixel_iterator.obj plasma.obj PreRvIcccm.obj profile.obj quantize.obj random.obj registry.obj render.obj resize.obj resource.obj segment.obj semaphore.obj shear.obj signature.obj statistics.obj tempfile.obj texture.obj timer.obj transform.obj tsd.obj type.obj unix_port.obj utility.obj version.obj widget.obj xwindow.obj analyze_Win32.obj -lbzlib -llcms -lttf -lzlib -ladvapi32 -luser32 -lgdi32 -lws2_32 +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make -C ./filters install +make -C ./coders install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' +mkdir -p O.Common +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' +mkdir -p O.Common +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF static.d ../static.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -MM -MF analyze.d ../analyze.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF yuv.d ../yuv.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xwd.d ../xwd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xtrn.d ../xtrn.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xpm.d ../xpm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xcf.d ../xcf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xc.d ../xc.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -c ../analyze.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xbm.d ../xbm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF x.d ../x.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +/usr/bin/ar -rc libfilters.a analyze.o +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +/usr/bin/ranlib libfilters.a +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wpg.d ../wpg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +g++ -o libfilters.so -shared -fPIC -Wl,-hlibfilters.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 analyze.o -lMagick -lttf -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ + T_A=windows-x64-mingw install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wmf.d ../wmf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF webp.d ../webp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wbmp.d ../wbmp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF viff.d ../viff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vid.d ../vid.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -MM -MF analyze.d -MT analyze.obj ../analyze.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vicar.d ../vicar.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uyvy.d ../uyvy.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF url.d ../url.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uil.d ../uil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF txt.d ../txt.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ttf.d ../ttf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF topol.d ../topol.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tim.d ../tim.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tile.d ../tile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tiff.d ../tiff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tga.d ../tga.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF svg.d ../svg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -o analyze.obj -c ../analyze.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../analyze.c:30: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sun.d ../sun.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o filters.dll -shared -Wl,--out-implib,libfilters.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ analyze.obj -lMagick -lttf -lws2_32 +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF stegano.d ../stegano.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sgi.d ../sgi.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sfw.d ../sfw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sct.d ../sct.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rle.d ../rle.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rla.d ../rla.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rgb.d ../rgb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pwp.d ../pwp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF psd.d ../psd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps3.d ../ps3.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps2.d ../ps2.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps.d ../ps.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF preview.d ../preview.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pnm.d ../pnm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF png.d ../png.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF plasma.d ../plasma.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pix.d ../pix.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pict.d ../pict.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdf.d ../pdf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdb.d ../pdb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcx.d ../pcx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcl.d ../pcl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcd.d ../pcd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF palm.d ../palm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF otb.d ../otb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF null.d ../null.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mvg.d ../mvg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mtv.d ../mtv.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpr.d ../mpr.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF msl.d ../msl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpeg.d ../mpeg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpc.d ../mpc.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mono.d ../mono.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF miff.d ../miff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF meta.d ../meta.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF matte.d ../matte.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mat.d ../mat.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF map.d ../map.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mac.d ../mac.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF logo.d ../logo.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF locale.d ../locale.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF label.d ../label.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jpeg.d ../jpeg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jp2.d ../jp2.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jnx.d ../jnx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jbig.d ../jbig.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF info.d ../info.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF identity.d ../identity.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF icon.d ../icon.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF html.d ../html.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hrz.d ../hrz.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF histogram.d ../histogram.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hdf.d ../hdf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gray.d ../gray.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gradient.d ../gradient.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gif.d ../gif.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fpx.d ../fpx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fits.d ../fits.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fax.d ../fax.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ept.d ../ept.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF emf.d ../emf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dpx.d ../dpx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dps.d ../dps.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dib.d ../dib.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcraw.d ../dcraw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcm.d ../dcm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cut.d ../cut.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cmyk.d ../cmyk.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF clipboard.d ../clipboard.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cineon.d ../cineon.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF caption.d ../caption.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cals.d ../cals.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF bmp.d ../bmp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avs.d ../avs.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avi.d ../avi.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF art.d ../art.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../art.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../avs.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../avi.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cals.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../caption.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cineon.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../clipboard.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cmyk.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../bmp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cut.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dcraw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dcm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dib.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dps.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../emf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ept.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../fax.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../fits.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../fpx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../gif.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../gradient.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dpx.c +In file included from /usr/include/string.h:495, + from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:126, + from ../dpx.c:123: +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3865:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3865:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3866:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3866:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3891:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3891:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3895:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3895:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3896:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3896:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3897:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3897:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3910:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3910:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3911:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3911:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3912:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3912:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3913:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3913:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3914:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3914:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3915:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3915:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3921:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3921:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3922:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3922:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../hdf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../gray.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../hrz.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../histogram.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../html.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../icon.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../identity.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../info.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jbig.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jnx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jp2.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../label.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jpeg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../locale.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mac.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../logo.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../map.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../matte.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mat.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../meta.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mono.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mpc.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../miff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mpr.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mpeg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mtv.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mvg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../null.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../otb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../palm.c +../palm.c:395:3: warning: ‘PalmPalette’ defined but not used [-Wunused-const-variable=] + 395 | PalmPalette[256][3] = + | ^~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../msl.c +In file included from /usr/include/string.h:495, + from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:126, + from ../msl.c:39: +In function ‘strncpy’, + inlined from ‘MSLStartElement’ at ../msl.c:3262:36: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin___strncpy_chk’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../msl.c: In function ‘MSLStartElement’: +../msl.c:3258:41: note: length computed here + 3258 | len = (int) strlen( value ); + | ^~~~~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pcl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pcd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pdb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pcx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pdf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pix.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pict.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:67, + from ../pict.c:38: +../pict.c: In function ‘WritePICTImage’: +../../../../include/magick/symbols.h:552:22: warning: argument 1 value ‘18446744073709551488’ exceeds maximum object size 9223372036854775807 [-Walloc-size-larger-than=] + 552 | #define MagickMalloc GmMagickMalloc +../../../../include/magick/memory.h:47:12: note: in expansion of macro ‘MagickMalloc’ + 47 | ((type) MagickMalloc((size_t) (size)))) + | ^~~~~~~~~~~~ +../pict.c:1654:12: note: in expansion of macro ‘MagickAllocateMemory’ + 1654 | scanline=MagickAllocateMemory(unsigned char *,row_bytes); + | ^~~~~~~~~~~~~~~~~~~~ +../../../../include/magick/symbols.h:552:22: note: in a call to allocation function ‘GmMagickMalloc’ declared here + 552 | #define MagickMalloc GmMagickMalloc + | ^~~~~~~~~~~~~~ +../../../../include/magick/memory.h:24:4: note: in expansion of macro ‘MagickMalloc’ + 24 | *MagickMalloc(const size_t size) MAGICK_FUNC_MALLOC MAGICK_FUNC_ALLOC_SIZE_1ARG(1), + | ^~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../plasma.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pnm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../preview.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ps.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ps2.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ps3.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../psd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pwp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../png.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../rla.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../rgb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sct.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sfw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../rle.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../stegano.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sgi.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sun.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tga.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../svg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tim.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../topol.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ttf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tiff.c +In file included from ../../../../include/os/Linux/jpeglib.h:27, + from ../tiff.c:78: +../../../../include/os/Linux/jmorecfg.h:248: warning: "EXTERN" redefined + 248 | #define EXTERN(type) extern type + | +In file included from ../tiff.c:64: +../../../../include/os/Linux/tiffio.h:91: note: this is the location of the previous definition + 91 | # define EXTERN extern + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../txt.c +../txt.c: In function ‘ReadTXTImage’: +../txt.c:940:25: warning: comparison between pointer and zero character constant [-Wpointer-compare] + 940 | if (draw_info->text != '\0') + | ^~ +../txt.c:940:9: note: did you mean to dereference the pointer? + 940 | if (draw_info->text != '\0') + | ^ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../uil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../url.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../uyvy.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../vicar.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../vid.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../wbmp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../viff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../wmf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../webp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../x.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../wpg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xbm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xc.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xpm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xcf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xtrn.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xwd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../yuv.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../static.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +/usr/bin/ar -rc libcoders.a art.o avi.o avs.o bmp.o cals.o caption.o cineon.o clipboard.o cmyk.o cut.o dcm.o dcraw.o dib.o dps.o dpx.o emf.o ept.o fax.o fits.o fpx.o gif.o gradient.o gray.o hdf.o histogram.o hrz.o html.o icon.o identity.o info.o jbig.o jnx.o jp2.o jpeg.o label.o locale.o logo.o mac.o map.o mat.o matte.o meta.o miff.o mono.o mpc.o mpeg.o mpr.o msl.o mtv.o mvg.o null.o otb.o palm.o pcd.o pcl.o pcx.o pdb.o pdf.o pict.o pix.o plasma.o png.o pnm.o preview.o ps.o ps2.o ps3.o psd.o pwp.o rgb.o rla.o rle.o sct.o sfw.o sgi.o stegano.o sun.o svg.o tga.o tiff.o tile.o tim.o topol.o ttf.o txt.o uil.o url.o uyvy.o vicar.o vid.o viff.o wbmp.o webp.o wmf.o wpg.o x.o xbm.o xc.o xcf.o xpm.o xtrn.o xwd.o yuv.o static.o +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +/usr/bin/ranlib libcoders.a +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +g++ -o libcoders.so -shared -fPIC -Wl,-hlibcoders.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 art.o avi.o avs.o bmp.o cals.o caption.o cineon.o clipboard.o cmyk.o cut.o dcm.o dcraw.o dib.o dps.o dpx.o emf.o ept.o fax.o fits.o fpx.o gif.o gradient.o gray.o hdf.o histogram.o hrz.o html.o icon.o identity.o info.o jbig.o jnx.o jp2.o jpeg.o label.o locale.o logo.o mac.o map.o mat.o matte.o meta.o miff.o mono.o mpc.o mpeg.o mpr.o msl.o mtv.o mvg.o null.o otb.o palm.o pcd.o pcl.o pcx.o pdb.o pdf.o pict.o pix.o plasma.o png.o pnm.o preview.o ps.o ps2.o ps3.o psd.o pwp.o rgb.o rla.o rle.o sct.o sfw.o sgi.o stegano.o sun.o svg.o tga.o tiff.o tile.o tim.o topol.o ttf.o txt.o uil.o url.o uyvy.o vicar.o vid.o viff.o wbmp.o webp.o wmf.o wpg.o x.o xbm.o xc.o xcf.o xpm.o xtrn.o xwd.o yuv.o static.o -lbzlib -ljbig -ljp2 -lMagick -lpng -lttf -lwebp -lwmf -ltiff -ljpeg -lxml2 -lnanohttp_stream -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ + T_A=windows-x64-mingw install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF yuv.d -MT yuv.obj ../yuv.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF static.d -MT static.obj ../static.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xwd.d -MT xwd.obj ../xwd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xpm.d -MT xpm.obj ../xpm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xtrn.d -MT xtrn.obj ../xtrn.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xcf.d -MT xcf.obj ../xcf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xc.d -MT xc.obj ../xc.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xbm.d -MT xbm.obj ../xbm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF x.d -MT x.obj ../x.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wpg.d -MT wpg.obj ../wpg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wmf.d -MT wmf.obj ../wmf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF webp.d -MT webp.obj ../webp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wbmp.d -MT wbmp.obj ../wbmp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF viff.d -MT viff.obj ../viff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vid.d -MT vid.obj ../vid.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vicar.d -MT vicar.obj ../vicar.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uyvy.d -MT uyvy.obj ../uyvy.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF url.d -MT url.obj ../url.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uil.d -MT uil.obj ../uil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF txt.d -MT txt.obj ../txt.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ttf.d -MT ttf.obj ../ttf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF topol.d -MT topol.obj ../topol.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tim.d -MT tim.obj ../tim.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tile.d -MT tile.obj ../tile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tiff.d -MT tiff.obj ../tiff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tga.d -MT tga.obj ../tga.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF svg.d -MT svg.obj ../svg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sun.d -MT sun.obj ../sun.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF stegano.d -MT stegano.obj ../stegano.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sgi.d -MT sgi.obj ../sgi.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sfw.d -MT sfw.obj ../sfw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sct.d -MT sct.obj ../sct.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rle.d -MT rle.obj ../rle.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rla.d -MT rla.obj ../rla.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rgb.d -MT rgb.obj ../rgb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pwp.d -MT pwp.obj ../pwp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF psd.d -MT psd.obj ../psd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps3.d -MT ps3.obj ../ps3.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps2.d -MT ps2.obj ../ps2.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps.d -MT ps.obj ../ps.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF preview.d -MT preview.obj ../preview.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pnm.d -MT pnm.obj ../pnm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF plasma.d -MT plasma.obj ../plasma.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF png.d -MT png.obj ../png.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pict.d -MT pict.obj ../pict.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pix.d -MT pix.obj ../pix.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdb.d -MT pdb.obj ../pdb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdf.d -MT pdf.obj ../pdf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcl.d -MT pcl.obj ../pcl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcx.d -MT pcx.obj ../pcx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcd.d -MT pcd.obj ../pcd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF palm.d -MT palm.obj ../palm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF null.d -MT null.obj ../null.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF otb.d -MT otb.obj ../otb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mvg.d -MT mvg.obj ../mvg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mtv.d -MT mtv.obj ../mtv.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpr.d -MT mpr.obj ../mpr.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF msl.d -MT msl.obj ../msl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpeg.d -MT mpeg.obj ../mpeg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpc.d -MT mpc.obj ../mpc.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mono.d -MT mono.obj ../mono.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF miff.d -MT miff.obj ../miff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF meta.d -MT meta.obj ../meta.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF matte.d -MT matte.obj ../matte.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mat.d -MT mat.obj ../mat.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF map.d -MT map.obj ../map.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mac.d -MT mac.obj ../mac.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF logo.d -MT logo.obj ../logo.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF locale.d -MT locale.obj ../locale.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF label.d -MT label.obj ../label.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jpeg.d -MT jpeg.obj ../jpeg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jp2.d -MT jp2.obj ../jp2.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jnx.d -MT jnx.obj ../jnx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jbig.d -MT jbig.obj ../jbig.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF info.d -MT info.obj ../info.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF identity.d -MT identity.obj ../identity.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF icon.d -MT icon.obj ../icon.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF html.d -MT html.obj ../html.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hrz.d -MT hrz.obj ../hrz.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF histogram.d -MT histogram.obj ../histogram.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hdf.d -MT hdf.obj ../hdf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gray.d -MT gray.obj ../gray.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gradient.d -MT gradient.obj ../gradient.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gif.d -MT gif.obj ../gif.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fpx.d -MT fpx.obj ../fpx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fits.d -MT fits.obj ../fits.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fax.d -MT fax.obj ../fax.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ept.d -MT ept.obj ../ept.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF emf.d -MT emf.obj ../emf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dpx.d -MT dpx.obj ../dpx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dps.d -MT dps.obj ../dps.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dib.d -MT dib.obj ../dib.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcraw.d -MT dcraw.obj ../dcraw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcm.d -MT dcm.obj ../dcm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cut.d -MT cut.obj ../cut.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cmyk.d -MT cmyk.obj ../cmyk.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF clipboard.d -MT clipboard.obj ../clipboard.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cineon.d -MT cineon.obj ../cineon.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF caption.d -MT caption.obj ../caption.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cals.d -MT cals.obj ../cals.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF bmp.d -MT bmp.obj ../bmp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avs.d -MT avs.obj ../avs.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avi.d -MT avi.obj ../avi.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF art.d -MT art.obj ../art.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o art.obj -c ../art.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../art.c:36: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o avi.obj -c ../avi.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../avi.c:37: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o avs.obj -c ../avs.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../avs.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o cals.obj -c ../cals.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../cals.c:35: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o caption.obj -c ../caption.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../caption.c:37: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o cineon.obj -c ../cineon.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../cineon.c:40: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o clipboard.obj -c ../clipboard.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../clipboard.c:33: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o cmyk.obj -c ../cmyk.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../cmyk.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o bmp.obj -c ../bmp.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../bmp.c:39: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../bmp.c: In function ‘ReadBMPImage’: +../bmp.c:610:9: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 610 | " BMP size: %lu, File size: %" MAGICK_OFF_F "u", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../bmp.c:39: +../../../../include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../bmp.c:610:9: warning: too many arguments for format [-Wformat-extra-args] + 610 | " BMP size: %lu, File size: %" MAGICK_OFF_F "u", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../bmp.c:843:29: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 843 | "File size: Claimed=%lu, Actual=%" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../bmp.c:39: +../../../../include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../bmp.c:843:29: warning: too many arguments for format [-Wformat-extra-args] + 843 | "File size: Claimed=%lu, Actual=%" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o cut.obj -c ../cut.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../cut.c:36: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dcraw.obj -c ../dcraw.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../dcraw.c:27: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dcm.obj -c ../dcm.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../dcm.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dps.obj -c ../dps.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../dps.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dib.obj -c ../dib.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../dib.c:37: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o emf.obj -c ../emf.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../emf.c:35: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ept.obj -c ../ept.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../ept.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o fax.obj -c ../fax.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../fax.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dpx.obj -c ../dpx.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../dpx.c:123: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../dpx.c: In function ‘WriteDPXImage’: +../dpx.c:4067:28: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 4067 | (void) fprintf(stderr,"### Descriptor %u offset %u, TellBlob says %" MAGICK_OFF_F "d\n", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../dpx.c:123: +../../../../include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../dpx.c:4067:28: warning: too many arguments for format [-Wformat-extra-args] + 4067 | (void) fprintf(stderr,"### Descriptor %u offset %u, TellBlob says %" MAGICK_OFF_F "d\n", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:4067:28: warning: unknown conversion type character ‘l’ in format [-Wformat=] +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../dpx.c:123: +../../../../include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../dpx.c:4067:28: warning: too many arguments for format [-Wformat-extra-args] + 4067 | (void) fprintf(stderr,"### Descriptor %u offset %u, TellBlob says %" MAGICK_OFF_F "d\n", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:4391:24: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 4391 | (void) fprintf(stderr,"### File length %u, TellBlob says %" MAGICK_OFF_F "d\n", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../dpx.c:123: +../../../../include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../dpx.c:4391:24: warning: too many arguments for format [-Wformat-extra-args] + 4391 | (void) fprintf(stderr,"### File length %u, TellBlob says %" MAGICK_OFF_F "d\n", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:4391:24: warning: unknown conversion type character ‘l’ in format [-Wformat=] +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../dpx.c:123: +../../../../include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../dpx.c:4391:24: warning: too many arguments for format [-Wformat-extra-args] + 4391 | (void) fprintf(stderr,"### File length %u, TellBlob says %" MAGICK_OFF_F "d\n", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3865:3: note: in expansion of macro ‘AttributeToString’ + 3865 | AttributeToString(image_info,image,"DPX:file.project.name",dpx_file_info.project_name); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3865:3: note: in expansion of macro ‘AttributeToString’ + 3865 | AttributeToString(image_info,image,"DPX:file.project.name",dpx_file_info.project_name); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3866:3: note: in expansion of macro ‘AttributeToString’ + 3866 | AttributeToString(image_info,image,"DPX:file.copyright",dpx_file_info.copyright); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3866:3: note: in expansion of macro ‘AttributeToString’ + 3866 | AttributeToString(image_info,image,"DPX:file.copyright",dpx_file_info.copyright); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3891:3: note: in expansion of macro ‘AttributeToString’ + 3891 | AttributeToString(image_info,image,"DPX:source.filename",dpx_source_info.source_image_filename); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3891:3: note: in expansion of macro ‘AttributeToString’ + 3891 | AttributeToString(image_info,image,"DPX:source.filename",dpx_source_info.source_image_filename); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3895:3: note: in expansion of macro ‘AttributeToString’ + 3895 | AttributeToString(image_info,image,"DPX:source.creation.datetime",dpx_source_info.source_image_datetime); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3895:3: note: in expansion of macro ‘AttributeToString’ + 3895 | AttributeToString(image_info,image,"DPX:source.creation.datetime",dpx_source_info.source_image_datetime); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3896:3: note: in expansion of macro ‘AttributeToString’ + 3896 | AttributeToString(image_info,image,"DPX:source.device.name",dpx_source_info.input_device_name); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3896:3: note: in expansion of macro ‘AttributeToString’ + 3896 | AttributeToString(image_info,image,"DPX:source.device.name",dpx_source_info.input_device_name); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3897:3: note: in expansion of macro ‘AttributeToString’ + 3897 | AttributeToString(image_info,image,"DPX:source.device.serialnumber",dpx_source_info.input_device_serialnumber); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3897:3: note: in expansion of macro ‘AttributeToString’ + 3897 | AttributeToString(image_info,image,"DPX:source.device.serialnumber",dpx_source_info.input_device_serialnumber); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3910:3: note: in expansion of macro ‘AttributeToString’ + 3910 | AttributeToString(image_info,image,"DPX:mp.film.manufacturer.id",dpx_mp_info.film_mfg_id_code); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3910:3: note: in expansion of macro ‘AttributeToString’ + 3910 | AttributeToString(image_info,image,"DPX:mp.film.manufacturer.id",dpx_mp_info.film_mfg_id_code); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3911:3: note: in expansion of macro ‘AttributeToString’ + 3911 | AttributeToString(image_info,image,"DPX:mp.film.type",dpx_mp_info.film_type); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3911:3: note: in expansion of macro ‘AttributeToString’ + 3911 | AttributeToString(image_info,image,"DPX:mp.film.type",dpx_mp_info.film_type); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3912:3: note: in expansion of macro ‘AttributeToString’ + 3912 | AttributeToString(image_info,image,"DPX:mp.perfs.offset",dpx_mp_info.perfs_offset); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3912:3: note: in expansion of macro ‘AttributeToString’ + 3912 | AttributeToString(image_info,image,"DPX:mp.perfs.offset",dpx_mp_info.perfs_offset); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3913:3: note: in expansion of macro ‘AttributeToString’ + 3913 | AttributeToString(image_info,image,"DPX:mp.prefix",dpx_mp_info.prefix); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3913:3: note: in expansion of macro ‘AttributeToString’ + 3913 | AttributeToString(image_info,image,"DPX:mp.prefix",dpx_mp_info.prefix); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3914:3: note: in expansion of macro ‘AttributeToString’ + 3914 | AttributeToString(image_info,image,"DPX:mp.count",dpx_mp_info.count); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3914:3: note: in expansion of macro ‘AttributeToString’ + 3914 | AttributeToString(image_info,image,"DPX:mp.count",dpx_mp_info.count); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3915:3: note: in expansion of macro ‘AttributeToString’ + 3915 | AttributeToString(image_info,image,"DPX:mp.format",dpx_mp_info.format); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3915:3: note: in expansion of macro ‘AttributeToString’ + 3915 | AttributeToString(image_info,image,"DPX:mp.format",dpx_mp_info.format); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3921:3: note: in expansion of macro ‘AttributeToString’ + 3921 | AttributeToString(image_info,image,"DPX:mp.frame.id",dpx_mp_info.frame_id); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3921:3: note: in expansion of macro ‘AttributeToString’ + 3921 | AttributeToString(image_info,image,"DPX:mp.frame.id",dpx_mp_info.frame_id); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3922:3: note: in expansion of macro ‘AttributeToString’ + 3922 | AttributeToString(image_info,image,"DPX:mp.slate.info",dpx_mp_info.slate_info); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3922:3: note: in expansion of macro ‘AttributeToString’ + 3922 | AttributeToString(image_info,image,"DPX:mp.slate.info",dpx_mp_info.slate_info); + | ^~~~~~~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o fits.obj -c ../fits.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../fits.c:40: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ output truncated before terminating nul copying 30 bytes from a string of the same length [-Wstringop-truncation] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ output truncated before terminating nul copying 30 bytes from a string of the same length [-Wstringop-truncation] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ output truncated before terminating nul copying 3 bytes from a string of the same length [-Wstringop-truncation] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../fits.c: In function ‘WriteFITSImage’: +../fits.c:670:9: note: length computed here + 670 | len = strlen(data); + | ^~~~~~~~~~~~ +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../fits.c: In function ‘WriteFITSImage’: +../fits.c:670:9: note: length computed here + 670 | len = strlen(data); + | ^~~~~~~~~~~~ +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../fits.c: In function ‘WriteFITSImage’: +../fits.c:670:9: note: length computed here + 670 | len = strlen(data); + | ^~~~~~~~~~~~ +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../fits.c: In function ‘WriteFITSImage’: +../fits.c:670:9: note: length computed here + 670 | len = strlen(data); + | ^~~~~~~~~~~~ +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../fits.c: In function ‘WriteFITSImage’: +../fits.c:670:9: note: length computed here + 670 | len = strlen(data); + | ^~~~~~~~~~~~ +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../fits.c: In function ‘WriteFITSImage’: +../fits.c:670:9: note: length computed here + 670 | len = strlen(data); + | ^~~~~~~~~~~~ +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../fits.c: In function ‘WriteFITSImage’: +../fits.c:670:9: note: length computed here + 670 | len = strlen(data); + | ^~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o fpx.obj -c ../fpx.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../fpx.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o gradient.obj -c ../gradient.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../gradient.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o gif.obj -c ../gif.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../gif.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o gray.obj -c ../gray.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../gray.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o hdf.obj -c ../hdf.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../hdf.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o histogram.obj -c ../histogram.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../histogram.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o hrz.obj -c ../hrz.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../hrz.c:34: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o html.obj -c ../html.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../html.c:39: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o icon.obj -c ../icon.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../icon.c:42: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o identity.obj -c ../identity.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../identity.c:13: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o info.obj -c ../info.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../info.c:13: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o jbig.obj -c ../jbig.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../jbig.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../jbig.c:56: +../../../../supportApp/GraphicsMagickSrc/jbig/libjbig/jbig.h:255: warning: ignoring #pragma warning [-Wunknown-pragmas] + 255 | # pragma warning( disable : 4273 ) + | +../../../../supportApp/GraphicsMagickSrc/jbig/libjbig/jbig.h:267: warning: ignoring #pragma warning [-Wunknown-pragmas] + 267 | # pragma warning( disable : 4018 ) + | +../../../../supportApp/GraphicsMagickSrc/jbig/libjbig/jbig.h:268: warning: ignoring #pragma warning [-Wunknown-pragmas] + 268 | # pragma warning( disable : 4244 ) + | +../../../../supportApp/GraphicsMagickSrc/jbig/libjbig/jbig.h:269: warning: ignoring #pragma warning [-Wunknown-pragmas] + 269 | # pragma warning( disable : 4142 ) + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o jnx.obj -c ../jnx.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../jnx.c:35: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o jp2.obj -c ../jp2.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../jp2.c:39: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jasper.h:65, + from ../jp2.c:74: +../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:17:14: note: #pragma message: JAS compiling as DLL import + 17 | # pragma message( "JAS compiling as DLL import" ) + | ^~~~~~~ +../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o label.obj -c ../label.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../label.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o jpeg.obj -c ../jpeg.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../jpeg.c:42: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o logo.obj -c ../logo.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../logo.c:42: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o locale.obj -c ../locale.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../locale.c:37: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mac.obj -c ../mac.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../mac.c:35: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o map.obj -c ../map.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../map.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o matte.obj -c ../matte.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../matte.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mat.obj -c ../mat.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../mat.c:39: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o meta.obj -c ../meta.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../meta.c:37: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mono.obj -c ../mono.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../mono.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o miff.obj -c ../miff.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../miff.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../miff.c:57: +../../../../include/bzlib.h:81:14: note: #pragma message: BZIP compiling as DLL import + 81 | # pragma message( "BZIP compiling as DLL import" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mpeg.obj -c ../mpeg.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../mpeg.c:36: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mpc.obj -c ../mpc.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../mpc.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mpr.obj -c ../mpr.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../mpr.c:37: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mtv.obj -c ../mtv.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../mtv.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mvg.obj -c ../mvg.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../mvg.c:36: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o msl.obj -c ../msl.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../msl.c:39: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../msl.c: In function ‘MSLStartElement’: +../msl.c:3262:36: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 3262 | (void) strncpy(tmp, value, (size_t) (len-1)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../msl.c:3258:41: note: length computed here + 3258 | len = (int) strlen( value ); + | ^~~~~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o null.obj -c ../null.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../null.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o otb.obj -c ../otb.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../otb.c:36: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o palm.obj -c ../palm.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../palm.c:51: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../palm.c:395:3: warning: ‘PalmPalette’ defined but not used [-Wunused-const-variable=] + 395 | PalmPalette[256][3] = + | ^~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pcl.obj -c ../pcl.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pcl.c:43: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pcd.obj -c ../pcd.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pcd.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pcx.obj -c ../pcx.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pcx.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pdb.obj -c ../pdb.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pdb.c:37: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pdf.obj -c ../pdf.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pdf.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pict.obj -c ../pict.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pict.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pix.obj -c ../pix.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pix.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o plasma.obj -c ../plasma.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../plasma.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pnm.obj -c ../pnm.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pnm.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o preview.obj -c ../preview.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../preview.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ps.obj -c ../ps.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../ps.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o png.obj -c ../png.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../png.c:58: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ps2.obj -c ../ps2.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../ps2.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o psd.obj -c ../psd.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../psd.c:39: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ps3.obj -c ../ps3.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../ps3.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pwp.obj -c ../pwp.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pwp.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o rgb.obj -c ../rgb.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../rgb.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o rla.obj -c ../rla.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../rla.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o sct.obj -c ../sct.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../sct.c:49: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o rle.obj -c ../rle.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../rle.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o sfw.obj -c ../sfw.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../sfw.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o stegano.obj -c ../stegano.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../stegano.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o sgi.obj -c ../sgi.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../sgi.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o sun.obj -c ../sun.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../sun.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o tga.obj -c ../tga.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../tga.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o svg.obj -c ../svg.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../svg.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o tile.obj -c ../tile.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../tile.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o tim.obj -c ../tim.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../tim.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o topol.obj -c ../topol.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../topol.c:35: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o tiff.obj -c ../tiff.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../tiff.c:41: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ttf.obj -c ../ttf.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../ttf.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o uil.obj -c ../uil.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../uil.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o txt.obj -c ../txt.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../txt.c:45: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../txt.c: In function ‘ReadTXTImage’: +../txt.c:940:25: warning: comparison between pointer and zero character constant [-Wpointer-compare] + 940 | if (draw_info->text != '\0') + | ^~ +../txt.c:940:9: note: did you mean to dereference the pointer? + 940 | if (draw_info->text != '\0') + | ^ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o url.obj -c ../url.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../url.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o uyvy.obj -c ../uyvy.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../uyvy.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o vicar.obj -c ../vicar.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../vicar.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o vid.obj -c ../vid.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../vid.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o wbmp.obj -c ../wbmp.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../wbmp.c:37: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o viff.obj -c ../viff.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../viff.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o webp.obj -c ../webp.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../webp.c:39: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../supportApp/GraphicsMagickSrc/webp/src/webp/decode.h:17, + from ../webp.c:60: +../../../../supportApp/GraphicsMagickSrc/webp/src/webp/./types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../supportApp/GraphicsMagickSrc/webp/src/webp/./types.h:49:16: note: #pragma message: libwebp compiling as DLL import + 49 | # pragma message( "libwebp compiling as DLL import" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o wmf.obj -c ../wmf.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../wmf.c:40: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, + from ../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, + from ../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, + from ../wmf.c:74: +../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] + 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ + | +../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] + 310 | # pragma warning( disable : 4018 ) + | +../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] + 311 | # pragma warning( disable : 4244 ) + | +../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] + 312 | # pragma warning( disable : 4142 ) + | +In file included from ../wmf.c:75: +../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:31:14: note: #pragma message: WMF compiling as DLL import + 31 | # pragma message( "WMF compiling as DLL import" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o wpg.obj -c ../wpg.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../wpg.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o x.obj -c ../x.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../x.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../x.c:48:3: warning: ‘WriteXImage’ declared ‘static’ but never defined [-Wunused-function] + 48 | WriteXImage(const ImageInfo *,Image *); + | ^~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xc.obj -c ../xc.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../xc.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xbm.obj -c ../xbm.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../xbm.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xpm.obj -c ../xpm.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../xpm.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xcf.obj -c ../xcf.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../xcf.c:37: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xwd.obj -c ../xwd.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../xwd.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../xwd.c:52:3: warning: ‘WriteXWDImage’ declared ‘static’ but never defined [-Wunused-function] + 52 | WriteXWDImage(const ImageInfo *,Image *); + | ^~~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xtrn.obj -c ../xtrn.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../xtrn.c:53: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../xtrn.c: In function ‘ReadXTRNImage’: +../xtrn.c:165:42: warning: format ‘%s’ expects argument of type ‘char *’, but argument 5 has type ‘char (*)[2053]’ [-Wformat=] + 165 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); + | ^~~ ~~~~~~~~~ + | | + | char (*)[2053] +../xtrn.c:165:88: note: format string is defined here + 165 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); + | ~^ + | | + | char * +../xtrn.c:165:42: warning: format ‘%s’ expects argument of type ‘char *’, but argument 5 has type ‘char (*)[2053]’ [-Wformat=] + 165 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); + | ^~~ ~~~~~~~~~ + | | + | char (*)[2053] +../xtrn.c:165:88: note: format string is defined here + 165 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); + | ~^ + | | + | char * +../xtrn.c:195:42: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[2053]’ [-Wformat=] + 195 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1,&filename); + | ^~~ ~~~~~~~~~ + | | + | char (*)[2053] +../xtrn.c:195:66: note: format string is defined here + 195 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1,&filename); + | ~^ + | | + | char * +../xtrn.c:195:42: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[2053]’ [-Wformat=] + 195 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1,&filename); + | ^~~ ~~~~~~~~~ + | | + | char (*)[2053] +../xtrn.c:195:66: note: format string is defined here + 195 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1,&filename); + | ~^ + | | + | char * +../xtrn.c: In function ‘WriteXTRNImage’: +../xtrn.c:460:46: warning: format ‘%s’ expects argument of type ‘char *’, but argument 5 has type ‘char (*)[2053]’ [-Wformat=] + 460 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", + | ^~~ + 461 | (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); + | ~~~~~~~~~ + | | + | char (*)[2053] +../xtrn.c:460:92: note: format string is defined here + 460 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", + | ~^ + | | + | char * +../xtrn.c:460:46: warning: format ‘%s’ expects argument of type ‘char *’, but argument 5 has type ‘char (*)[2053]’ [-Wformat=] + 460 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", + | ^~~ + 461 | (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); + | ~~~~~~~~~ + | | + | char (*)[2053] +../xtrn.c:460:92: note: format string is defined here + 460 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", + | ~^ + | | + | char * +../xtrn.c:503:46: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[2053]’ [-Wformat=] + 503 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", + | ^~~ + 504 | (MAGICK_SIZE_T *)¶m1,&filename); + | ~~~~~~~~~ + | | + | char (*)[2053] +../xtrn.c:503:70: note: format string is defined here + 503 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", + | ~^ + | | + | char * +../xtrn.c:503:46: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[2053]’ [-Wformat=] + 503 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", + | ^~~ + 504 | (MAGICK_SIZE_T *)¶m1,&filename); + | ~~~~~~~~~ + | | + | char (*)[2053] +../xtrn.c:503:70: note: format string is defined here + 503 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", + | ~^ + | | + | char * +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o static.obj -c ../static.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../static.c:39: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o yuv.obj -c ../yuv.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../yuv.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o coders.dll -shared -Wl,--out-implib,libcoders.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ art.obj avi.obj avs.obj bmp.obj cals.obj caption.obj cineon.obj clipboard.obj cmyk.obj cut.obj dcm.obj dcraw.obj dib.obj dps.obj dpx.obj emf.obj ept.obj fax.obj fits.obj fpx.obj gif.obj gradient.obj gray.obj hdf.obj histogram.obj hrz.obj html.obj icon.obj identity.obj info.obj jbig.obj jnx.obj jp2.obj jpeg.obj label.obj locale.obj logo.obj mac.obj map.obj mat.obj matte.obj meta.obj miff.obj mono.obj mpc.obj mpeg.obj mpr.obj msl.obj mtv.obj mvg.obj null.obj otb.obj palm.obj pcd.obj pcl.obj pcx.obj pdb.obj pdf.obj pict.obj pix.obj plasma.obj png.obj pnm.obj preview.obj ps.obj ps2.obj ps3.obj psd.obj pwp.obj rgb.obj rla.obj rle.obj sct.obj sfw.obj sgi.obj stegano.obj sun.obj svg.obj tga.obj tiff.obj tile.obj tim.obj topol.obj ttf.obj txt.obj uil.obj url.obj uyvy.obj vicar.obj vid.obj viff.obj wbmp.obj webp.obj wmf.obj wpg.obj x.obj xbm.obj xc.obj xcf.obj xpm.obj xtrn.obj xwd.obj yuv.obj static.obj -lbzlib -ljbig -ljp2 -lMagick -lpng -lttf -lwebp -lwmf -ltiff -ljpeg -lxml2 -lnanohttp_stream -lzlib -luser32 -lgdi32 -loleaut32 -lws2_32 +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make -C ./Magick++ install +make -C ./lib install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' +mkdir -p O.Common +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF TypeMetric.d ../TypeMetric.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Thread.d ../Thread.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF STL.d ../STL.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Pixels.d ../Pixels.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Montage.d ../Montage.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Options.d ../Options.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF ImageRef.d ../ImageRef.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Image.d ../Image.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Geometry.d ../Geometry.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Functions.d ../Functions.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Exception.d ../Exception.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Drawable.d ../Drawable.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Color.d ../Color.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF CoderInfo.d ../CoderInfo.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF BlobRef.d ../BlobRef.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Blob.d ../Blob.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +mkdir ../../../../../include/Magick++ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../BlobRef.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Blob.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../CoderInfo.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Color.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Exception.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Functions.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Geometry.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Drawable.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../ImageRef.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Montage.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Options.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Image.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Pixels.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Thread.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../TypeMetric.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../STL.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +/usr/bin/ar -rc libMagick++.a Blob.o BlobRef.o CoderInfo.o Color.o Drawable.o Exception.o Functions.o Geometry.o Image.o ImageRef.o Montage.o Options.o Pixels.o STL.o Thread.o TypeMetric.o +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +/usr/bin/ranlib libMagick++.a +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -o libMagick++.so -shared -fPIC -Wl,-hlibMagick++.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 Blob.o BlobRef.o CoderInfo.o Color.o Drawable.o Exception.o Functions.o Geometry.o Image.o ImageRef.o Montage.o Options.o Pixels.o STL.o Thread.o TypeMetric.o -lMagick -lcoders -Wl,-Bdynamic -lXext -lpthread -lm -lrt -ldl -lgcc +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ + T_A=windows-x64-mingw install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF TypeMetric.d -MT TypeMetric.obj ../TypeMetric.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF STL.d -MT STL.obj ../STL.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Thread.d -MT Thread.obj ../Thread.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Options.d -MT Options.obj ../Options.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Montage.d -MT Montage.obj ../Montage.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Pixels.d -MT Pixels.obj ../Pixels.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF ImageRef.d -MT ImageRef.obj ../ImageRef.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Image.d -MT Image.obj ../Image.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Geometry.d -MT Geometry.obj ../Geometry.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Functions.d -MT Functions.obj ../Functions.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Exception.d -MT Exception.obj ../Exception.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Drawable.d -MT Drawable.obj ../Drawable.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Color.d -MT Color.obj ../Color.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF CoderInfo.d -MT CoderInfo.obj ../CoderInfo.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF BlobRef.d -MT BlobRef.obj ../BlobRef.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Blob.d -MT Blob.obj ../Blob.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o BlobRef.obj -c ../BlobRef.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../BlobRef.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../BlobRef.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../BlobRef.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Blob.obj -c ../Blob.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Blob.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Blob.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Blob.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o CoderInfo.obj -c ../CoderInfo.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../CoderInfo.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../CoderInfo.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../CoderInfo.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Color.obj -c ../Color.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Color.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Color.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Color.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Exception.obj -c ../Exception.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Exception.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Exception.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Exception.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Functions.obj -c ../Functions.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Functions.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Functions.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Functions.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Drawable.obj -c ../Drawable.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Drawable.cpp:12: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Drawable.cpp:12: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Drawable.cpp:12: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Geometry.obj -c ../Geometry.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Geometry.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Geometry.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Geometry.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o ImageRef.obj -c ../ImageRef.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Magick++/ImageRef.h:14, + from ../ImageRef.cpp:13: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Magick++/ImageRef.h:14, + from ../ImageRef.cpp:13: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Magick++/ImageRef.h:14, + from ../ImageRef.cpp:13: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Montage.obj -c ../Montage.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Montage.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Montage.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Montage.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Options.obj -c ../Options.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Options.cpp:13: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Options.cpp:13: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Options.cpp:13: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Image.obj -c ../Image.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Image.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Image.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Image.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Pixels.obj -c ../Pixels.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Pixels.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Pixels.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Pixels.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o STL.obj -c ../STL.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Magick++/Image.h:11, + from ../STL.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Magick++/Image.h:11, + from ../STL.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Magick++/Image.h:11, + from ../STL.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o TypeMetric.obj -c ../TypeMetric.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Magick++/TypeMetric.h:13, + from ../TypeMetric.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Magick++/TypeMetric.h:13, + from ../TypeMetric.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Magick++/TypeMetric.h:13, + from ../TypeMetric.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Thread.obj -c ../Thread.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Magick++/Thread.h:13, + from ../Thread.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Magick++/Thread.h:13, + from ../Thread.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Magick++/Thread.h:13, + from ../Thread.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o Magick++.dll -shared -Wl,--out-implib,libMagick++.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ Blob.obj BlobRef.obj CoderInfo.obj Color.obj Drawable.obj Exception.obj Functions.obj Geometry.obj Image.obj ImageRef.obj Montage.obj Options.obj Pixels.obj STL.obj Thread.obj TypeMetric.obj -lMagick -lcoders -lws2_32 +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make -C /builds/DATAnet/adurl/.cache/adcore-R3-10 install +make -C ./configure install +make -C ./ADApp install +make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../.. +make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' +make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../.. +make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' +make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' +mkdir -p O.Common +make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' +make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ + T_A=linux-x86_64 install +make -C ./Db install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease +make -C O.windows-x64-mingw -f ../Makefile TOP=../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db/O.linux-x86_64' +mkdir ../../../db +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db/O.linux-x86_64' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease +make -C ./ADSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myAttributeFunctions.d ../myAttributeFunctions.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myTimeStampSource.d ../myTimeStampSource.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DUSE_TYPED_RSET -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parseAreaPrefixes.d ../parseAreaPrefixes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF functAttribute.d ../functAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF PVAttribute.d ../PVAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF CCDMultiTrack.d ../CCDMultiTrack.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF paramAttribute.d ../paramAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ADDriver.d ../ADDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF asynNDArrayDriver.d ../asynNDArrayDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArray.d ../NDArray.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Nothing to be done for 'install'. +make -C ./op install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayPool.d ../NDArrayPool.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[3]: Nothing to be done for 'install'. +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttributeList.d ../NDAttributeList.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttribute.d ../NDAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +Installing CFG file ../../../cfg/commonLibraryMakefile +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +Installing CFG file ../../../cfg/commonDriverMakefile +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +mkdir ../../../cfg +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +mkdir ../../../include +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +mkdir ../../../dbd +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDAttributeList.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDArray.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../asynNDArrayDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../ADDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../paramAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../CCDMultiTrack.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../PVAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDArrayPool.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DUSE_TYPED_RSET -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../parseAreaPrefixes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../functAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../myTimeStampSource.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../myAttributeFunctions.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +/usr/bin/ar -rc libADBase.a NDAttribute.o NDAttributeList.o NDArrayPool.o NDArray.o asynNDArrayDriver.o ADDriver.o paramAttribute.o CCDMultiTrack.o PVAttribute.o functAttribute.o parseAreaPrefixes.o myTimeStampSource.o myAttributeFunctions.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +/usr/bin/ranlib libADBase.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -o libADBase.so -shared -fPIC -Wl,-hlibADBase.so -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 NDAttribute.o NDAttributeList.o NDArrayPool.o NDArray.o asynNDArrayDriver.o ADDriver.o paramAttribute.o CCDMultiTrack.o PVAttribute.o functAttribute.o parseAreaPrefixes.o myTimeStampSource.o myAttributeFunctions.o -lasyn -ldbRecStd -ldbCore -lca -lCom -lxml2 -Wl,-Bdynamic -lpthread -lreadline -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myTimeStampSource.d -MT myTimeStampSource.obj ../myTimeStampSource.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -DUSE_TYPED_RSET -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parseAreaPrefixes.d -MT parseAreaPrefixes.obj ../parseAreaPrefixes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myAttributeFunctions.d -MT myAttributeFunctions.obj ../myAttributeFunctions.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF functAttribute.d -MT functAttribute.obj ../functAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF PVAttribute.d -MT PVAttribute.obj ../PVAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF CCDMultiTrack.d -MT CCDMultiTrack.obj ../CCDMultiTrack.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF paramAttribute.d -MT paramAttribute.obj ../paramAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ADDriver.d -MT ADDriver.obj ../ADDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF asynNDArrayDriver.d -MT asynNDArrayDriver.obj ../asynNDArrayDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArray.d -MT NDArray.obj ../NDArray.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttributeList.d -MT NDAttributeList.obj ../NDAttributeList.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayPool.d -MT NDArrayPool.obj ../NDArrayPool.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttribute.d -MT NDAttribute.obj ../NDAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDAttributeList.obj -c ../NDAttributeList.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDAttribute.obj -c ../NDAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDArray.obj -c ../NDArray.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o asynNDArrayDriver.obj -c ../asynNDArrayDriver.cpp +../asynNDArrayDriver.cpp: In member function ‘virtual asynStatus asynNDArrayDriver::createFilePath(const char*, int)’: +../asynNDArrayDriver.cpp:134:11: warning: unused variable ‘saveptr’ [-Wunused-variable] + 134 | char* saveptr; + | ^~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ADDriver.obj -c ../ADDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o paramAttribute.obj -c ../paramAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o CCDMultiTrack.obj -c ../CCDMultiTrack.cpp +../CCDMultiTrack.cpp: In member function ‘void CCDMultiTrack::storeTrackAttributes(NDAttributeList*)’: +../CCDMultiTrack.cpp:44:38: warning: unknown conversion type character ‘z’ in format [-Wformat=] + 44 | epicsSnprintf(Buf, 10, "%zd", TrackNum + 1); + | ^ +../CCDMultiTrack.cpp:44:36: warning: too many arguments for format [-Wformat-extra-args] + 44 | epicsSnprintf(Buf, 10, "%zd", TrackNum + 1); + | ^~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o PVAttribute.obj -c ../PVAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDArrayPool.obj -c ../NDArrayPool.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o functAttribute.obj -c ../functAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -DUSE_TYPED_RSET -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o parseAreaPrefixes.obj -c ../parseAreaPrefixes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o myTimeStampSource.obj -c ../myTimeStampSource.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o myAttributeFunctions.obj -c ../myAttributeFunctions.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o ADBase.dll -shared -Wl,--out-implib,libADBase.dll.a -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ NDAttribute.obj NDAttributeList.obj NDArrayPool.obj NDArray.obj asynNDArrayDriver.obj ADDriver.obj paramAttribute.obj CCDMultiTrack.obj PVAttribute.obj functAttribute.obj parseAreaPrefixes.obj myTimeStampSource.obj myAttributeFunctions.obj -lasyn -ldbRecStd -ldbCore -lca -lCom -lxml2 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +mkdir ../../../bin +mkdir ../../../bin/windows-x64-mingw +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' +make -C ./ntndArrayConverterSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ntndArrayConverter_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ntndArrayConverter.d ../ntndArrayConverter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ntndArrayConverter_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../ntndArrayConverter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +/usr/bin/ar -rc libntndArrayConverter.a ntndArrayConverter.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +/usr/bin/ranlib libntndArrayConverter.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +g++ -o libntndArrayConverter.so -shared -fPIC -Wl,-hlibntndArrayConverter.so -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 ntndArrayConverter.o -lADBase -lpvData -lnt -lasyn -ldbRecStd -ldbCore -lca -lCom -Wl,-Bdynamic -lpthread -lreadline -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ntndArrayConverter_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ntndArrayConverter.d -MT ntndArrayConverter.obj ../ntndArrayConverter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ntndArrayConverter_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ntndArrayConverter.obj -c ../ntndArrayConverter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o ntndArrayConverter.dll -shared -Wl,--out-implib,libntndArrayConverter.dll.a -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ ntndArrayConverter.obj -lADBase -lpvData -lnt -lasyn -ldbRecStd -ldbCore -lca -lCom -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' +make -C ./pluginSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileTIFF.d ../NDFileTIFF.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNexus.d ../NDFileNexus.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginPva.d ../NDPluginPva.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNetCDF.d ../NDFileNetCDF.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileJPEG.d ../NDFileJPEG.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Layout.d ../NDFileHDF5Layout.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5LayoutXML.d ../NDFileHDF5LayoutXML.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5AttributeDataset.d ../NDFileHDF5AttributeDataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Dataset.d ../NDFileHDF5Dataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5.d ../NDFileHDF5.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileMagick.d ../NDFileMagick.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNull.d ../NDFileNull.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFile.d ../NDPluginFile.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPluginFileReader.d ../NDPosPluginFileReader.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPlugin.d ../NDPosPlugin.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCodec.d ../NDPluginCodec.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTransform.d ../NDPluginTransform.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttrPlot.d ../NDPluginAttrPlot.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTimeSeries.d ../NDPluginTimeSeries.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStdArrays.d ../NDPluginStdArrays.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStats.d ../NDPluginStats.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginScatter.d ../NDPluginScatter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROIStat.d ../NDPluginROIStat.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROI.d ../NDPluginROI.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlayTextFont.d ../NDPluginOverlayTextFont.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginProcess.d ../NDPluginProcess.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlay.d ../NDPluginOverlay.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fft.d ../fft.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginGather.d ../NDPluginGather.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFFT.d ../NDPluginFFT.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginColorConvert.d ../NDPluginColorConvert.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayRing.d ../NDArrayRing.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCircularBuff.d ../NDPluginCircularBuff.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttribute.d ../NDPluginAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF throttler.d ../throttler.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginDriver.d ../NDPluginDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/dbdExpand.pl -I. -I.. -I../O.Common -I../../../dbd -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/dbd -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/dbd -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/dbd -I/builds/DATAnet/adurl/.cache/asyn-R4-41/dbd -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/dbd -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/dbd -I/builds/DATAnet/adurl/.cache/adcore-R3-10/dbd -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/dbd -o NDPluginSupport.dbd NDPluginAttribute.dbd NDPluginCircularBuff.dbd NDPluginColorConvert.dbd NDPluginFFT.dbd NDPluginGather.dbd NDPluginOverlay.dbd NDPluginProcess.dbd NDPluginROI.dbd NDPluginROIStat.dbd NDPluginScatter.dbd NDPluginStats.dbd NDPluginStdArrays.dbd NDPluginTimeSeries.dbd NDPluginTransform.dbd NDPluginAttrPlot.dbd NDPluginCodec.dbd +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../throttler.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDArrayRing.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginCircularBuff.cpp +In file included from /usr/include/string.h:495, + from ../NDPluginCircularBuff.cpp:11: +In function ‘char* strncpy(char*, const char*, size_t)’, + inlined from ‘virtual asynStatus NDPluginCircularBuff::writeOctet(asynUser*, const char*, size_t, size_t*)’ at ../NDPluginCircularBuff.cpp:343:14: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:34: warning: ‘char* __builtin_strncpy(char*, const char*, long unsigned int)’ specified bound 100 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginFFT.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../fft.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginGather.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginColorConvert.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginOverlayTextFont.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginProcess.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginOverlay.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginROI.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginScatter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginROIStat.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginStdArrays.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginStats.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginTimeSeries.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginAttrPlot.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginCodec.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPosPlugin.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginTransform.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPosPluginFileReader.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileNull.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginFile.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileMagick.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5Dataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5AttributeDataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5LayoutXML.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileJPEG.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileNetCDF.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5Layout.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileNexus.cpp +../NDFileNexus.cpp: In member function ‘int NDFileNexus::processNode(xmlNode*, NDArray*)’: +../NDFileNexus.cpp:423:36: warning: ‘__builtin___sprintf_chk’ may write a terminating nul past the end of the destination [-Wformat-overflow=] + 423 | sprintf(this->dataPath, "%c%s", '/', dPath); + | ^ +In file included from /usr/include/stdio.h:867, + from ../NDFileNexus.cpp:12: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:34: note: ‘__builtin___sprintf_chk’ output between 2 and 129 bytes into a destination of size 128 + 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, + | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 37 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileTIFF.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginPva.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +/usr/bin/ar -rc libNDPlugin.a NDPluginDriver.o throttler.o NDPluginAttribute.o NDPluginCircularBuff.o NDArrayRing.o NDPluginColorConvert.o NDPluginFFT.o fft.o NDPluginGather.o NDPluginOverlay.o NDPluginOverlayTextFont.o NDPluginProcess.o NDPluginROI.o NDPluginROIStat.o NDPluginScatter.o NDPluginStats.o NDPluginStdArrays.o NDPluginTimeSeries.o NDPluginTransform.o NDPluginAttrPlot.o NDPluginCodec.o NDPosPlugin.o NDPosPluginFileReader.o NDPluginFile.o NDFileNull.o NDFileMagick.o NDFileHDF5.o NDFileHDF5Dataset.o NDFileHDF5AttributeDataset.o NDFileHDF5LayoutXML.o NDFileHDF5Layout.o NDFileJPEG.o NDFileNetCDF.o NDFileNexus.o NDFileTIFF.o NDPluginPva.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +/usr/bin/ranlib libNDPlugin.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -o libNDPlugin.so -shared -fPIC -Wl,-hlibNDPlugin.so -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 NDPluginDriver.o throttler.o NDPluginAttribute.o NDPluginCircularBuff.o NDArrayRing.o NDPluginColorConvert.o NDPluginFFT.o fft.o NDPluginGather.o NDPluginOverlay.o NDPluginOverlayTextFont.o NDPluginProcess.o NDPluginROI.o NDPluginROIStat.o NDPluginScatter.o NDPluginStats.o NDPluginStdArrays.o NDPluginTimeSeries.o NDPluginTransform.o NDPluginAttrPlot.o NDPluginCodec.o NDPosPlugin.o NDPosPluginFileReader.o NDPluginFile.o NDFileNull.o NDFileMagick.o NDFileHDF5.o NDFileHDF5Dataset.o NDFileHDF5AttributeDataset.o NDFileHDF5LayoutXML.o NDFileHDF5Layout.o NDFileJPEG.o NDFileNetCDF.o NDFileNexus.o NDFileTIFF.o NDPluginPva.o -lADBase -lasyn -lntndArrayConverter -lnt -lpvDatabase -lpvAccess -lpvData -lnetCDF -lMagick++ -lcoders -lMagick -ljbig -ljp2 -lbzlib -lpng -lwebp -llcms -lttf -lwmf -lfilters -ltiff -lxml2 -lNeXus -lhdf5 -lhdf5_hl -lblosc -lszip -lzlib -ljpeg -ldbRecStd -ldbCore -lca -lCom -Wl,-Bdynamic -lX11 -lXext -lpthread -lreadline -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileTIFF.d -MT NDFileTIFF.obj ../NDFileTIFF.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginPva.d -MT NDPluginPva.obj ../NDPluginPva.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNexus.d -MT NDFileNexus.obj ../NDFileNexus.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNetCDF.d -MT NDFileNetCDF.obj ../NDFileNetCDF.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileJPEG.d -MT NDFileJPEG.obj ../NDFileJPEG.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Layout.d -MT NDFileHDF5Layout.obj ../NDFileHDF5Layout.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5LayoutXML.d -MT NDFileHDF5LayoutXML.obj ../NDFileHDF5LayoutXML.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5AttributeDataset.d -MT NDFileHDF5AttributeDataset.obj ../NDFileHDF5AttributeDataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Dataset.d -MT NDFileHDF5Dataset.obj ../NDFileHDF5Dataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5.d -MT NDFileHDF5.obj ../NDFileHDF5.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNull.d -MT NDFileNull.obj ../NDFileNull.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileMagick.d -MT NDFileMagick.obj ../NDFileMagick.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFile.d -MT NDPluginFile.obj ../NDPluginFile.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPluginFileReader.d -MT NDPosPluginFileReader.obj ../NDPosPluginFileReader.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPlugin.d -MT NDPosPlugin.obj ../NDPosPlugin.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCodec.d -MT NDPluginCodec.obj ../NDPluginCodec.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTransform.d -MT NDPluginTransform.obj ../NDPluginTransform.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttrPlot.d -MT NDPluginAttrPlot.obj ../NDPluginAttrPlot.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTimeSeries.d -MT NDPluginTimeSeries.obj ../NDPluginTimeSeries.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStdArrays.d -MT NDPluginStdArrays.obj ../NDPluginStdArrays.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStats.d -MT NDPluginStats.obj ../NDPluginStats.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginScatter.d -MT NDPluginScatter.obj ../NDPluginScatter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROI.d -MT NDPluginROI.obj ../NDPluginROI.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROIStat.d -MT NDPluginROIStat.obj ../NDPluginROIStat.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlayTextFont.d -MT NDPluginOverlayTextFont.obj ../NDPluginOverlayTextFont.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginProcess.d -MT NDPluginProcess.obj ../NDPluginProcess.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlay.d -MT NDPluginOverlay.obj ../NDPluginOverlay.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fft.d -MT fft.obj ../fft.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginGather.d -MT NDPluginGather.obj ../NDPluginGather.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFFT.d -MT NDPluginFFT.obj ../NDPluginFFT.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginColorConvert.d -MT NDPluginColorConvert.obj ../NDPluginColorConvert.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayRing.d -MT NDArrayRing.obj ../NDArrayRing.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCircularBuff.d -MT NDPluginCircularBuff.obj ../NDPluginCircularBuff.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttribute.d -MT NDPluginAttribute.obj ../NDPluginAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF throttler.d -MT throttler.obj ../throttler.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginDriver.d -MT NDPluginDriver.obj ../NDPluginDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o throttler.obj -c ../throttler.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginAttribute.obj -c ../NDPluginAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginDriver.obj -c ../NDPluginDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDArrayRing.obj -c ../NDArrayRing.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginCircularBuff.obj -c ../NDPluginCircularBuff.cpp +../NDPluginCircularBuff.cpp: In member function ‘virtual asynStatus NDPluginCircularBuff::writeOctet(asynUser*, const char*, size_t, size_t*)’: +../NDPluginCircularBuff.cpp:343:14: warning: ‘char* strncpy(char*, const char*, size_t)’ specified bound 100 equals destination size [-Wstringop-truncation] + 343 | strncpy(triggerCalcInfix_, value, sizeof(triggerCalcInfix_)); + | ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginFFT.obj -c ../NDPluginFFT.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o fft.obj -c ../fft.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginGather.obj -c ../NDPluginGather.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginColorConvert.obj -c ../NDPluginColorConvert.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginOverlayTextFont.obj -c ../NDPluginOverlayTextFont.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginProcess.obj -c ../NDPluginProcess.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginOverlay.obj -c ../NDPluginOverlay.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginROI.obj -c ../NDPluginROI.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginScatter.obj -c ../NDPluginScatter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginROIStat.obj -c ../NDPluginROIStat.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginStdArrays.obj -c ../NDPluginStdArrays.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginStats.obj -c ../NDPluginStats.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginTimeSeries.obj -c ../NDPluginTimeSeries.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginAttrPlot.obj -c ../NDPluginAttrPlot.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginCodec.obj -c ../NDPluginCodec.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPosPlugin.obj -c ../NDPosPlugin.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPosPluginFileReader.obj -c ../NDPosPluginFileReader.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginTransform.obj -c ../NDPluginTransform.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileNull.obj -c ../NDFileNull.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginFile.obj -c ../NDPluginFile.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileMagick.obj -c ../NDFileMagick.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5Dataset.obj -c ../NDFileHDF5Dataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5AttributeDataset.obj -c ../NDFileHDF5AttributeDataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5LayoutXML.obj -c ../NDFileHDF5LayoutXML.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5.obj -c ../NDFileHDF5.cpp +../NDFileHDF5.cpp: In member function ‘char* NDFileHDF5::getDimsReport()’: +../NDFileHDF5.cpp:3563:46: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 3563 | epicsSnprintf(strdims+c, maxlen-c, "%6lli,", dimsizes[i].dimsize[j]); + | ^ +../NDFileHDF5.cpp:3563:42: warning: too many arguments for format [-Wformat-extra-args] + 3563 | epicsSnprintf(strdims+c, maxlen-c, "%6lli,", dimsizes[i].dimsize[j]); + | ^~~~~~~~ +In file included from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynStandardInterfaces.h:20, + from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynPortDriver.h:11, + from ../../../include/asynNDArrayDriver.h:7, + from ../NDPluginDriver.h:12, + from ../NDPluginFile.h:7, + from ../NDFileHDF5.h:13, + from ../NDFileHDF5.cpp:28: +../NDFileHDF5.cpp: In member function ‘asynStatus NDFileHDF5::createNewFile(const char*)’: +../NDFileHDF5.cpp:3765:11: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 3765 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynDriver.h:281:70: note: in definition of macro ‘asynPrint’ + 281 | ? pasynTrace->printSource((pasynUser),(reason),__FILE__,__LINE__,__VA_ARGS__) \ + | ^~~~~~~~~~~ +../NDFileHDF5.cpp:3765:60: note: format string is defined here + 3765 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", + | ^ +In file included from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynStandardInterfaces.h:20, + from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynPortDriver.h:11, + from ../../../include/asynNDArrayDriver.h:7, + from ../NDPluginDriver.h:12, + from ../NDPluginFile.h:7, + from ../NDFileHDF5.h:13, + from ../NDFileHDF5.cpp:28: +../NDFileHDF5.cpp:3765:11: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 3765 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynDriver.h:281:70: note: in definition of macro ‘asynPrint’ + 281 | ? pasynTrace->printSource((pasynUser),(reason),__FILE__,__LINE__,__VA_ARGS__) \ + | ^~~~~~~~~~~ +../NDFileHDF5.cpp:3765:79: note: format string is defined here + 3765 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", + | ^ +In file included from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynStandardInterfaces.h:20, + from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynPortDriver.h:11, + from ../../../include/asynNDArrayDriver.h:7, + from ../NDPluginDriver.h:12, + from ../NDPluginFile.h:7, + from ../NDFileHDF5.h:13, + from ../NDFileHDF5.cpp:28: +../NDFileHDF5.cpp:3765:11: warning: too many arguments for format [-Wformat-extra-args] + 3765 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynDriver.h:281:70: note: in definition of macro ‘asynPrint’ + 281 | ? pasynTrace->printSource((pasynUser),(reason),__FILE__,__LINE__,__VA_ARGS__) \ + | ^~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileJPEG.obj -c ../NDFileJPEG.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileNetCDF.obj -c ../NDFileNetCDF.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5Layout.obj -c ../NDFileHDF5Layout.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileNexus.obj -c ../NDFileNexus.cpp +../NDFileNexus.cpp: In member function ‘void NDFileNexus::constTextToDataType(char*, int, void*)’: +../NDFileNexus.cpp:703:39: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 703 | sscanf((const char *)inText, "%lld", &i64val); + | ^ +../NDFileNexus.cpp:703:36: warning: too many arguments for format [-Wformat-extra-args] + 703 | sscanf((const char *)inText, "%lld", &i64val); + | ^~~~~~ +../NDFileNexus.cpp:703:39: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 703 | sscanf((const char *)inText, "%lld", &i64val); + | ^ +../NDFileNexus.cpp:703:36: warning: too many arguments for format [-Wformat-extra-args] + 703 | sscanf((const char *)inText, "%lld", &i64val); + | ^~~~~~ +../NDFileNexus.cpp:707:39: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 707 | sscanf((const char *)inText, "%llu", &i64val); + | ^ +../NDFileNexus.cpp:707:36: warning: too many arguments for format [-Wformat-extra-args] + 707 | sscanf((const char *)inText, "%llu", &i64val); + | ^~~~~~ +../NDFileNexus.cpp:707:39: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 707 | sscanf((const char *)inText, "%llu", &i64val); + | ^ +../NDFileNexus.cpp:707:36: warning: too many arguments for format [-Wformat-extra-args] + 707 | sscanf((const char *)inText, "%llu", &i64val); + | ^~~~~~ +../NDFileNexus.cpp: In member function ‘int NDFileNexus::processNode(xmlNode*, NDArray*)’: +../NDFileNexus.cpp:423:36: warning: ‘sprintf’ may write a terminating nul past the end of the destination [-Wformat-overflow=] + 423 | sprintf(this->dataPath, "%c%s", '/', dPath); + | ^ +../NDFileNexus.cpp:423:14: note: ‘sprintf’ output between 2 and 129 bytes into a destination of size 128 + 423 | sprintf(this->dataPath, "%c%s", '/', dPath); + | ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileTIFF.obj -c ../NDFileTIFF.cpp +../NDFileTIFF.cpp: In member function ‘virtual asynStatus NDFileTIFF::openFile(const char*, NDFileOpenMode_t, NDArray*)’: +../NDFileTIFF.cpp:307:69: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 307 | epicsSnprintf(tagString, sizeof(tagString)-1, "%s:%lld", attributeName, value.i64); + | ^ +../NDFileTIFF.cpp:307:63: warning: too many arguments for format [-Wformat-extra-args] + 307 | epicsSnprintf(tagString, sizeof(tagString)-1, "%s:%lld", attributeName, value.i64); + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginPva.obj -c ../NDPluginPva.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o NDPlugin.dll -shared -Wl,--out-implib,libNDPlugin.dll.a -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ NDPluginDriver.obj throttler.obj NDPluginAttribute.obj NDPluginCircularBuff.obj NDArrayRing.obj NDPluginColorConvert.obj NDPluginFFT.obj fft.obj NDPluginGather.obj NDPluginOverlay.obj NDPluginOverlayTextFont.obj NDPluginProcess.obj NDPluginROI.obj NDPluginROIStat.obj NDPluginScatter.obj NDPluginStats.obj NDPluginStdArrays.obj NDPluginTimeSeries.obj NDPluginTransform.obj NDPluginAttrPlot.obj NDPluginCodec.obj NDPosPlugin.obj NDPosPluginFileReader.obj NDPluginFile.obj NDFileNull.obj NDFileMagick.obj NDFileHDF5.obj NDFileHDF5Dataset.obj NDFileHDF5AttributeDataset.obj NDFileHDF5LayoutXML.obj NDFileHDF5Layout.obj NDFileJPEG.obj NDFileNetCDF.obj NDFileNexus.obj NDFileTIFF.obj NDPluginPva.obj -lADBase -lasyn -lntndArrayConverter -lnt -lpvDatabase -lpvAccess -lpvData -lnetCDF -lMagick++ -lcoders -lMagick -ljbig -ljp2 -lbzlib -lpng -lwebp -llcms -lttf -lwmf -lfilters -ltiff -lxml2 -lNeXus -lhdf5 -lhdf5_hl -lblosc -lszip -lzlib -ljpeg -ldbRecStd -ldbCore -lca -lCom -lws2_32 -luser32 -lgdi32 -loleaut32 -lws2_32 +/usr/bin/x86_64-w64-mingw32-ld: /usr/lib/gcc/x86_64-w64-mingw32/9.3-posix/libgcc_eh.a(unwind-seh.o):(.text+0x3d0): multiple definition of `_Unwind_Resume'; /builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw/libMagick++.dll.a(d000016.o):(.text+0x0): first defined here +collect2: error: ld returned 1 exit status +make[4]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_BUILD:298: NDPlugin.dll] Error 1 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' +make[3]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_ARCHS:58: install.windows-x64-mingw] Error 2 +make[2]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: pluginSrc.install] Error 2 +make[1]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: ADApp.install] Error 2 +make: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: /builds/DATAnet/adurl/.cache/adcore-R3-10.install] Error 2 +DEBUG:__main__:EXEC DONE diff --git a/.ci-local/adurl_install.log b/.ci-local/adurl_install.log new file mode 100644 index 00000000..189c7634 --- /dev/null +++ b/.ci-local/adurl_install.log @@ -0,0 +1,30534 @@ +DEBUG:__main__:Detected a build hosted on gitlab, using gcc on linux (x64) configured as shared-optimized (test: True, clean_deps: False) +Build using gcc compiler on linux (x64) hosted by gitlab +Python setup +2.7.18 (default, Mar 8 2021, 13:02:45) +[GCC 9.3.0] +PYTHONPATH + /builds/DATAnet/adurl/.ci + /usr/lib/python2.7 + /usr/lib/python2.7/plat-x86_64-linux-gnu + /usr/lib/python2.7/lib-tk + /usr/lib/python2.7/lib-old + /usr/lib/python2.7/lib-dynload + /usr/local/lib/python2.7/dist-packages + /usr/lib/python2.7/dist-packages +platform = linux-x86_64 +Opening setup file .ci-local/stable.set +DEBUG:__main__:.ci-local/stable.set: setup[MODULES] = sncseq sscan calc asyn autosave busy area_Detector ADSupport ADCore +DEBUG:__main__:.ci-local/stable.set: setup[BASE] = R7.0.3.1 +DEBUG:__main__:.ci-local/stable.set: setup[SNCSEQ] = R2-2-9 +DEBUG:__main__:.ci-local/stable.set: setup[SSCAN] = R2-11-5 +DEBUG:__main__:.ci-local/stable.set: setup[CALC] = R3-7-3 +DEBUG:__main__:.ci-local/stable.set: setup[ASYN] = R4-41 +DEBUG:__main__:.ci-local/stable.set: setup[BUSY] = R1-7-1 +DEBUG:__main__:.ci-local/stable.set: setup[AUTOSAVE] = R5-7-1 +DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR] = R3-10 +DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR_REPOURL] = https://github.com/areaDetector/areaDetector +DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR_RECURSIVE] = NO +DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR_HOOK] = .ci-local/area_detector_hook.sh +DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT] = master +DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT_REPOURL] = https://github.com/pheest/ADSupport +DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT_RECURSIVE] = NO +DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT_HOOK] = .ci-local/adsupport_hook.sh +DEBUG:__main__:.ci-local/stable.set: setup[ADCORE] = R3-11 +DEBUG:__main__:.ci-local/stable.set: setup[ADCORE_REPOURL] = https://github.com/areaDetector/ADCore +DEBUG:__main__:.ci-local/stable.set: setup[ADCORE_RECURSIVE] = NO +DEBUG:__main__:.ci-local/stable.set: setup[ADCORE_HOOK] = .ci-local/adcore_hook.sh +DEBUG:__main__:Done with setup file .ci-local/stable.set +Opening setup file .ci/defaults.set +DEBUG:__main__:.ci/defaults.set: setup[BASE_DIRNAME] = base +DEBUG:__main__:.ci/defaults.set: setup[BASE_REPONAME] = epics-base +DEBUG:__main__:.ci/defaults.set: setup[BASE_REPOOWNER] = epics-base +DEBUG:__main__:.ci/defaults.set: setup[BASE_VARNAME] = EPICS_BASE +DEBUG:__main__:.ci/defaults.set: setup[PVDATA_DIRNAME] = pvData +DEBUG:__main__:.ci/defaults.set: setup[PVDATA_REPONAME] = pvDataCPP +DEBUG:__main__:.ci/defaults.set: setup[PVDATA_REPOOWNER] = epics-base +DEBUG:__main__:.ci/defaults.set: setup[PVACCESS_DIRNAME] = pvAccess +DEBUG:__main__:.ci/defaults.set: setup[PVACCESS_REPONAME] = pvAccessCPP +DEBUG:__main__:.ci/defaults.set: setup[PVACCESS_REPOOWNER] = epics-base +DEBUG:__main__:.ci/defaults.set: setup[NTYPES_DIRNAME] = normativeTypes +DEBUG:__main__:.ci/defaults.set: setup[NTYPES_REPONAME] = normativeTypesCPP +DEBUG:__main__:.ci/defaults.set: setup[NTYPES_REPOOWNER] = epics-base +DEBUG:__main__:.ci/defaults.set: setup[SNCSEQ_REPOURL] = https://www-csr.bessy.de/control/SoftDist/sequencer/repo/branch-2-2.git +DEBUG:__main__:.ci/defaults.set: setup[SNCSEQ_DEPTH] = 0 +DEBUG:__main__:.ci/defaults.set: setup[SNCSEQ_DIRNAME] = seq +DEBUG:__main__:.ci/defaults.set: setup[STREAM_REPONAME] = StreamDevice +DEBUG:__main__:.ci/defaults.set: setup[STREAM_REPOOWNER] = paulscherrerinstitute +DEBUG:__main__:Done with setup file .ci/defaults.set +DEBUG:__main__:ENV assignment: BASE_RECURSIVE = YES +DEBUG:__main__:Loaded setup +DEBUG:__main__: ADCORE = "R3-11" +DEBUG:__main__: ADCORE_DEPTH = "-1" +DEBUG:__main__: ADCORE_DIRNAME = "adcore" +DEBUG:__main__: ADCORE_HOOK = ".ci-local/adcore_hook.sh" +DEBUG:__main__: ADCORE_RECURSIVE = "NO" +DEBUG:__main__: ADCORE_REPONAME = "adcore" +DEBUG:__main__: ADCORE_REPOOWNER = "epics-modules" +DEBUG:__main__: ADCORE_REPOURL = "https://github.com/areaDetector/ADCore" +DEBUG:__main__: ADCORE_VARNAME = "ADCORE" +DEBUG:__main__: ADD_MODULES = "" +DEBUG:__main__: ADSUPPORT = "master" +DEBUG:__main__: ADSUPPORT_DEPTH = "-1" +DEBUG:__main__: ADSUPPORT_DIRNAME = "adsupport" +DEBUG:__main__: ADSUPPORT_HOOK = ".ci-local/adsupport_hook.sh" +DEBUG:__main__: ADSUPPORT_RECURSIVE = "NO" +DEBUG:__main__: ADSUPPORT_REPONAME = "adsupport" +DEBUG:__main__: ADSUPPORT_REPOOWNER = "epics-modules" +DEBUG:__main__: ADSUPPORT_REPOURL = "https://github.com/pheest/ADSupport" +DEBUG:__main__: ADSUPPORT_VARNAME = "ADSUPPORT" +DEBUG:__main__: AREA_DETECTOR = "R3-10" +DEBUG:__main__: AREA_DETECTOR_DEPTH = "-1" +DEBUG:__main__: AREA_DETECTOR_DIRNAME = "area_detector" +DEBUG:__main__: AREA_DETECTOR_HOOK = ".ci-local/area_detector_hook.sh" +DEBUG:__main__: AREA_DETECTOR_RECURSIVE = "NO" +DEBUG:__main__: AREA_DETECTOR_REPONAME = "area_detector" +DEBUG:__main__: AREA_DETECTOR_REPOOWNER = "epics-modules" +DEBUG:__main__: AREA_DETECTOR_REPOURL = "https://github.com/areaDetector/areaDetector" +DEBUG:__main__: AREA_DETECTOR_VARNAME = "AREA_DETECTOR" +DEBUG:__main__: ASYN = "R4-41" +DEBUG:__main__: ASYN_DEPTH = "-1" +DEBUG:__main__: ASYN_DIRNAME = "asyn" +DEBUG:__main__: ASYN_RECURSIVE = "YES" +DEBUG:__main__: ASYN_REPONAME = "asyn" +DEBUG:__main__: ASYN_REPOOWNER = "epics-modules" +DEBUG:__main__: ASYN_REPOURL = "https://github.com/epics-modules/asyn.git" +DEBUG:__main__: ASYN_VARNAME = "ASYN" +DEBUG:__main__: AUTOSAVE = "R5-7-1" +DEBUG:__main__: AUTOSAVE_DEPTH = "-1" +DEBUG:__main__: AUTOSAVE_DIRNAME = "autosave" +DEBUG:__main__: AUTOSAVE_RECURSIVE = "YES" +DEBUG:__main__: AUTOSAVE_REPONAME = "autosave" +DEBUG:__main__: AUTOSAVE_REPOOWNER = "epics-modules" +DEBUG:__main__: AUTOSAVE_REPOURL = "https://github.com/epics-modules/autosave.git" +DEBUG:__main__: AUTOSAVE_VARNAME = "AUTOSAVE" +DEBUG:__main__: BASE = "R7.0.3.1" +DEBUG:__main__: BASE_DEPTH = "-1" +DEBUG:__main__: BASE_DIRNAME = "base" +DEBUG:__main__: BASE_RECURSIVE = "YES" +DEBUG:__main__: BASE_REPONAME = "epics-base" +DEBUG:__main__: BASE_REPOOWNER = "epics-base" +DEBUG:__main__: BASE_REPOURL = "https://github.com/epics-base/epics-base.git" +DEBUG:__main__: BASE_VARNAME = "EPICS_BASE" +DEBUG:__main__: BUSY = "R1-7-1" +DEBUG:__main__: BUSY_DEPTH = "-1" +DEBUG:__main__: BUSY_DIRNAME = "busy" +DEBUG:__main__: BUSY_RECURSIVE = "YES" +DEBUG:__main__: BUSY_REPONAME = "busy" +DEBUG:__main__: BUSY_REPOOWNER = "epics-modules" +DEBUG:__main__: BUSY_REPOURL = "https://github.com/epics-modules/busy.git" +DEBUG:__main__: BUSY_VARNAME = "BUSY" +DEBUG:__main__: CALC = "R3-7-3" +DEBUG:__main__: CALC_DEPTH = "-1" +DEBUG:__main__: CALC_DIRNAME = "calc" +DEBUG:__main__: CALC_RECURSIVE = "YES" +DEBUG:__main__: CALC_REPONAME = "calc" +DEBUG:__main__: CALC_REPOOWNER = "epics-modules" +DEBUG:__main__: CALC_REPOURL = "https://github.com/epics-modules/calc.git" +DEBUG:__main__: CALC_VARNAME = "CALC" +DEBUG:__main__: MODULES = "sncseq sscan calc asyn autosave busy area_Detector ADSupport ADCore" +DEBUG:__main__: NTYPES_DIRNAME = "normativeTypes" +DEBUG:__main__: NTYPES_REPONAME = "normativeTypesCPP" +DEBUG:__main__: NTYPES_REPOOWNER = "epics-base" +DEBUG:__main__: PVACCESS_DIRNAME = "pvAccess" +DEBUG:__main__: PVACCESS_REPONAME = "pvAccessCPP" +DEBUG:__main__: PVACCESS_REPOOWNER = "epics-base" +DEBUG:__main__: PVDATA_DIRNAME = "pvData" +DEBUG:__main__: PVDATA_REPONAME = "pvDataCPP" +DEBUG:__main__: PVDATA_REPOOWNER = "epics-base" +DEBUG:__main__: REPOOWNER = "epics-modules" +DEBUG:__main__: SNCSEQ = "R2-2-9" +DEBUG:__main__: SNCSEQ_DEPTH = "0" +DEBUG:__main__: SNCSEQ_DIRNAME = "seq" +DEBUG:__main__: SNCSEQ_RECURSIVE = "YES" +DEBUG:__main__: SNCSEQ_REPONAME = "sncseq" +DEBUG:__main__: SNCSEQ_REPOOWNER = "epics-modules" +DEBUG:__main__: SNCSEQ_REPOURL = "https://www-csr.bessy.de/control/SoftDist/sequencer/repo/branch-2-2.git" +DEBUG:__main__: SNCSEQ_VARNAME = "SNCSEQ" +DEBUG:__main__: SSCAN = "R2-11-5" +DEBUG:__main__: SSCAN_DEPTH = "-1" +DEBUG:__main__: SSCAN_DIRNAME = "sscan" +DEBUG:__main__: SSCAN_RECURSIVE = "YES" +DEBUG:__main__: SSCAN_REPONAME = "sscan" +DEBUG:__main__: SSCAN_REPOOWNER = "epics-modules" +DEBUG:__main__: SSCAN_REPOURL = "https://github.com/epics-modules/sscan.git" +DEBUG:__main__: SSCAN_VARNAME = "SSCAN" +DEBUG:__main__: STREAM_REPONAME = "StreamDevice" +DEBUG:__main__: STREAM_REPOOWNER = "paulscherrerinstitute" +DEBUG:__main__:Effective module list: ['BASE', 'SNCSEQ', 'SSCAN', 'CALC', 'ASYN', 'AUTOSAVE', 'BUSY', 'AREA_DETECTOR', 'ADSUPPORT', 'ADCORE'] +DEBUG:__main__:EXEC 'git config --global advice.detachedHead false' in /builds/DATAnet/adurl +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Adding dependency BASE with tag R7.0.3.1 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-base/epics-base.git R7.0.3.1' in /builds/DATAnet/adurl +9cd04f577222ab0eecae23dfc143d1c494d06e2e refs/tags/R7.0.3.1 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency BASE: directory /builds/DATAnet/adurl/.cache/base-R7.0.3.1 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit 34834dfe973a577f342503441e7b33b7fe322de5, git head is 34834dfe973a577f342503441e7b33b7fe322de5 +Found R7.0.3.1 of dependency BASE up-to-date in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 +DEBUG:__main__:RELEASE.local does not exist, creating it +DEBUG:__main__:Opening RELEASE.local for adding 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding new definition: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency SNCSEQ with tag R2-2-9 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://www-csr.bessy.de/control/SoftDist/sequencer/repo/branch-2-2.git R2-2-9' in /builds/DATAnet/adurl +b21d8a8763599326115ebbba6c62905d814b3ccb refs/tags/R2-2-9 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency SNCSEQ: directory /builds/DATAnet/adurl/.cache/seq-R2-2-9 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/seq-R2-2-9 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit e5e361509df1c0d3c667872243d8f7a9894514b4, git head is e5e361509df1c0d3c667872243d8f7a9894514b4 +Found R2-2-9 of dependency SNCSEQ up-to-date in /builds/DATAnet/adurl/.cache/seq-R2-2-9 +DEBUG:__main__:Opening RELEASE.local for adding 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency SSCAN with tag R2-11-5 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/sscan.git R2-11-5' in /builds/DATAnet/adurl +f4ed91fa90d81eee5ba92d0d0c00d8d5d0b269da refs/tags/R2-11-5 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency SSCAN: directory /builds/DATAnet/adurl/.cache/sscan-R2-11-5 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/sscan-R2-11-5 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit f4ed91fa90d81eee5ba92d0d0c00d8d5d0b269da, git head is f4ed91fa90d81eee5ba92d0d0c00d8d5d0b269da +Found R2-11-5 of dependency SSCAN up-to-date in /builds/DATAnet/adurl/.cache/sscan-R2-11-5 +DEBUG:__main__:Opening RELEASE.local for adding 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency CALC with tag R3-7-3 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/calc.git R3-7-3' in /builds/DATAnet/adurl +2a3ceff7afee73fd82a2c60d637611020cb65bca refs/tags/R3-7-3 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency CALC: directory /builds/DATAnet/adurl/.cache/calc-R3-7-3 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/calc-R3-7-3 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit 2a3ceff7afee73fd82a2c60d637611020cb65bca, git head is 2a3ceff7afee73fd82a2c60d637611020cb65bca +Found R3-7-3 of dependency CALC up-to-date in /builds/DATAnet/adurl/.cache/calc-R3-7-3 +DEBUG:__main__:Opening RELEASE.local for adding 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency ASYN with tag R4-41 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/asyn.git R4-41' in /builds/DATAnet/adurl +0c70f16c4b27f6717920f40e8c8e0fb2182cac64 refs/tags/R4-41 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency ASYN: directory /builds/DATAnet/adurl/.cache/asyn-R4-41 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/asyn-R4-41 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit 0c70f16c4b27f6717920f40e8c8e0fb2182cac64, git head is 0c70f16c4b27f6717920f40e8c8e0fb2182cac64 +Found R4-41 of dependency ASYN up-to-date in /builds/DATAnet/adurl/.cache/asyn-R4-41 +DEBUG:__main__:Opening RELEASE.local for adding 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency AUTOSAVE with tag R5-7-1 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/autosave.git R5-7-1' in /builds/DATAnet/adurl +31e041c2ba4e0212f11ce5cf5541b572d1d1e887 refs/tags/R5-7-1 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency AUTOSAVE: directory /builds/DATAnet/adurl/.cache/autosave-R5-7-1 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/autosave-R5-7-1 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit 31e041c2ba4e0212f11ce5cf5541b572d1d1e887, git head is 31e041c2ba4e0212f11ce5cf5541b572d1d1e887 +Found R5-7-1 of dependency AUTOSAVE up-to-date in /builds/DATAnet/adurl/.cache/autosave-R5-7-1 +DEBUG:__main__:Opening RELEASE.local for adding 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency BUSY with tag R1-7-1 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/busy.git R1-7-1' in /builds/DATAnet/adurl +adb6da968ceac134d4d67be495e9f196c31a1b3d refs/tags/R1-7-1 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency BUSY: directory /builds/DATAnet/adurl/.cache/busy-R1-7-1 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/busy-R1-7-1 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit adb6da968ceac134d4d67be495e9f196c31a1b3d, git head is adb6da968ceac134d4d67be495e9f196c31a1b3d +Found R1-7-1 of dependency BUSY up-to-date in /builds/DATAnet/adurl/.cache/busy-R1-7-1 +DEBUG:__main__:Opening RELEASE.local for adding 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency AREA_DETECTOR with tag R3-10 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/areaDetector/areaDetector R3-10' in /builds/DATAnet/adurl +9739d42659d180f88e08104cad4d02cbd414a75f refs/tags/R3-10 +DEBUG:__main__:EXEC DONE +Cloning R3-10 of dependency AREA_DETECTOR into /builds/DATAnet/adurl/.cache/area_detector-R3-10 +DEBUG:__main__:EXEC 'git clone --quiet --depth 5 --branch R3-10 https://github.com/areaDetector/areaDetector area_detector-R3-10' in /builds/DATAnet/adurl/.cache +DEBUG:__main__:EXEC DONE +commit 9739d42659d180f88e08104cad4d02cbd414a75f +Author: Mark Rivers +Date: Sun Sep 20 15:28:44 2020 -0500 + + Notes for R3-10 +DEBUG:__main__:Setting do_recompile = True (all following modules will be recompiled +Running hook .ci-local/area_detector_hook.sh in /builds/DATAnet/adurl/.cache/area_detector-R3-10 +Reading package lists... +Building dependency tree... +Reading state information... +libxext-dev is already the newest version (2:1.3.4-0ubuntu1). +libx11-dev is already the newest version (2:1.6.9-2ubuntu1.2). +The following package was automatically installed and is no longer required: + libfwupdplugin1 +Use 'sudo apt autoremove' to remove it. +0 to upgrade, 0 to newly install, 0 to remove and 8 not to upgrade. +/builds/DATAnet/adurl/.cache/area_detector-R3-10/configure /builds/DATAnet/adurl/.cache/area_detector-R3-10 +Copying from example. +/builds/DATAnet/adurl/.cache/area_detector-R3-10 +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/area_detector-R3-10 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Writing hash of checked-out dependency (9739d42659d180f88e08104cad4d02cbd414a75f) to marker file +DEBUG:__main__:Opening RELEASE.local for adding 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency ADSUPPORT with tag master +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/pheest/ADSupport master' in /builds/DATAnet/adurl +1b5b589b560b90fb37d152ed7440aef4162119b5 refs/heads/master +DEBUG:__main__:EXEC DONE +Cloning master of dependency ADSUPPORT into /builds/DATAnet/adurl/.cache/adsupport-master +DEBUG:__main__:EXEC 'git clone --quiet --depth 5 --branch master https://github.com/pheest/ADSupport adsupport-master' in /builds/DATAnet/adurl/.cache +DEBUG:__main__:EXEC DONE +commit 1b5b589b560b90fb37d152ed7440aef4162119b5 +Author: Heesterman, Peter J +Date: Thu May 19 16:55:57 2022 +0100 + + Need to define XMLPUBFUN __declspec(dllimport) for DLL importing builds. + There's no need for any difference between Visual Studio and MingW build defines. +DEBUG:__main__:Setting do_recompile = True (all following modules will be recompiled +Running hook .ci-local/adsupport_hook.sh in /builds/DATAnet/adurl/.cache/adsupport-master +Reading package lists... +Building dependency tree... +Reading state information... +libxext-dev is already the newest version (2:1.3.4-0ubuntu1). +libx11-dev is already the newest version (2:1.6.9-2ubuntu1.2). +The following package was automatically installed and is no longer required: + libfwupdplugin1 +Use 'sudo apt autoremove' to remove it. +0 to upgrade, 0 to newly install, 0 to remove and 8 not to upgrade. +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/adsupport-master +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Writing hash of checked-out dependency (1b5b589b560b90fb37d152ed7440aef4162119b5) to marker file +DEBUG:__main__:Opening RELEASE.local for adding 'ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency ADCORE with tag R3-11 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/areaDetector/ADCore R3-11' in /builds/DATAnet/adurl +19bb3bfa1c1b11caa0da11a2cf4a1b375f724f52 refs/tags/R3-11 +DEBUG:__main__:EXEC DONE +Cloning R3-11 of dependency ADCORE into /builds/DATAnet/adurl/.cache/adcore-R3-11 +DEBUG:__main__:EXEC 'git clone --quiet --depth 5 --branch R3-11 https://github.com/areaDetector/ADCore adcore-R3-11' in /builds/DATAnet/adurl/.cache +DEBUG:__main__:EXEC DONE +commit 19bb3bfa1c1b11caa0da11a2cf4a1b375f724f52 +Author: Mark Rivers +Date: Wed May 26 14:06:37 2021 -0500 + + Note on nanohttp_stream for R3-11 +DEBUG:__main__:Setting do_recompile = True (all following modules will be recompiled +Running hook .ci-local/adcore_hook.sh in /builds/DATAnet/adurl/.cache/adcore-R3-11 +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/adcore-R3-11 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Writing hash of checked-out dependency (19bb3bfa1c1b11caa0da11a2cf4a1b375f724f52) to marker file +DEBUG:__main__:Opening RELEASE.local for adding 'ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-11' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' +DEBUG:__main__:Writing line to RELEASE.local: 'ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-11' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Setting up the build environment +DEBUG:__main__:Using EPICS Base at /builds/DATAnet/adurl/.cache/base-R7.0.3.1 +DEBUG:__main__:Running script to detect EPICS host architecture in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 +DEBUG:__main__:/builds/DATAnet/adurl/.cache/base-R7.0.3.1/src/tools/EpicsHostArch.pl returned: linux-x86_64 +DEBUG:__main__:Check if EPICS Base is a 3.14 series: False +DEBUG:__main__:Check if make is a 3.x series: False +EPICS_HOST_ARCH = linux-x86_64 +$ make --version +DEBUG:__main__:EXEC 'make --version' in /builds/DATAnet/adurl +GNU Make 4.2.1 +Built for x86_64-pc-linux-gnu +Copyright (C) 1988-2016 Free Software Foundation, Inc. +Licence GPLv3+: GNU GPL version 3 or later +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law. +DEBUG:__main__:EXEC DONE +$ perl --version + +This is perl 5, version 30, subversion 0 (v5.30.0) built for x86_64-linux-gnu-thread-multi +(with 50 registered patches, see perl -V for more detail) + +Copyright 1987-2019, Larry Wall + +Perl may be copied only under the terms of either the Artistic License or the +GNU General Public License, which may be found in the Perl 5 source kit. + +Complete documentation for Perl, including FAQ lists, should be found on +this system using "man perl" or "perldoc perl". If you have access to the +Internet, point your browser at http://www.perl.org/, the Perl Home Page. + +$ gcc --version +gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 +Copyright (C) 2019 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. + +$ g++ --version +g++ (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 +Copyright (C) 2019 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. + +-include $(TOP)/../RELEASE.local + +SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9 +SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5 +CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3 +ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41 +AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1 +BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1 +AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10 +ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master +ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-11 +EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1 + +-include $(TOP)/../RELEASE.local + +9739d42659d180f88e08104cad4d02cbd414a75f + +19bb3bfa1c1b11caa0da11a2cf4a1b375f724f52 + +1b5b589b560b90fb37d152ed7440aef4162119b5 + +-include $(TOP)/../RELEASE.local + +DEBUG:__main__:EXEC 'make -j2 -Otarget' in /builds/DATAnet/adurl/.cache/area_detector-R3-10 +Building dependency AREA_DETECTOR in /builds/DATAnet/adurl/.cache/area_detector-R3-10 +make -C /builds/DATAnet/adurl/.cache/adsupport-master install +make -C ./configure install +make -C ./supportApp install +make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../.. +make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' +make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../.. +make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' +make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' +mkdir -p O.Common +make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' +make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ + T_A=linux-x86_64 install +make -C ./jpegSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease +make -C O.windows-x64-mingw -f ../Makefile TOP=../.. \ + T_A=windows-x64-mingw install +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompressJPEG.d ../decompressJPEG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemnobs.d ../jmemnobs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make -C ./zlibSrc install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemmgr.d ../jmemmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jutils.d ../jutils.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant2.d ../jquant2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant1.d ../jquant1.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctint.d ../jidctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctfst.d ../jidctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctflt.d ../jidctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctint.d ../jfdctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zutil.d ../zutil.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctfst.d ../jfdctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uncompr.d ../uncompr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctflt.d ../jfdctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF trees.d ../trees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jerror.d ../jerror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inftrees.d ../inftrees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdtrans.d ../jdtrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inflate.d ../inflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdsample.d ../jdsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inffast.d ../inffast.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdpostct.d ../jdpostct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF infback.d ../infback.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmerge.d ../jdmerge.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzwrite.d ../gzwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmaster.d ../jdmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmarker.d ../jdmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzread.d ../gzread.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmainct.d ../jdmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzlib.d ../gzlib.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdinput.d ../jdinput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzclose.d ../gzclose.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdhuff.d ../jdhuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF deflate.d ../deflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jddctmgr.d ../jddctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crc32.d ../crc32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcolor.d ../jdcolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d ../compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcoefct.d ../jdcoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatasrc.d ../jdatasrc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatadst.d ../jdatadst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdarith.d ../jdarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF adler32.d ../adler32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapistd.d ../jdapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapimin.d ../jdapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jctrans.d ../jctrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcsample.d ../jcsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcprepct.d ../jcprepct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcparam.d ../jcparam.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcomapi.d ../jcomapi.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmaster.d ../jcmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmarker.d ../jcmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmainct.d ../jcmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +mkdir ../../../include +mkdir ../../../include/os +mkdir ../../../include/os/Linux +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcinit.d ../jcinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jchuff.d ../jchuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcdctmgr.d ../jcdctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccolor.d ../jccolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccoefct.d ../jccoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcarith.d ../jcarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapistd.d ../jcapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapimin.d ../jcapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jaricom.d ../jaricom.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../adler32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jaricom.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../crc32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../deflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jccoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzclose.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzlib.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jccolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzread.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcdctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../infback.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../inffast.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jchuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../inflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../inftrees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcomapi.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcparam.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../trees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../uncompr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../zutil.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcprepct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +/usr/bin/ar -rc libzlib.a adler32.o compress.o crc32.o deflate.o gzclose.o gzlib.o gzread.o gzwrite.o infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +/usr/bin/ranlib libzlib.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +g++ -o libzlib.so -shared -fPIC -Wl,-hlibzlib.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 adler32.o compress.o crc32.o deflate.o gzclose.o gzlib.o gzread.o gzwrite.o infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jctrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdatadst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdatasrc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zutil.d -MT zutil.obj ../zutil.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uncompr.d -MT uncompr.obj ../uncompr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF trees.d -MT trees.obj ../trees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inftrees.d -MT inftrees.obj ../inftrees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inflate.d -MT inflate.obj ../inflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inffast.d -MT inffast.obj ../inffast.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF infback.d -MT infback.obj ../infback.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzwrite.d -MT gzwrite.obj ../gzwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzread.d -MT gzread.obj ../gzread.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzlib.d -MT gzlib.obj ../gzlib.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzclose.d -MT gzclose.obj ../gzclose.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF deflate.d -MT deflate.obj ../deflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdcoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crc32.d -MT crc32.obj ../crc32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d -MT compress.obj ../compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF adler32.d -MT adler32.obj ../adler32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +mkdir ../../../include/os/WIN32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdcolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jddctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o adler32.obj -c ../adler32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o compress.obj -c ../compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o crc32.obj -c ../crc32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdhuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdinput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o deflate.obj -c ../deflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o gzclose.obj -c ../gzclose.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o gzlib.obj -c ../gzlib.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o gzread.obj -c ../gzread.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmerge.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdpostct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o gzwrite.obj -c ../gzwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdtrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jerror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o infback.obj -c ../infback.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jfdctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jfdctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o inffast.obj -c ../inffast.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o inflate.obj -c ../inflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o inftrees.obj -c ../inftrees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o trees.obj -c ../trees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o uncompr.obj -c ../uncompr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zutil.obj -c ../zutil.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jfdctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jidctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o zlib.dll -shared -Wl,--out-implib,libzlib.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +mkdir ../../../bin +mkdir ../../../bin/windows-x64-mingw +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jidctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make -C ./szipSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF sz_api.d ../sz_api.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF rice.d ../rice.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d ../encoding.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../encoding.c +../encoding.c:16:15: warning: ‘szip_encoder_status’ initialized and declared ‘extern’ + 16 | extern char * szip_encoder_status = "SZIP ENCODER ENABLED"; + | ^~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jidctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jquant1.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jquant2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jutils.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jmemmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jmemnobs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../decompressJPEG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +g++ -o libjpeg.so -shared -fPIC -Wl,-hlibjpeg.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jaricom.o jcapimin.o jcapistd.o jcarith.o jccoefct.o jccolor.o jcdctmgr.o jchuff.o jcinit.o jcmainct.o jcmarker.o jcmaster.o jcomapi.o jcparam.o jcprepct.o jcsample.o jctrans.o jdapimin.o jdapistd.o jdarith.o jdatadst.o jdatasrc.o jdcoefct.o jdcolor.o jddctmgr.o jdhuff.o jdinput.o jdmainct.o jdmarker.o jdmaster.o jdmerge.o jdpostct.o jdsample.o jdtrans.o jerror.o jfdctflt.o jfdctfst.o jfdctint.o jidctflt.o jidctfst.o jidctint.o jquant1.o jquant2.o jutils.o jmemmgr.o jmemnobs.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +/usr/bin/ar -rc libjpeg.a jaricom.o jcapimin.o jcapistd.o jcarith.o jccoefct.o jccolor.o jcdctmgr.o jchuff.o jcinit.o jcmainct.o jcmarker.o jcmaster.o jcomapi.o jcparam.o jcprepct.o jcsample.o jctrans.o jdapimin.o jdapistd.o jdarith.o jdatadst.o jdatasrc.o jdcoefct.o jdcolor.o jddctmgr.o jdhuff.o jdinput.o jdmainct.o jdmarker.o jdmaster.o jdmerge.o jdpostct.o jdsample.o jdtrans.o jerror.o jfdctflt.o jfdctfst.o jfdctint.o jidctflt.o jidctfst.o jidctint.o jquant1.o jquant2.o jutils.o jmemmgr.o jmemnobs.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +/usr/bin/ranlib libjpeg.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +/usr/bin/ar -rc libdecompressJPEG.a decompressJPEG.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +/usr/bin/ranlib libdecompressJPEG.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +g++ -o libdecompressJPEG.so -shared -fPIC -Wl,-hlibdecompressJPEG.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 decompressJPEG.o -ljpeg -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompressJPEG.d -MT decompressJPEG.obj ../decompressJPEG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemnobs.d -MT jmemnobs.obj ../jmemnobs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemmgr.d -MT jmemmgr.obj ../jmemmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jutils.d -MT jutils.obj ../jutils.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant2.d -MT jquant2.obj ../jquant2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant1.d -MT jquant1.obj ../jquant1.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctint.d -MT jidctint.obj ../jidctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctfst.d -MT jidctfst.obj ../jidctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctflt.d -MT jidctflt.obj ../jidctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctint.d -MT jfdctint.obj ../jfdctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../rice.c +../rice.c: In function ‘encode_scanline’: +../rice.c:1478:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1478 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1479:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1479 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1480:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1480 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1481:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1481 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1482:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1482 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1483:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1483 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1484:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1484 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1492:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1492 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1519:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1519 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1520:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1520 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1521:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1521 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1522:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1522 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1523:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1523 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1524:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1524 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1525:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1525 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1533:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1533 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1560:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1560 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1561:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1561 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1562:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1562 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1563:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1563 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1567:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1567 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1568:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1568 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1576:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1576 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1603:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1603 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1604:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1604 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1605:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1605 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1609:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1609 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1610:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1610 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1611:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1611 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1619:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1619 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1646:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1646 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1647:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1647 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1651:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1651 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1652:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1652 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1656:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1656 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1664:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1664 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1689:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1689 | value = (value << 6) | *s++ & 0x3f; + | ~~~~~^~~~~~ +../rice.c:1706:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1706 | value = (value << 7) | *s++ & 0x7f; + | ~~~~~^~~~~~ +../rice.c:1723:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1723 | value = (value << 8) | *s++ & 0xff; + | ~~~~~^~~~~~ +../rice.c: In function ‘rice_decode’: +../rice.c:4977:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4977 | *(s+1) = (*(s+1) << 1) | (data_word >> 30) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4978:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4978 | *(s+2) = (*(s+2) << 1) | (data_word >> 29) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4979:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4979 | *(s+3) = (*(s+3) << 1) | (data_word >> 28) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4980:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4980 | *(s+4) = (*(s+4) << 1) | (data_word >> 27) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4981:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4981 | *(s+5) = (*(s+5) << 1) | (data_word >> 26) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4982:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4982 | *(s+6) = (*(s+6) << 1) | (data_word >> 25) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4983:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4983 | *(s+7) = (*(s+7) << 1) | (data_word >> 24) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4998:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4998 | *(s+0) = (*(s+0) << 2) | (data_word >> 30) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4999:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4999 | *(s+1) = (*(s+1) << 2) | (data_word >> 28) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5000:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5000 | *(s+2) = (*(s+2) << 2) | (data_word >> 26) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5001:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5001 | *(s+3) = (*(s+3) << 2) | (data_word >> 24) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5002:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5002 | *(s+4) = (*(s+4) << 2) | (data_word >> 22) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5003:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5003 | *(s+5) = (*(s+5) << 2) | (data_word >> 20) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5004:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5004 | *(s+6) = (*(s+6) << 2) | (data_word >> 18) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5005:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5005 | *(s+7) = (*(s+7) << 2) | (data_word >> 16) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5017:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5017 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5018:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5018 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5019:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5019 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5020:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5020 | *(s+3) = (*(s+3) << 3) | (data_word >> 20) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5021:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5021 | *(s+4) = (*(s+4) << 3) | (data_word >> 17) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5031:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5031 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5032:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5032 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5033:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5033 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5048:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5048 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5049:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5049 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5050:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5050 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5051:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5051 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5058:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5058 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5059:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5059 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5060:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5060 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5061:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5061 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5073:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5073 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5074:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5074 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5075:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5075 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5085:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5085 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5086:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5086 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5087:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5087 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5097:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5097 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5098:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5098 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5113:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5113 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5114:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5114 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5124:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5124 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5125:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5125 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5135:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5135 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5136:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5136 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5146:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5146 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5147:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5147 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5162:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5162 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5163:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5163 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5173:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5173 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5174:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5174 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5184:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5184 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5185:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5185 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5195:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5195 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5196:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5196 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5211:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5211 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5212:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5212 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5219:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5219 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5220:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5220 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5227:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5227 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5228:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5228 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5235:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5235 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5236:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5236 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5358:8: warning: ‘ext2_bit’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 5358 | if (ext2_bit) + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctfst.d -MT jfdctfst.obj ../jfdctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctflt.d -MT jfdctflt.obj ../jfdctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jerror.d -MT jerror.obj ../jerror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdtrans.d -MT jdtrans.obj ../jdtrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdsample.d -MT jdsample.obj ../jdsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdpostct.d -MT jdpostct.obj ../jdpostct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../sz_api.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmerge.d -MT jdmerge.obj ../jdmerge.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +/usr/bin/ar -rc libszip.a encoding.o rice.o sz_api.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmaster.d -MT jdmaster.obj ../jdmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmarker.d -MT jdmarker.obj ../jdmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmainct.d -MT jdmainct.obj ../jdmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +/usr/bin/ranlib libszip.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdinput.d -MT jdinput.obj ../jdinput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdhuff.d -MT jdhuff.obj ../jdhuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jddctmgr.d -MT jddctmgr.obj ../jddctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +g++ -o libszip.so -shared -fPIC -Wl,-hlibszip.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 encoding.o rice.o sz_api.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcolor.d -MT jdcolor.obj ../jdcolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcoefct.d -MT jdcoefct.obj ../jdcoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatasrc.d -MT jdatasrc.obj ../jdatasrc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatadst.d -MT jdatadst.obj ../jdatadst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdarith.d -MT jdarith.obj ../jdarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF sz_api.d -MT sz_api.obj ../sz_api.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapistd.d -MT jdapistd.obj ../jdapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF rice.d -MT rice.obj ../rice.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapimin.d -MT jdapimin.obj ../jdapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jctrans.d -MT jctrans.obj ../jctrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcsample.d -MT jcsample.obj ../jcsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d -MT encoding.obj ../encoding.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcprepct.d -MT jcprepct.obj ../jcprepct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcparam.d -MT jcparam.obj ../jcparam.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcomapi.d -MT jcomapi.obj ../jcomapi.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmaster.d -MT jcmaster.obj ../jcmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmarker.d -MT jcmarker.obj ../jcmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmainct.d -MT jcmainct.obj ../jcmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcinit.d -MT jcinit.obj ../jcinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jchuff.d -MT jchuff.obj ../jchuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcdctmgr.d -MT jcdctmgr.obj ../jcdctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccolor.d -MT jccolor.obj ../jccolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccoefct.d -MT jccoefct.obj ../jccoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcarith.d -MT jcarith.obj ../jcarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o encoding.obj -c ../encoding.c +../encoding.c:16:15: warning: ‘szip_encoder_status’ initialized and declared ‘extern’ + 16 | extern char * szip_encoder_status = "SZIP ENCODER ENABLED"; + | ^~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapistd.d -MT jcapistd.obj ../jcapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapimin.d -MT jcapimin.obj ../jcapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jaricom.d -MT jaricom.obj ../jaricom.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Circular libjpeg.dll.a <- decompressJPEG.dll dependency dropped. +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jaricom.obj -c ../jaricom.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcapimin.obj -c ../jcapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcapistd.obj -c ../jcapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcarith.obj -c ../jcarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jccoefct.obj -c ../jccoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jccolor.obj -c ../jccolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcdctmgr.obj -c ../jcdctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jchuff.obj -c ../jchuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcinit.obj -c ../jcinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcmainct.obj -c ../jcmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcmarker.obj -c ../jcmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o rice.obj -c ../rice.c +../rice.c: In function ‘encode_scanline’: +../rice.c:1478:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1478 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1479:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1479 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1480:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1480 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1481:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1481 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1482:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1482 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1483:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1483 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1484:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1484 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1492:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1492 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1519:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1519 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1520:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1520 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1521:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1521 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1522:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1522 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1523:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1523 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1524:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1524 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1525:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1525 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1533:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1533 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1560:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1560 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1561:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1561 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1562:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1562 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1563:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1563 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1567:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1567 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1568:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1568 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1576:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1576 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1603:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1603 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1604:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1604 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1605:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1605 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1609:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1609 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1610:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1610 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1611:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1611 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1619:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1619 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1646:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1646 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1647:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1647 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1651:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1651 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1652:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1652 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1656:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1656 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1664:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1664 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1689:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1689 | value = (value << 6) | *s++ & 0x3f; + | ~~~~~^~~~~~ +../rice.c:1706:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1706 | value = (value << 7) | *s++ & 0x7f; + | ~~~~~^~~~~~ +../rice.c:1723:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1723 | value = (value << 8) | *s++ & 0xff; + | ~~~~~^~~~~~ +../rice.c: In function ‘rice_decode’: +../rice.c:4977:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4977 | *(s+1) = (*(s+1) << 1) | (data_word >> 30) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4978:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4978 | *(s+2) = (*(s+2) << 1) | (data_word >> 29) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4979:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4979 | *(s+3) = (*(s+3) << 1) | (data_word >> 28) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4980:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4980 | *(s+4) = (*(s+4) << 1) | (data_word >> 27) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4981:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4981 | *(s+5) = (*(s+5) << 1) | (data_word >> 26) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4982:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4982 | *(s+6) = (*(s+6) << 1) | (data_word >> 25) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4983:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4983 | *(s+7) = (*(s+7) << 1) | (data_word >> 24) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4998:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4998 | *(s+0) = (*(s+0) << 2) | (data_word >> 30) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4999:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4999 | *(s+1) = (*(s+1) << 2) | (data_word >> 28) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5000:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5000 | *(s+2) = (*(s+2) << 2) | (data_word >> 26) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5001:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5001 | *(s+3) = (*(s+3) << 2) | (data_word >> 24) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5002:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5002 | *(s+4) = (*(s+4) << 2) | (data_word >> 22) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5003:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5003 | *(s+5) = (*(s+5) << 2) | (data_word >> 20) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5004:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5004 | *(s+6) = (*(s+6) << 2) | (data_word >> 18) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5005:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5005 | *(s+7) = (*(s+7) << 2) | (data_word >> 16) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5017:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5017 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5018:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5018 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5019:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5019 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5020:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5020 | *(s+3) = (*(s+3) << 3) | (data_word >> 20) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5021:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5021 | *(s+4) = (*(s+4) << 3) | (data_word >> 17) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5031:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5031 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5032:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5032 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5033:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5033 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5048:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5048 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5049:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5049 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5050:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5050 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5051:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5051 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5058:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5058 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5059:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5059 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5060:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5060 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5061:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5061 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5073:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5073 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5074:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5074 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5075:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5075 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5085:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5085 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5086:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5086 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5087:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5087 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5097:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5097 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5098:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5098 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5113:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5113 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5114:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5114 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5124:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5124 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5125:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5125 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5135:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5135 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5136:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5136 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5146:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5146 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5147:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5147 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5162:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5162 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5163:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5163 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5173:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5173 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5174:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5174 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5184:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5184 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5185:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5185 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5195:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5195 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5196:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5196 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5211:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5211 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5212:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5212 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5219:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5219 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5220:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5220 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5227:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5227 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5228:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5228 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5235:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5235 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5236:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5236 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5358:8: warning: ‘ext2_bit’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 5358 | if (ext2_bit) + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcmaster.obj -c ../jcmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o sz_api.obj -c ../sz_api.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcomapi.obj -c ../jcomapi.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o szip.dll -shared -Wl,--out-implib,libszip.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ encoding.obj rice.obj sz_api.obj -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' +make -C ./bitshuffleSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Nothing to be done for 'install'. +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcparam.obj -c ../jcparam.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Nothing to be done for 'install'. +make -C ./cbfSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF md5c.d ../md5c.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcprepct.obj -c ../jcprepct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_ws.d ../cbf_ws.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_write_binary.d ../cbf_write_binary.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_write.d ../cbf_write.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_uncompressed.d ../cbf_uncompressed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_tree.d ../cbf_tree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_stx.d ../cbf_stx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_string.d ../cbf_string.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_simple.d ../cbf_simple.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_read_mime.d ../cbf_read_mime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_read_binary.d ../cbf_read_binary.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_predictor.d ../cbf_predictor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_packed.d ../cbf_packed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_lex.d ../cbf_lex.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_getopt.d ../cbf_getopt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcsample.obj -c ../jcsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_file.d ../cbf_file.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_context.d ../cbf_context.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_compress.d ../cbf_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_codes.d ../cbf_codes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_canonical.d ../cbf_canonical.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_byte_offset.d ../cbf_byte_offset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_binary.d ../cbf_binary.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jctrans.obj -c ../jctrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_ascii.d ../cbf_ascii.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_alloc.d ../cbf_alloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf.d ../cbf.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdapimin.obj -c ../jdapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdapistd.obj -c ../jdapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdarith.obj -c ../jdarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdatadst.obj -c ../jdatadst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdatasrc.obj -c ../jdatasrc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdcoefct.obj -c ../jdcoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdcolor.obj -c ../jdcolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jddctmgr.obj -c ../jddctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdhuff.obj -c ../jdhuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdinput.obj -c ../jdinput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdmainct.obj -c ../jdmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf.c +../cbf.c: In function ‘cbf_validate’: +../cbf.c:7388:8: warning: ignoring return value of ‘fscanf’, declared with attribute warn_unused_result [-Wunused-result] + 7388 | fscanf(fout, "%s", output); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cbf.c:7493:8: warning: ignoring return value of ‘fscanf’, declared with attribute warn_unused_result [-Wunused-result] + 7493 | fscanf(fout, "%s", output); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cbf.c: In function ‘cbf_drel’: +../cbf.c:8417:2: warning: ignoring return value of ‘system’, declared with attribute warn_unused_result [-Wunused-result] + 8417 | system(preprocess); + | ^~~~~~~~~~~~~~~~~~ +../cbf.c:8425:2: warning: ignoring return value of ‘system’, declared with attribute warn_unused_result [-Wunused-result] + 8425 | system(evaluate); + | ^~~~~~~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from ../cbf.c:264: +In function ‘strncpy’, + inlined from ‘cbf_validate’ at ../cbf.c:7362:6: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 80 bytes from a string of length 81 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘cbf_validate’ at ../cbf.c:7441:19: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 80 bytes from a string of length 81 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_alloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_ascii.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_binary.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdmarker.obj -c ../jdmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdmaster.obj -c ../jdmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_byte_offset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdmerge.obj -c ../jdmerge.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdpostct.obj -c ../jdpostct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdsample.obj -c ../jdsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdtrans.obj -c ../jdtrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_canonical.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jerror.obj -c ../jerror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jfdctflt.obj -c ../jfdctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jfdctfst.obj -c ../jfdctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_codes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_context.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_file.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_getopt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jfdctint.obj -c ../jfdctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jidctflt.obj -c ../jidctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jidctfst.obj -c ../jidctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_lex.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_packed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_predictor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_read_binary.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_read_mime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jidctint.obj -c ../jidctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jquant1.obj -c ../jquant1.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_simple.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_string.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jquant2.obj -c ../jquant2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_stx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jutils.obj -c ../jutils.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_tree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jmemmgr.obj -c ../jmemmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jmemnobs.obj -c ../jmemnobs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o decompressJPEG.obj -c ../decompressJPEG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_uncompressed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o jpeg.dll -shared -Wl,--out-implib,libjpeg.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ jaricom.obj jcapimin.obj jcapistd.obj jcarith.obj jccoefct.obj jccolor.obj jcdctmgr.obj jchuff.obj jcinit.obj jcmainct.obj jcmarker.obj jcmaster.obj jcomapi.obj jcparam.obj jcprepct.obj jcsample.obj jctrans.obj jdapimin.obj jdapistd.obj jdarith.obj jdatadst.obj jdatasrc.obj jdcoefct.obj jdcolor.obj jddctmgr.obj jdhuff.obj jdinput.obj jdmainct.obj jdmarker.obj jdmaster.obj jdmerge.obj jdpostct.obj jdsample.obj jdtrans.obj jerror.obj jfdctflt.obj jfdctfst.obj jfdctint.obj jidctflt.obj jidctfst.obj jidctint.obj jquant1.obj jquant2.obj jutils.obj jmemmgr.obj jmemnobs.obj -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o decompressJPEG.dll -shared -Wl,--out-implib,libdecompressJPEG.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ decompressJPEG.obj -ljpeg -lws2_32 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_write.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_write_binary.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_ws.c +../cbf_ws.c: In function ‘cbf_find_bracketstring’: +../cbf_ws.c:1087:26: warning: ‘tokentype’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1087 | tokentype[depth-1]= *stringtype; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make -C ./bloscSrc install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../md5c.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +/usr/bin/ar -rc libcbfad.a cbf.o cbf_alloc.o cbf_ascii.o cbf_binary.o cbf_byte_offset.o cbf_canonical.o cbf_codes.o cbf_compress.o cbf_context.o cbf_file.o cbf_getopt.o cbf_lex.o cbf_packed.o cbf_predictor.o cbf_read_binary.o cbf_read_mime.o cbf_simple.o cbf_string.o cbf_stx.o cbf_tree.o cbf_uncompressed.o cbf_write.o cbf_write_binary.o cbf_ws.o md5c.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +/usr/bin/ranlib libcbfad.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle.d ../../../supportApp/bloscSrc/blosc/shuffle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bitshuffle-generic.d ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +g++ -o libcbfad.so -shared -fPIC -Wl,-hlibcbfad.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 cbf.o cbf_alloc.o cbf_ascii.o cbf_binary.o cbf_byte_offset.o cbf_canonical.o cbf_codes.o cbf_compress.o cbf_context.o cbf_file.o cbf_getopt.o cbf_lex.o cbf_packed.o cbf_predictor.o cbf_read_binary.o cbf_read_mime.o cbf_simple.o cbf_string.o cbf_stx.o cbf_tree.o cbf_uncompressed.o cbf_write.o cbf_write_binary.o cbf_ws.o md5c.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle-generic.d ../../../supportApp/bloscSrc/blosc/shuffle-generic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosclz.d ../../../supportApp/bloscSrc/blosc/blosclz.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc.d ../../../supportApp/bloscSrc/blosc/blosc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4hc.d ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Nothing to be done for 'install'. +make -C ./tiffSrc install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4.d ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_unix.d ../tif_unix.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_zip.d ../tif_zip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_write.d ../tif_write.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_warning.d ../tif_warning.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_version.d ../tif_version.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_tile.d ../tif_tile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_thunder.d ../tif_thunder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_swab.d ../tif_swab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_strip.d ../tif_strip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-stubs-internal.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_read.d ../tif_read.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-sinksource.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_print.d ../tif_print.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_predict.d ../tif_predict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-c.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_pixarlog.d ../tif_pixarlog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_packbits.d ../tif_packbits.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_open.d ../tif_open.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_ojpeg.d ../tif_ojpeg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_decompress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_next.d ../tif_next.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_decompress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstdmt_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_lzw.d ../tif_lzw.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_luv.d ../tif_luv.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg_12.d ../tif_jpeg_12.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg.d ../tif_jpeg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_common.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jbig.d ../tif_jbig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xxhash.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_getimage.d ../tif_getimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threading.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pool.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_flush.d ../tif_flush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_decompress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3sm.d ../tif_fax3sm.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error_private.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3.d ../tif_fax3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_extension.d ../tif_extension.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_error.d ../tif_error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dumpmode.d ../tif_dumpmode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirwrite.d ../tif_dirwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirread.d ../tif_dirread.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entropy_common.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirinfo.d ../tif_dirinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dir.d ../tif_dir.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_compress.d ../tif_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_color.d ../tif_color.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_codec.d ../tif_codec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_close.d ../tif_close.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_aux.d ../tif_aux.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_aux.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_close.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_codec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_color.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dir.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dirinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dirread.c +../tif_dirread.c: In function ‘EstimateStripByteCounts’: +../tif_dirread.c:4272:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 4272 | if( !_TIFFFillStriles( tif ) ) + | ^~ +../tif_dirread.c:4275:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 4275 | if (td->td_stripbytecount) + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dirwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dumpmode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_extension.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_fax3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_fax3sm.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_flush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_getimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_jbig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_jpeg.c +In file included from ../../../include/os/Linux/jpeglib.h:27, + from ../tif_jpeg.c:88: +../../../include/os/Linux/jmorecfg.h:248: warning: "EXTERN" redefined + 248 | #define EXTERN(type) extern type + | +In file included from ../tiffiop.h:66, + from ../tif_jpeg.c:30: +../os/default/tiffio.h:91: note: this is the location of the previous definition + 91 | # define EXTERN extern + | +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_jpeg_12.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_luv.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_lzw.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_next.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_ojpeg.c +In file included from ../../../include/os/Linux/jpeglib.h:27, + from ../tif_ojpeg.c:217: +../../../include/os/Linux/jmorecfg.h:248: warning: "EXTERN" redefined + 248 | #define EXTERN(type) extern type + | +In file included from ../tiffiop.h:66, + from ../tif_ojpeg.c:126: +../os/default/tiffio.h:91: note: this is the location of the previous definition + 91 | # define EXTERN extern + | +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_open.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_packbits.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_pixarlog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_predict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_print.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_read.c +../tif_read.c: In function ‘TIFFFillStrip’: +../tif_read.c:495:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 495 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) + | ^~ +../tif_read.c:498:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 498 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) + | ^~ +../tif_read.c: In function ‘TIFFFillTile’: +../tif_read.c:798:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 798 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) + | ^~ +../tif_read.c:801:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 801 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) + | ^~ +../tif_read.c: In function ‘TIFFStartStrip’: +../tif_read.c:960:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 960 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) + | ^~ +../tif_read.c:963:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 963 | if ((tif->tif_flags & TIFF_CODERSETUP) == 0) { + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_strip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_swab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_thunder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::Append(const char*, size_t)’: +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1013:33: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long unsigned int’} [-Wsign-compare] + 1013 | if (curr_iov_index_ + 1 >= output_iov_count_) { + | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::AppendFromSelf(size_t, size_t)’: +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1095:35: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long unsigned int’} [-Wsign-compare] + 1095 | if (curr_iov_index_ + 1 >= output_iov_count_) { + | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: At global scope: +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:567:13: warning: ‘void snappy::ComputeTable()’ defined but not used [-Wunused-function] + 567 | static void ComputeTable() { + | ^~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_tile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_version.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_warning.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_write.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_zip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_unix.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +/usr/bin/ar -rc libtiff.a tif_aux.o tif_close.o tif_codec.o tif_color.o tif_compress.o tif_dir.o tif_dirinfo.o tif_dirread.o tif_dirwrite.o tif_dumpmode.o tif_error.o tif_extension.o tif_fax3.o tif_fax3sm.o tif_flush.o tif_getimage.o tif_jbig.o tif_jpeg.o tif_jpeg_12.o tif_luv.o tif_lzw.o tif_next.o tif_ojpeg.o tif_open.o tif_packbits.o tif_pixarlog.o tif_predict.o tif_print.o tif_read.o tif_strip.o tif_swab.o tif_thunder.o tif_tile.o tif_version.o tif_warning.o tif_write.o tif_zip.o tif_unix.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +/usr/bin/ranlib libtiff.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +g++ -o libtiff.so -shared -fPIC -Wl,-hlibtiff.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 tif_aux.o tif_close.o tif_codec.o tif_color.o tif_compress.o tif_dir.o tif_dirinfo.o tif_dirread.o tif_dirwrite.o tif_dumpmode.o tif_error.o tif_extension.o tif_fax3.o tif_fax3sm.o tif_flush.o tif_getimage.o tif_jbig.o tif_jpeg.o tif_jpeg_12.o tif_luv.o tif_lzw.o tif_next.o tif_ojpeg.o tif_open.o tif_packbits.o tif_pixarlog.o tif_predict.o tif_print.o tif_read.o tif_strip.o tif_swab.o tif_thunder.o tif_tile.o tif_version.o tif_warning.o tif_write.o tif_zip.o tif_unix.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_win32.d -MT tif_win32.obj ../tif_win32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_zip.d -MT tif_zip.obj ../tif_zip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_write.d -MT tif_write.obj ../tif_write.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_warning.d -MT tif_warning.obj ../tif_warning.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_version.d -MT tif_version.obj ../tif_version.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_tile.d -MT tif_tile.obj ../tif_tile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_thunder.d -MT tif_thunder.obj ../tif_thunder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_swab.d -MT tif_swab.obj ../tif_swab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_strip.d -MT tif_strip.obj ../tif_strip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_read.d -MT tif_read.obj ../tif_read.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_print.d -MT tif_print.obj ../tif_print.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_predict.d -MT tif_predict.obj ../tif_predict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_pixarlog.d -MT tif_pixarlog.obj ../tif_pixarlog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_packbits.d -MT tif_packbits.obj ../tif_packbits.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_open.d -MT tif_open.obj ../tif_open.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_ojpeg.d -MT tif_ojpeg.obj ../tif_ojpeg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_next.d -MT tif_next.obj ../tif_next.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_lzw.d -MT tif_lzw.obj ../tif_lzw.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_luv.d -MT tif_luv.obj ../tif_luv.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg_12.d -MT tif_jpeg_12.obj ../tif_jpeg_12.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg.d -MT tif_jpeg.obj ../tif_jpeg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jbig.d -MT tif_jbig.obj ../tif_jbig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_getimage.d -MT tif_getimage.obj ../tif_getimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_flush.d -MT tif_flush.obj ../tif_flush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3sm.d -MT tif_fax3sm.obj ../tif_fax3sm.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3.d -MT tif_fax3.obj ../tif_fax3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_extension.d -MT tif_extension.obj ../tif_extension.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_error.d -MT tif_error.obj ../tif_error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dumpmode.d -MT tif_dumpmode.obj ../tif_dumpmode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirwrite.d -MT tif_dirwrite.obj ../tif_dirwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirread.d -MT tif_dirread.obj ../tif_dirread.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirinfo.d -MT tif_dirinfo.obj ../tif_dirinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dir.d -MT tif_dir.obj ../tif_dir.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_compress.d -MT tif_compress.obj ../tif_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_color.d -MT tif_color.obj ../tif_color.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_codec.d -MT tif_codec.obj ../tif_codec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_close.d -MT tif_close.obj ../tif_close.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_aux.d -MT tif_aux.obj ../tif_aux.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_aux.obj -c ../tif_aux.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_close.obj -c ../tif_close.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_codec.obj -c ../tif_codec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_color.obj -c ../tif_color.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_compress.obj -c ../tif_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dir.obj -c ../tif_dir.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dirinfo.obj -c ../tif_dirinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/blosc.c +In file included from /usr/include/stdio.h:867, + from ../../../supportApp/bloscSrc/blosc/blosc.c:11: +In function ‘fprintf’, + inlined from ‘blosc_d.isra.0’ at ../../../supportApp/bloscSrc/blosc/blosc.c:752:9: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:100:10: warning: ‘%s’ directive argument is null [-Wformat-overflow=] + 100 | return __fprintf_chk (__stream, __USE_FORTIFY_LEVEL - 1, __fmt, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 101 | __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘blosc_d.isra.0’: +../../../supportApp/bloscSrc/blosc/blosc.c:754:31: note: format string is defined here + 754 | "support for '%s' format. ", compname); + | ^~ +In file included from /usr/include/stdio.h:867, + from ../../../supportApp/bloscSrc/blosc/blosc.c:11: +In function ‘fprintf’, + inlined from ‘write_compression_header.isra.0’ at ../../../supportApp/bloscSrc/blosc/blosc.c:1105:5: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:100:10: warning: ‘%s’ directive argument is null [-Wformat-overflow=] + 100 | return __fprintf_chk (__stream, __USE_FORTIFY_LEVEL - 1, __fmt, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 101 | __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/blosclz.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dirread.obj -c ../tif_dirread.c +../tif_dirread.c: In function ‘EstimateStripByteCounts’: +../tif_dirread.c:4272:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 4272 | if( !_TIFFFillStriles( tif ) ) + | ^~ +../tif_dirread.c:4275:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 4275 | if (td->td_stripbytecount) + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/shuffle-generic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/shuffle.c +../../../supportApp/bloscSrc/blosc/shuffle.c:288:4: warning: #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. [-Wcpp] + 288 | #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. + | ^~~~~~~ +../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘get_shuffle_implementation’: +../../../supportApp/bloscSrc/blosc/shuffle.c:298:22: warning: unused variable ‘cpu_features’ [-Wunused-variable] + 298 | blosc_cpu_features cpu_features = blosc_get_cpu_features(); + | ^~~~~~~~~~~~ +In file included from ../../../supportApp/bloscSrc/blosc/shuffle.c:12: +At top level: +../../../supportApp/bloscSrc/blosc/shuffle-generic.h:61:13: warning: ‘unshuffle_generic_inline’ defined but not used [-Wunused-function] + 61 | static void unshuffle_generic_inline(const size_t type_size, + | ^~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/blosc/shuffle-generic.h:32:13: warning: ‘shuffle_generic_inline’ defined but not used [-Wunused-function] + 32 | static void shuffle_generic_inline(const size_t type_size, + | ^~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +/usr/bin/ar -rc libblosc.a entropy_common.o error_private.o fse_decompress.o pool.o threading.o xxhash.o zstd_common.o fse_compress.o zstd_compress.o huf_compress.o zstdmt_compress.o huf_decompress.o zstd_decompress.o snappy.o snappy-c.o snappy-sinksource.o snappy-stubs-internal.o lz4.o lz4hc.o blosc.o blosclz.o shuffle-generic.o bitshuffle-generic.o shuffle.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +/usr/bin/ranlib libblosc.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -o libblosc.so -shared -fPIC -Wl,-hlibblosc.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 entropy_common.o error_private.o fse_decompress.o pool.o threading.o xxhash.o zstd_common.o fse_compress.o zstd_compress.o huf_compress.o zstdmt_compress.o huf_decompress.o zstd_decompress.o snappy.o snappy-c.o snappy-sinksource.o snappy-stubs-internal.o lz4.o lz4hc.o blosc.o blosclz.o shuffle-generic.o bitshuffle-generic.o shuffle.o -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle.d -MT shuffle.obj ../../../supportApp/bloscSrc/blosc/shuffle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bitshuffle-generic.d -MT bitshuffle-generic.obj ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle-generic.d -MT shuffle-generic.obj ../../../supportApp/bloscSrc/blosc/shuffle-generic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosclz.d -MT blosclz.obj ../../../supportApp/bloscSrc/blosc/blosclz.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc.d -MT blosc.obj ../../../supportApp/bloscSrc/blosc/blosc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4hc.d -MT lz4hc.obj ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4.d -MT lz4.obj ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dirwrite.obj -c ../tif_dirwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-stubs-internal.d -MT snappy-stubs-internal.obj ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-sinksource.d -MT snappy-sinksource.obj ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dumpmode.obj -c ../tif_dumpmode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-c.d -MT snappy-c.obj ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_error.obj -c ../tif_error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy.d -MT snappy.obj ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_extension.obj -c ../tif_extension.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_decompress.d -MT zstd_decompress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_decompress.d -MT huf_decompress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstdmt_compress.d -MT zstdmt_compress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_compress.d -MT huf_compress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_compress.d -MT zstd_compress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_compress.d -MT fse_compress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_common.d -MT zstd_common.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xxhash.d -MT xxhash.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threading.d -MT threading.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pool.d -MT pool.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_decompress.d -MT fse_decompress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error_private.d -MT error_private.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entropy_common.d -MT entropy_common.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o entropy_common.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o error_private.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o fse_decompress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pool.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o threading.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xxhash.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zstd_common.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_fax3.obj -c ../tif_fax3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_fax3sm.obj -c ../tif_fax3sm.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_flush.obj -c ../tif_flush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o fse_compress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_getimage.obj -c ../tif_getimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_jbig.obj -c ../tif_jbig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_jpeg.obj -c ../tif_jpeg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_jpeg_12.obj -c ../tif_jpeg_12.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_luv.obj -c ../tif_luv.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_lzw.obj -c ../tif_lzw.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_next.obj -c ../tif_next.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_ojpeg.obj -c ../tif_ojpeg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_open.obj -c ../tif_open.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_packbits.obj -c ../tif_packbits.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_pixarlog.obj -c ../tif_pixarlog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_predict.obj -c ../tif_predict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_print.obj -c ../tif_print.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_read.obj -c ../tif_read.c +../tif_read.c: In function ‘TIFFFillStrip’: +../tif_read.c:495:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 495 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) + | ^~ +../tif_read.c:498:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 498 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) + | ^~ +../tif_read.c: In function ‘TIFFFillTile’: +../tif_read.c:798:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 798 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) + | ^~ +../tif_read.c:801:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 801 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) + | ^~ +../tif_read.c: In function ‘TIFFStartStrip’: +../tif_read.c:960:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 960 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) + | ^~ +../tif_read.c:963:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 963 | if ((tif->tif_flags & TIFF_CODERSETUP) == 0) { + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_strip.obj -c ../tif_strip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_swab.obj -c ../tif_swab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_thunder.obj -c ../tif_thunder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_tile.obj -c ../tif_tile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_version.obj -c ../tif_version.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_warning.obj -c ../tif_warning.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_write.obj -c ../tif_write.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_zip.obj -c ../tif_zip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_win32.obj -c ../tif_win32.c +../tif_win32.c: In function ‘TIFFFdOpen’: +../tif_win32.c:242:35: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 242 | tif = TIFFClientOpen(name, mode, (thandle_t)ifd, /* FIXME: WIN64 cast to pointer warning */ + | ^ +../tif_win32.c: In function ‘TIFFOpen’: +../tif_win32.c:287:19: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 287 | tif = TIFFFdOpen((int)fd, name, mode); /* FIXME: WIN64 cast from pointer to int warning */ + | ^ +../tif_win32.c: In function ‘TIFFOpenW’: +../tif_win32.c:342:19: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 342 | tif = TIFFFdOpen((int)fd, /* FIXME: WIN64 cast from pointer to int warning */ + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o tiff.dll -shared -Wl,--out-implib,libtiff.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ tif_aux.obj tif_close.obj tif_codec.obj tif_color.obj tif_compress.obj tif_dir.obj tif_dirinfo.obj tif_dirread.obj tif_dirwrite.obj tif_dumpmode.obj tif_error.obj tif_extension.obj tif_fax3.obj tif_fax3sm.obj tif_flush.obj tif_getimage.obj tif_jbig.obj tif_jpeg.obj tif_jpeg_12.obj tif_luv.obj tif_lzw.obj tif_next.obj tif_ojpeg.obj tif_open.obj tif_packbits.obj tif_pixarlog.obj tif_predict.obj tif_print.obj tif_read.obj tif_strip.obj tif_swab.obj tif_thunder.obj tif_tile.obj tif_version.obj tif_warning.obj tif_write.obj tif_zip.obj tif_win32.obj -luser32 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' +make -C ./xml2Src install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp_stream.d ../nanohttp_stream.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlstring.d ../xmlstring.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpointer.d ../xpointer.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpath.d ../xpath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlwriter.d ../xmlwriter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlunicode.d ../xmlunicode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemastypes.d ../xmlschemastypes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemas.d ../xmlschemas.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlsave.d ../xmlsave.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmodule.d ../xmlmodule.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlregexp.d ../xmlregexp.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zstd_compress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlreader.d ../xmlreader.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmemory.d ../xmlmemory.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlIO.d ../xmlIO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xlink.d ../xlink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xinclude.d ../xinclude.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF valid.d ../valid.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uri.d ../uri.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tree.d ../tree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threads.d ../threads.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF schematron.d ../schematron.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX.d ../SAX.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o huf_compress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX2.d ../SAX2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF relaxng.d ../relaxng.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pattern.d ../pattern.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parserInternals.d ../parserInternals.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parser.d ../parser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp.d ../nanohttp.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanoftp.d ../nanoftp.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF list.d ../list.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zstdmt_compress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF legacy.d ../legacy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLtree.d ../HTMLtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLparser.d ../HTMLparser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF hash.d ../hash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF globals.d ../globals.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error.d ../error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entities.d ../entities.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d ../encoding.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF DOCBparser.d ../DOCBparser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dict.d ../dict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF debugXML.d ../debugXML.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF chvalid.d ../chvalid.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF catalog.d ../catalog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF c14n.d ../c14n.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF buf.d ../buf.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +mkdir ../../../include/os/Linux/libxml +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o huf_decompress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../buf.c +../buf.c: In function ‘xmlBufMemoryError’: +../buf.c:94:5: warning: too many arguments for format [-Wformat-extra-args] + 94 | __xmlSimpleError(XML_FROM_BUFFER, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../buf.c: In function ‘xmlBufOverflowError’: +../buf.c:109:5: warning: too many arguments for format [-Wformat-extra-args] + 109 | __xmlSimpleError(XML_FROM_BUFFER, XML_BUF_OVERFLOW, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zstd_decompress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../c14n.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o snappy.obj -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::Append(const char*, size_t)’: +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1013:33: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long long unsigned int’} [-Wsign-compare] + 1013 | if (curr_iov_index_ + 1 >= output_iov_count_) { + | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::AppendFromSelf(size_t, size_t)’: +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1095:35: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long long unsigned int’} [-Wsign-compare] + 1095 | if (curr_iov_index_ + 1 >= output_iov_count_) { + | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: At global scope: +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:567:13: warning: ‘void snappy::ComputeTable()’ defined but not used [-Wunused-function] + 567 | static void ComputeTable() { + | ^~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../catalog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../chvalid.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o snappy-c.obj -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o snappy-sinksource.obj -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o snappy-stubs-internal.obj -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../debugXML.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../dict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../DOCBparser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../encoding.c +../encoding.c: In function ‘xmlEncodingErrMemory’: +../encoding.c:86:5: warning: too many arguments for format [-Wformat-extra-args] + 86 | __xmlSimpleError(XML_FROM_I18N, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../encoding.c: In function ‘xmlCharEncCloseFunc__internal_alias’: +../encoding.c:2856:12: warning: variable ‘handler_in_list’ set but not used [-Wunused-but-set-variable] + 2856 | int i, handler_in_list = 0; + | ^~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../entities.c +../entities.c: In function ‘xmlEntitiesErrMemory’: +../entities.c:76:5: warning: too many arguments for format [-Wformat-extra-args] + 76 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../globals.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o lz4.obj -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../hash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../HTMLparser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../HTMLtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../legacy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../list.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o lz4hc.obj -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nanoftp.c +../nanoftp.c: In function ‘xmlFTPErrMemory’: +../nanoftp.c:176:5: warning: too many arguments for format [-Wformat-extra-args] + 176 | __xmlSimpleError(XML_FROM_FTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosc.obj -c ../../../supportApp/bloscSrc/blosc/blosc.c +../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘parallel_blosc’: +../../../supportApp/bloscSrc/blosc/blosc.c:858:7: warning: unused variable ‘rc’ [-Wunused-variable] + 858 | int rc; + | ^~ +../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘t_blosc’: +../../../supportApp/bloscSrc/blosc/blosc.c:1583:7: warning: unused variable ‘rc’ [-Wunused-variable] + 1583 | int rc; + | ^~ +../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘blosc_release_threadpool’: +../../../supportApp/bloscSrc/blosc/blosc.c:2062:7: warning: unused variable ‘rc’ [-Wunused-variable] + 2062 | int rc; + | ^~ +../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘blosc_d.isra.0’: +../../../supportApp/bloscSrc/blosc/blosc.c:752:9: warning: ‘%s’ directive argument is null [-Wformat-overflow=] + 752 | fprintf(stderr, + | ^~~~~~~~~~~~~~~ + 753 | "Blosc has not been compiled with decompression " + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 754 | "support for '%s' format. ", compname); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/blosc/blosc.c:754:31: note: format string is defined here + 754 | "support for '%s' format. ", compname); + | ^~ +../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘write_compression_header.isra.0’: +../../../supportApp/bloscSrc/blosc/blosc.c:1105:5: warning: ‘%s’ directive argument is null [-Wformat-overflow=] + 1105 | fprintf(stderr, "Blosc has not been compiled with '%s' ", compname); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘blosc_c’: +../../../supportApp/bloscSrc/blosc/blosc.c:648:7: warning: ‘%s’ directive argument is null [-Wformat-overflow=] + 648 | fprintf(stderr, "Blosc has not been compiled with '%s' ", compname); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosclz.obj -c ../../../supportApp/bloscSrc/blosc/blosclz.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o shuffle-generic.obj -c ../../../supportApp/bloscSrc/blosc/shuffle-generic.c +../../../supportApp/bloscSrc/blosc/shuffle-generic.c: In function ‘shuffle_generic’: +../../../supportApp/bloscSrc/blosc/shuffle-generic.c:17:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 17 | } + | ^ +../../../supportApp/bloscSrc/blosc/shuffle-generic.c: In function ‘unshuffle_generic’: +../../../supportApp/bloscSrc/blosc/shuffle-generic.c:25:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 25 | } + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nanohttp.c +../nanohttp.c: In function ‘xmlHTTPErrMemory’: +../nanohttp.c:177:5: warning: too many arguments for format [-Wformat-extra-args] + 177 | __xmlSimpleError(XML_FROM_HTTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o bitshuffle-generic.obj -c ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_byte_elem_remainder’: +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:40:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 40 | } + | ^ +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_byte_elem_scal’: +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:48:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 48 | } + | ^ +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_bit_byte_remainder’: +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:85:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 85 | } + | ^ +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_elem’: +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:110:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 110 | } + | ^ +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_bitrow_eight’: +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:122:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 122 | } + | ^ +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_bit_elem_scal’: +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:140:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 140 | } + | ^ +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_shuffle_bit_eightelem_scal’: +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:205:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 205 | } + | ^ +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_untrans_bit_elem_scal’: +../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:221:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 221 | } + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o shuffle.obj -c ../../../supportApp/bloscSrc/blosc/shuffle.c +../../../supportApp/bloscSrc/blosc/shuffle.c:288:4: warning: #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. [-Wcpp] + 288 | #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. + | ^~~~~~~ +../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘get_shuffle_implementation’: +../../../supportApp/bloscSrc/blosc/shuffle.c:298:22: warning: unused variable ‘cpu_features’ [-Wunused-variable] + 298 | blosc_cpu_features cpu_features = blosc_get_cpu_features(); + | ^~~~~~~~~~~~ +In file included from ../../../supportApp/bloscSrc/blosc/shuffle.c:12: +At top level: +../../../supportApp/bloscSrc/blosc/shuffle-generic.h:61:13: warning: ‘unshuffle_generic_inline’ defined but not used [-Wunused-function] + 61 | static void unshuffle_generic_inline(const size_t type_size, + | ^~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/blosc/shuffle-generic.h:32:13: warning: ‘shuffle_generic_inline’ defined but not used [-Wunused-function] + 32 | static void shuffle_generic_inline(const size_t type_size, + | ^~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘shuffle’: +../../../supportApp/bloscSrc/blosc/shuffle.c:387:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 387 | } + | ^ +../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘unshuffle’: +../../../supportApp/bloscSrc/blosc/shuffle.c:400:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 400 | } + | ^ +../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘bitshuffle’: +../../../supportApp/bloscSrc/blosc/shuffle.c:421:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 421 | } + | ^ +../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘bitunshuffle’: +../../../supportApp/bloscSrc/blosc/shuffle.c:442:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] + 442 | } + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o blosc.dll -shared -Wl,--out-implib,libblosc.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ entropy_common.obj error_private.obj fse_decompress.obj pool.obj threading.obj xxhash.obj zstd_common.obj fse_compress.obj zstd_compress.obj huf_compress.obj zstdmt_compress.obj huf_decompress.obj zstd_decompress.obj snappy.obj snappy-c.obj snappy-sinksource.obj snappy-stubs-internal.obj lz4.obj lz4hc.obj blosc.obj blosclz.obj shuffle-generic.obj bitshuffle-generic.obj shuffle.obj -lzlib -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' +make -C ./hdf5Src install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5detect.d ../H5detect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d ../jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d ../blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5lib_settings.d ../H5lib_settings.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tinit.d ../os/Linux/H5Tinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ztrans.d ../H5Ztrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zszip.d ../H5Zszip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zshuffle.d ../H5Zshuffle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zscaleoffset.d ../H5Zscaleoffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Znbit.d ../H5Znbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zfletcher32.d ../H5Zfletcher32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zdeflate.d ../H5Zdeflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Z.d ../H5Z.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5WB.d ../H5WB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5VM.d ../H5VM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5TS.d ../H5TS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvlen.d ../H5Tvlen.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvisit.d ../H5Tvisit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tstrpad.d ../H5Tstrpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tprecis.d ../H5Tprecis.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tpad.d ../H5Tpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Torder.d ../H5Torder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Topaque.d ../H5Topaque.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toh.d ../H5Toh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toffset.d ../H5Toffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tnative.d ../H5Tnative.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfloat.d ../H5Tfloat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfixed.d ../H5Tfixed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfields.d ../H5Tfields.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tenum.d ../H5Tenum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdeprec.d ../H5Tdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdbg.d ../H5Tdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcset.d ../H5Tcset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tconv.d ../H5Tconv.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcompound.d ../H5Tcompound.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcommit.d ../H5Tcommit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tbit.d ../H5Tbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tarray.d ../H5Tarray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5T.d ../H5T.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ST.d ../H5ST.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMtest.d ../H5SMtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMmessage.d ../H5SMmessage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMcache.d ../H5SMcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMbtree2.d ../H5SMbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SM.d ../H5SM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SL.d ../H5SL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Stest.d ../H5Stest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sselect.d ../H5Sselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Spoint.d ../H5Spoint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Snone.d ../H5Snone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Shyper.d ../H5Shyper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sdbg.d ../H5Sdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sall.d ../H5Sall.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5S.d ../H5S.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5RS.d ../H5RS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5UC.d ../H5UC.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Rdeprec.d ../H5Rdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5R.d ../H5R.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PL.d ../H5PL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PB.d ../H5PB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ptest.d ../H5Ptest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pstrcpl.d ../H5Pstrcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpypl.d ../H5Pocpypl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpl.d ../H5Pocpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plcpl.d ../H5Plcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plapl.d ../H5Plapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pint.d ../H5Pint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pgcpl.d ../H5Pgcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfmpl.d ../H5Pfmpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfcpl.d ../H5Pfcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfapl.d ../H5Pfapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pencdec.d ../H5Pencdec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdxpl.d ../H5Pdxpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdeprec.d ../H5Pdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdcpl.d ../H5Pdcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdapl.d ../H5Pdapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pacpl.d ../H5Pacpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5P.d ../H5P.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ounknown.d ../H5Ounknown.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Otest.d ../H5Otest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ostab.d ../H5Ostab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshmesg.d ../H5Oshmesg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshared.d ../H5Oshared.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Osdspace.d ../H5Osdspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Orefcount.d ../H5Orefcount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Opline.d ../H5Opline.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Onull.d ../H5Onull.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oname.d ../H5Oname.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omtime.d ../H5Omtime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omessage.d ../H5Omessage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olink.d ../H5Olink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olinfo.d ../H5Olinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olayout.d ../H5Olayout.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oginfo.d ../H5Oginfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofsinfo.d ../H5Ofsinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oflush.d ../H5Oflush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofill.d ../H5Ofill.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../parser.c +../parser.c: In function ‘xmlParseReference__internal_alias’: +../parser.c:7258:44: warning: ‘%d’ directive output may be truncated writing between 3 and 10 bytes into a region of size 9 [-Wformat-truncation=] + 7258 | snprintf((char *)out, sizeof(out), "#%d", value); + | ^~ +../parser.c:7258:42: note: directive argument in the range [256, 2147483647] + 7258 | snprintf((char *)out, sizeof(out), "#%d", value); + | ^~~~~ +In file included from /usr/include/stdio.h:867, + from ../libxml.h:51, + from ../parser.c:34: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output between 5 and 12 bytes into a destination of size 10 + 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 68 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../parser.c:7256:47: warning: ‘__builtin___snprintf_chk’ output may be truncated before the last format character [-Wformat-truncation=] + 7256 | snprintf((char *)out, sizeof(out), "#x%X", value); + | ^ +In file included from /usr/include/stdio.h:867, + from ../libxml.h:51, + from ../parser.c:34: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output between 6 and 11 bytes into a destination of size 10 + 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 68 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oefl.d ../H5Oefl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odtype.d ../H5Odtype.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odrvinfo.d ../H5Odrvinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odbg.d ../H5Odbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocopy.d ../H5Ocopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocont.d ../H5Ocont.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ochunk.d ../H5Ochunk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache_image.d ../H5Ocache_image.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache.d ../H5Ocache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obtreek.d ../H5Obtreek.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obogus.d ../H5Obogus.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattribute.d ../H5Oattribute.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../parserInternals.c +../parserInternals.c: In function ‘xmlNextChar__internal_alias’: +../parserInternals.c:473:9: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 473 | if (c == 0xC0) + | ^~ +../parserInternals.c:475:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 475 | if (cur[1] == 0) { + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattr.d ../H5Oattr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oalloc.d ../H5Oalloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oainfo.d ../H5Oainfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5O.d ../H5O.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MPtest.d ../H5MPtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MP.d ../H5MP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MM.d ../H5MM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFsection.d ../H5MFsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFdbg.d ../H5MFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFaggr.d ../H5MFaggr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MF.d ../H5MF.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Lexternal.d ../H5Lexternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5L.d ../H5L.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Itest.d ../H5Itest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5I.d ../H5I.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HP.d ../H5HP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdblk.d ../H5HLdblk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLprfx.d ../H5HLprfx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLint.d ../H5HLint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pattern.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdbg.d ../H5HLdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLcache.d ../H5HLcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HL.d ../H5HL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGquery.d ../H5HGquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGdbg.d ../H5HGdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGcache.d ../H5HGcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HG.d ../H5HG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtiny.d ../H5HFtiny.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtest.d ../H5HFtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFstat.d ../H5HFstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFspace.d ../H5HFspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFsection.d ../H5HFsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFman.d ../H5HFman.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiter.d ../H5HFiter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiblock.d ../H5HFiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhuge.d ../H5HFhuge.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhdr.d ../H5HFhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdtable.d ../H5HFdtable.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdblock.d ../H5HFdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdbg.d ../H5HFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFcache.d ../H5HFcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFbtree2.d ../H5HFbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HF.d ../H5HF.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtraverse.d ../H5Gtraverse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtest.d ../H5Gtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gstab.d ../H5Gstab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Groot.d ../H5Groot.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Goh.d ../H5Goh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gobj.d ../H5Gobj.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gnode.d ../H5Gnode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gname.d ../H5Gname.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gloc.d ../H5Gloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Glink.d ../H5Glink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gint.d ../H5Gint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gent.d ../H5Gent.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdeprec.d ../H5Gdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdense.d ../H5Gdense.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcompact.d ../H5Gcompact.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcache.d ../H5Gcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gbtree2.d ../H5Gbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5G.d ../H5G.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FStest.d ../H5FStest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSstat.d ../H5FSstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSsection.d ../H5FSsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSint.d ../H5FSint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSdbg.d ../H5FSdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FScache.d ../H5FScache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FS.d ../H5FS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FO.d ../H5FO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FL.d ../H5FL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDtest.d ../H5FDtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDstdio.d ../H5FDstdio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDspace.d ../H5FDspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDsec2.d ../H5FDsec2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDmulti.d ../H5FDmulti.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDlog.d ../H5FDlog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDint.d ../H5FDint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDfamily.d ../H5FDfamily.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDcore.d ../H5FDcore.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FD.d ../H5FD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAtest.d ../H5FAtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAstat.d ../H5FAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAint.d ../H5FAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAhdr.d ../H5FAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblkpage.d ../H5FAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblock.d ../H5FAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdbg.d ../H5FAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAcache.d ../H5FAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FA.d ../H5FA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ftest.d ../H5Ftest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper_cache.d ../H5Fsuper_cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../relaxng.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper.d ../H5Fsuper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fspace.d ../H5Fspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsfile.d ../H5Fsfile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fquery.d ../H5Fquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fmount.d ../H5Fmount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fio.d ../H5Fio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fint.d ../H5Fint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ffake.d ../H5Ffake.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fefc.d ../H5Fefc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdeprec.d ../H5Fdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdbg.d ../H5Fdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fcwfs.d ../H5Fcwfs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Faccum.d ../H5Faccum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5F.d ../H5F.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../SAX2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAtest.d ../H5EAtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAstat.d ../H5EAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../SAX.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAsblock.d ../H5EAsblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAint.d ../H5EAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAiblock.d ../H5EAiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAhdr.d ../H5EAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblock.d ../H5EAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblkpage.d ../H5EAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdbg.d ../H5EAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAcache.d ../H5EAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EA.d ../H5EA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../schematron.c +../schematron.c: In function ‘xmlSchematronPErrMemory’: +../schematron.c:234:22: warning: too many arguments for format [-Wformat-extra-args] + 234 | extra); + | ^~~~~ +../schematron.c: In function ‘xmlSchematronVErrMemory’: +../schematron.c:284:22: warning: too many arguments for format [-Wformat-extra-args] + 284 | extra); + | ^~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Eint.d ../H5Eint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Edeprec.d ../H5Edeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5E.d ../H5E.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dvirtual.d ../H5Dvirtual.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../threads.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dtest.d ../H5Dtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dsingle.d ../H5Dsingle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dselect.d ../H5Dselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dscatgath.d ../H5Dscatgath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Doh.d ../H5Doh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dnone.d ../H5Dnone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dlayout.d ../H5Dlayout.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dio.d ../H5Dio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dint.d ../H5Dint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfill.d ../H5Dfill.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfarray.d ../H5Dfarray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Defl.d ../H5Defl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dearray.d ../H5Dearray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddeprec.d ../H5Ddeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddbg.d ../H5Ddbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcontig.d ../H5Dcontig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcompact.d ../H5Dcompact.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dchunk.d ../H5Dchunk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree2.d ../H5Dbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree.d ../H5Dbtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5D.d ../H5D.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5CS.d ../H5CS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctest.d ../H5Ctest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctag.d ../H5Ctag.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cquery.d ../H5Cquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cprefetched.d ../H5Cprefetched.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Clog.d ../H5Clog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cimage.d ../H5Cimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cepoch.d ../H5Cepoch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cdbg.d ../H5Cdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5C.d ../H5C.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2test.d ../H5B2test.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2stat.d ../H5B2stat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2leaf.d ../H5B2leaf.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2internal.d ../H5B2internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2int.d ../H5B2int.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2hdr.d ../H5B2hdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2dbg.d ../H5B2dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2cache.d ../H5B2cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2.d ../H5B2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bdbg.d ../H5Bdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bcache.d ../H5Bcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B.d ../H5B.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACproxy_entry.d ../H5ACproxy_entry.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACdbg.d ../H5ACdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AClog.d ../H5AClog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AC.d ../H5AC.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Atest.d ../H5Atest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Aint.d ../H5Aint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adeprec.d ../H5Adeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adense.d ../H5Adense.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Abtree2.d ../H5Abtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5A.d ../H5A.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5trace.d ../H5trace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5timer.d ../H5timer.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5system.d ../H5system.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5dbg.d ../H5dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5checksum.d ../H5checksum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tree.c +../tree.c: In function ‘xmlTreeErrMemory’: +../tree.c:74:5: warning: too many arguments for format [-Wformat-extra-args] + 74 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../tree.c: In function ‘xmlGetNodePath__internal_alias’: +../tree.c:4758:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 4758 | if (tmp->type == XML_COMMENT_NODE) + | ^~ +../tree.c:4760:21: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 4760 | tmp = tmp->next; + | ^~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5.d ../H5.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../uri.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5checksum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5system.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5system.c:33: +In function ‘strncat’, + inlined from ‘H5_build_extpath’ at ../H5system.c:1116:13: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5system.c:33: +../H5system.c: In function ‘H5_build_extpath’: +../H5private.h:1358:31: note: length computed here + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5system.c:1116:13: note: in expansion of macro ‘HDstrncat’ + 1116 | HDstrncat(full_path, new_name, HDstrlen(new_name)); + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5timer.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../valid.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xinclude.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5trace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xlink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5A.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5A.c:25: +In function ‘strncpy’, + inlined from ‘H5Aget_name_by_idx’ at ../H5A.c:937:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5A.c:25: +../H5A.c: In function ‘H5Aget_name_by_idx’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5A.c:933:26: note: in expansion of macro ‘HDstrlen’ + 933 | ret_value = (ssize_t)HDstrlen(attr->shared->name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlIO.c +../xmlIO.c: In function ‘xmlIOErrMemory’: +../xmlIO.c:256:5: warning: too many arguments for format [-Wformat-extra-args] + 256 | __xmlSimpleError(XML_FROM_IO, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Abtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlmemory.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Adense.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Adeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlreader.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Aint.c +../H5Aint.c: In function ‘H5A_create’: +../H5Aint.c:200:45: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 200 | if(NULL == (attr->shared->dt = H5T_copy(type, H5T_COPY_ALL))) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Aprivate.h:25, + from ../H5Apkg.h:37, + from ../H5Aint.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Aint.c: In function ‘H5A__read’: +../H5Aint.c:532:71: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 532 | (dst_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0) + | ^~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Aprivate.h:25, + from ../H5Apkg.h:37, + from ../H5Aint.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Aint.c: In function ‘H5A__write’: +../H5Aint.c:632:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 632 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0 || + | ^~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Aprivate.h:25, + from ../H5Apkg.h:37, + from ../H5Aint.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Atest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5AC.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5AClog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5ACdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5ACproxy_entry.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B.c +../H5B.c: In function ‘H5B_valid’: +../H5B.c:2038:26: warning: variable ‘shared’ set but not used [-Wunused-but-set-variable] + 2038 | H5B_shared_t *shared; /* Pointer to shared B-tree info */ + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlregexp.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlmodule.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Bcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Bdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlsave.c +../xmlsave.c: In function ‘xmlSaveErrMemory’: +../xmlsave.c:111:5: warning: too many arguments for format [-Wformat-extra-args] + 111 | __xmlSimpleError(XML_FROM_OUTPUT, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2hdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2int.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2leaf.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2stat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2test.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5C.c +../H5C.c: In function ‘H5C_flush_cache’: +../H5C.c:1057:14: warning: variable ‘ignore_protected’ set but not used [-Wunused-but-set-variable] + 1057 | hbool_t ignore_protected; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cepoch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Clog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cprefetched.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ctag.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ctest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5CS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5D.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dbtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlschemas.c +../xmlschemas.c: In function ‘xmlSchemaPSimpleErr’: +../xmlschemas.c:1861:22: warning: too many arguments for format [-Wformat-extra-args] + 1861 | msg); + | ^~~ +../xmlschemas.c: In function ‘xmlSchemaPErrMemory’: +../xmlschemas.c:1878:22: warning: too many arguments for format [-Wformat-extra-args] + 1878 | extra); + | ^~~~~ +../xmlschemas.c: In function ‘xmlSchemaVErrMemory’: +../xmlschemas.c:2002:22: warning: too many arguments for format [-Wformat-extra-args] + 2002 | extra); + | ^~~~~ +../xmlschemas.c: In function ‘xmlSchemaPResCompAttrErr’: +../xmlschemas.c:2834:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 2834 | if (refTypeStr == NULL) + | ^~ +../xmlschemas.c:2836:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 2836 | xmlSchemaPErrExt(ctxt, ownerElem, error, + | ^~~~~~~~~~~~~~~~ +../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeQNameValue’: +../xmlschemas.c:5824:6: warning: too many arguments for format [-Wformat-extra-args] + 5824 | NULL, value, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlGetMaxOccurs’: +../xmlschemas.c:6047:3: warning: too many arguments for format [-Wformat-extra-args] + 6047 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:6061:6: warning: too many arguments for format [-Wformat-extra-args] + 6061 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:6078:6: warning: too many arguments for format [-Wformat-extra-args] + 6078 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c: In function ‘xmlGetMinOccurs’: +../xmlschemas.c:6113:6: warning: too many arguments for format [-Wformat-extra-args] + 6113 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:6130:6: warning: too many arguments for format [-Wformat-extra-args] + 6130 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c: In function ‘xmlSchemaPGetBoolNodeValue’: +../xmlschemas.c:6175:6: warning: too many arguments for format [-Wformat-extra-args] + 6175 | NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlGetBooleanProp’: +../xmlschemas.c:6223:6: warning: too many arguments for format [-Wformat-extra-args] + 6223 | NULL, val, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeValue’: +../xmlschemas.c:6328:6: warning: too many arguments for format [-Wformat-extra-args] + 6328 | type, NULL, value, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaParseWildcardNs’: +../xmlschemas.c:6763:6: warning: too many arguments for format [-Wformat-extra-args] + 6763 | NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c:6801:7: warning: too many arguments for format [-Wformat-extra-args] + 6801 | nsItem, NULL, NULL, NULL); + | ^~~~~~ +../xmlschemas.c: In function ‘xmlSchemaParseLocalAttribute’: +../xmlschemas.c:7188:8: warning: too many arguments for format [-Wformat-extra-args] + 7188 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:7208:4: warning: too many arguments for format [-Wformat-extra-args] + 7208 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:7366:2: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 7366 | if (defValue != NULL) + | ^~ +../xmlschemas.c:7368:6: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 7368 | if (defValueType == WXS_ATTR_DEF_VAL_FIXED) + | ^~ +../xmlschemas.c: In function ‘xmlSchemaParseElement’: +../xmlschemas.c:8629:4: warning: too many arguments for format [-Wformat-extra-args] + 8629 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:8708:4: warning: too many arguments for format [-Wformat-extra-args] + 8708 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:8738:7: warning: too many arguments for format [-Wformat-extra-args] + 8738 | NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaParseSimpleType’: +../xmlschemas.c:9294:7: warning: too many arguments for format [-Wformat-extra-args] + 9294 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c: In function ‘xmlSchemaParseSchemaElement’: +../xmlschemas.c:9693:3: warning: too many arguments for format [-Wformat-extra-args] + 9693 | "(qualified | unqualified)", val, NULL, NULL, NULL); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +../xmlschemas.c:9706:3: warning: too many arguments for format [-Wformat-extra-args] + 9706 | "(qualified | unqualified)", val, NULL, NULL, NULL); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +../xmlschemas.c:9724:3: warning: too many arguments for format [-Wformat-extra-args] + 9724 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:9740:3: warning: too many arguments for format [-Wformat-extra-args] + 9740 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c: In function ‘xmlSchemaParseImport’: +../xmlschemas.c:10763:6: warning: too many arguments for format [-Wformat-extra-args] +10763 | NULL, namespaceName, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c:10774:6: warning: too many arguments for format [-Wformat-extra-args] +10774 | NULL, schemaLocation, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaParseComplexType’: +../xmlschemas.c:12233:8: warning: too many arguments for format [-Wformat-extra-args] +12233 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:12251:8: warning: too many arguments for format [-Wformat-extra-args] +12251 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c: In function ‘xmlSchemaValidateFacets’: +../xmlschemas.c:24253:3: warning: too many arguments for format [-Wformat-extra-args] +24253 | value, len, type, facetLink->facet, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c:24289:3: warning: too many arguments for format [-Wformat-extra-args] +24289 | value, length, type, facetLink->facet, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c:24341:7: warning: too many arguments for format [-Wformat-extra-args] +24341 | value, 0, type, NULL, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c:24386:4: warning: too many arguments for format [-Wformat-extra-args] +24386 | value, 0, type, facet, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c: In function ‘xmlSchemaSetValidStructuredErrors__internal_alias’: +../xmlschemas.c:27790:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] +27790 | if (ctxt == NULL) + | ^~ +../xmlschemas.c:27792:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ +27792 | ctxt->serror = serror; + | ^~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dchunk.c +../H5Dchunk.c: In function ‘H5D__chunk_init’: +../H5Dchunk.c:724:26: warning: unused variable ‘sc’ [-Wunused-variable] + 724 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_is_space_alloc’: +../H5Dchunk.c:816:32: warning: unused variable ‘sc’ [-Wunused-variable] + 816 | const H5O_storage_chunk_t *sc = &(storage->u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_dest’: +../H5Dchunk.c:2371:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2371 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_create’: +../H5Dchunk.c:2582:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2582 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_lookup’: +../H5Dchunk.c:2683:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2683 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_flush_entry’: +../H5Dchunk.c:2806:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2806 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_allocated’: +../H5Dchunk.c:3716:26: warning: unused variable ‘sc’ [-Wunused-variable] + 3716 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_allocate’: +../H5Dchunk.c:3809:32: warning: unused variable ‘sc’ [-Wunused-variable] + 3809 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_update_old_edge_chunks’: +../H5Dchunk.c:4242:32: warning: unused variable ‘sc’ [-Wunused-variable] + 4242 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c:4229:24: warning: unused variable ‘pline’ [-Wunused-variable] + 4229 | const H5O_pline_t *pline = &(dset->shared->dcpl_cache.pline); /* I/O pipeline info */ + | ^~~~~ +../H5Dchunk.c: In function ‘H5D__chunk_prune_by_extent’: +../H5Dchunk.c:4797:32: warning: unused variable ‘sc’ [-Wunused-variable] + 4797 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_delete’: +../H5Dchunk.c:5203:26: warning: unused variable ‘sc’ [-Wunused-variable] + 5203 | H5O_storage_chunk_t *sc = &(storage->u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_copy_cb’: +../H5Dchunk.c:5550:111: warning: passing argument 5 of ‘H5D__chunk_file_alloc’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 5550 | if(H5D__chunk_file_alloc(udata->idx_info_dst, NULL, &udata_dst.chunk_block, &need_insert, udata_dst.common.scaled) < 0) + | ~~~~~~~~~~~~~~~~^~~~~~~ +../H5Dchunk.c:300:13: note: expected ‘hsize_t *’ {aka ‘long long unsigned int *’} but argument is of type ‘const hsize_t *’ {aka ‘const long long unsigned int *’} + 300 | hsize_t scaled[]); + | ~~~~~~~~^~~~~~~~ +../H5Dchunk.c: In function ‘H5D__chunk_copy’: +../H5Dchunk.c:5689:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 5689 | if(NULL == (dt_mem = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) + | ^~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dchunk.c:55: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dchunk.c:5697:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 5697 | if(NULL == (dt_dst = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) + | ^~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dchunk.c:55: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dchunk.c: In function ‘H5D__chunk_bh_info’: +../H5Dchunk.c:5856:26: warning: unused variable ‘sc’ [-Wunused-variable] + 5856 | H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_dump_index’: +../H5Dchunk.c:5979:26: warning: unused variable ‘sc’ [-Wunused-variable] + 5979 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dcompact.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dcontig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlschemastypes.c +../xmlschemastypes.c: In function ‘xmlSchemaTypeErrMemory’: +../xmlschemastypes.c:204:5: warning: too many arguments for format [-Wformat-extra-args] + 204 | __xmlSimpleError(XML_FROM_DATATYPE, XML_ERR_NO_MEMORY, node, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ddbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ddeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlunicode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dearray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Defl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dfarray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlwriter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dfill.c +../H5Dfill.c: In function ‘H5D__fill’: +../H5Dfill.c:238:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 238 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(fill_type, H5T_COPY_ALL), FALSE)) < 0) + | ^~~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dfill.c:36: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dfill.c:241:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 241 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(buf_type, H5T_COPY_ALL), FALSE)) < 0) + | ^~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dfill.c:36: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dfill.c: In function ‘H5D__fill_init’: +../H5Dfill.c:413:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 413 | if(NULL == (fb_info->mem_type = H5T_copy(dset_type, H5T_COPY_REOPEN))) + | ^~~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dfill.c:36: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dint.c +../H5Dint.c: In function ‘H5D__init_type’: +../H5Dint.c:681:43: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 681 | if((dset->shared->type = H5T_copy(type, H5T_COPY_ALL)) == NULL) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dint.c:25: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dint.c: In function ‘H5D__mark’: +../H5Dint.c:3174:37: warning: passing argument 1 of ‘H5D__layout_oh_write’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 3174 | if(H5D__layout_oh_write(dataset, dxpl_id, oh, update_flags) < 0) + | ^~~~~~~ +In file included from ../H5Dint.c:25: +../H5Dpkg.h:638:43: note: expected ‘H5D_t *’ {aka ‘struct H5D_t *’} but argument is of type ‘const H5D_t *’ {aka ‘const struct H5D_t *’} + 638 | H5_DLL herr_t H5D__layout_oh_write(H5D_t *dataset, hid_t dxpl_id, H5O_t *oh, + | ~~~~~~~^~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dlayout.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dnone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Doh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dscatgath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dsingle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dvirtual.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xpath.c +In file included from ../xpath.c:462: +../timsort.h: In function ‘libxml_domnode_tim_sort_collapse’: +../timsort.h:397:19: warning: variable ‘BD’ set but not used [-Wunused-but-set-variable] + 397 | int ABC, BCD, BD, CD; + | ^~ +../xpath.c: In function ‘xmlXPathNodeCollectAndTest’: +../xpath.c:12409:28: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘xmlXPathTypeVal’ {aka ‘enum ’} [-Wenum-compare] +12409 | } else if (cur->type == type) { + | ^~ +In file included from ../xpath.c:476: +At top level: +../trionan.c:218:1: warning: ‘trio_is_negative’ defined but not used [-Wunused-function] + 218 | trio_is_negative + | ^~~~~~~~~~~~~~~~ +../trionan.c:194:1: warning: ‘trio_is_special_quantity’ defined but not used [-Wunused-function] + 194 | trio_is_special_quantity + | ^~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xpointer.c +../xpointer.c: In function ‘xmlXPtrNewRangeNodePoint__internal_alias’: +../xpointer.c:451:21: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘enum ’ [-Wenum-compare] + 451 | if (start->type != XPATH_POINT) + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5E.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5E.c:52: +In function ‘strncpy’, + inlined from ‘H5E_get_class_name’ at ../H5E.c:646:8, + inlined from ‘H5Eget_class_name’ at ../H5E.c:610:21: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5E.c:52: +../H5E.c: In function ‘H5Eget_class_name’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5E.c:642:20: note: in expansion of macro ‘HDstrlen’ + 642 | len = (ssize_t)HDstrlen(cls->cls_name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlstring.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Edeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Eint.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Eint.c:35: +In function ‘strncpy’, + inlined from ‘H5E_get_msg’ at ../H5Eint.c:143:8: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Eint.c:35: +../H5Eint.c: In function ‘H5E_get_msg’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Eint.c:139:20: note: in expansion of macro ‘HDstrlen’ + 139 | len = (ssize_t)HDstrlen(msg->msg); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nanohttp_stream.c +../nanohttp_stream.c: In function ‘xmlParseJpegHeader’: +../nanohttp_stream.c:628:40: warning: pointer targets in passing argument 1 of ‘xmlStrncmp__internal_alias’ differ in signedness [-Wpointer-sign] + 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { + | ~~~~^~~~~~~~~~~~~~ + | | + | char * +In file included from ../libxml.h:106, + from ../nanohttp_stream.c:16: +../elfgcchack.h:11051:30: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘char *’ +11051 | extern __typeof (xmlStrncmp) xmlStrncmp__internal_alias __attribute((visibility("hidden"))); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../nanohttp_stream.c:628:56: warning: pointer targets in passing argument 2 of ‘xmlStrncmp__internal_alias’ differ in signedness [-Wpointer-sign] + 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { + | ^~~~~~~~~~~~ + | | + | const char * +In file included from ../libxml.h:106, + from ../nanohttp_stream.c:16: +../elfgcchack.h:11051:30: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘const char *’ +11051 | extern __typeof (xmlStrncmp) xmlStrncmp__internal_alias __attribute((visibility("hidden"))); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../nanohttp_stream.c: In function ‘xmlNanoHTTPScanAnswer’: +../elfgcchack.h:11072:19: warning: pointer targets in initialization of ‘const char *’ from ‘const xmlChar *’ {aka ‘const unsigned char *’} differ in signedness [-Wpointer-sign] +11072 | #define xmlStrstr xmlStrstr__internal_alias + | ^~~~~~~~~~~~~~~~~~~~~~~~~ +../nanohttp_stream.c:979:30: note: in expansion of macro ‘xmlStrstr’ + 979 | const char* boundaryName = xmlStrstr(BAD_CAST ctxt->contentType, BAD_CAST "boundary"); + | ^~~~~~~~~ +../nanohttp_stream.c:981:17: warning: pointer targets in assignment from ‘const xmlChar *’ {aka ‘const unsigned char *’} to ‘const char *’ differ in signedness [-Wpointer-sign] + 981 | boundaryName = xmlStrstr(BAD_CAST boundaryName, BAD_CAST "="); + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +g++ -o libxml2.so -shared -fPIC -Wl,-hlibxml2.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +/usr/bin/ar -rc libxml2.a buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +/usr/bin/ranlib libxml2.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +/usr/bin/ar -rc libnanohttp_stream.a nanohttp_stream.o buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +/usr/bin/ranlib libnanohttp_stream.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +g++ -o libnanohttp_stream.so -shared -fPIC -Wl,-hlibnanohttp_stream.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 nanohttp_stream.o buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o -lxml2 -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp_stream.d -MT nanohttp_stream.obj ../nanohttp_stream.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlstring.d -MT xmlstring.obj ../xmlstring.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpointer.d -MT xpointer.obj ../xpointer.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpath.d -MT xpath.obj ../xpath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlwriter.d -MT xmlwriter.obj ../xmlwriter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlunicode.d -MT xmlunicode.obj ../xmlunicode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemastypes.d -MT xmlschemastypes.obj ../xmlschemastypes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemas.d -MT xmlschemas.obj ../xmlschemas.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlsave.d -MT xmlsave.obj ../xmlsave.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmodule.d -MT xmlmodule.obj ../xmlmodule.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlregexp.d -MT xmlregexp.obj ../xmlregexp.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlreader.d -MT xmlreader.obj ../xmlreader.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmemory.d -MT xmlmemory.obj ../xmlmemory.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAsblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlIO.d -MT xmlIO.obj ../xmlIO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xlink.d -MT xlink.obj ../xlink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xinclude.d -MT xinclude.obj ../xinclude.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF valid.d -MT valid.obj ../valid.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uri.d -MT uri.obj ../uri.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tree.d -MT tree.obj ../tree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threads.d -MT threads.obj ../threads.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF schematron.d -MT schematron.obj ../schematron.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX.d -MT SAX.obj ../SAX.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX2.d -MT SAX2.obj ../SAX2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF relaxng.d -MT relaxng.obj ../relaxng.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pattern.d -MT pattern.obj ../pattern.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parserInternals.d -MT parserInternals.obj ../parserInternals.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parser.d -MT parser.obj ../parser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5F.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5F.c:24: +In function ‘strncpy’, + inlined from ‘H5Fget_name’ at ../H5F.c:1311:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5F.c:24: +../H5F.c: In function ‘H5Fget_name’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5F.c:1308:11: note: in expansion of macro ‘HDstrlen’ + 1308 | len = HDstrlen(H5F_OPEN_NAME(f)); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp.d -MT nanohttp.obj ../nanohttp.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Faccum.c +../H5Faccum.c: In function ‘H5F__accum_read’: +../H5Faccum.c:129:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 129 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5Faccum.c:130:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 130 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +../H5Faccum.c: In function ‘H5F__accum_write’: +../H5Faccum.c:442:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 442 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5Faccum.c:443:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 443 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +../H5Faccum.c: In function ‘H5F__accum_free’: +../H5Faccum.c:877:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 877 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5Faccum.c:878:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 878 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +../H5Faccum.c: In function ‘H5F__accum_flush’: +../H5Faccum.c:1045:29: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1045 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5Faccum.c:1046:28: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1046 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fcwfs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanoftp.d -MT nanoftp.obj ../nanoftp.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF list.d -MT list.obj ../list.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF legacy.d -MT legacy.obj ../legacy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLtree.d -MT HTMLtree.obj ../HTMLtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLparser.d -MT HTMLparser.obj ../HTMLparser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF hash.d -MT hash.obj ../hash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF globals.d -MT globals.obj ../globals.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error.d -MT error.obj ../error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entities.d -MT entities.obj ../entities.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d -MT encoding.obj ../encoding.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF DOCBparser.d -MT DOCBparser.obj ../DOCBparser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dict.d -MT dict.obj ../dict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF debugXML.d -MT debugXML.obj ../debugXML.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF chvalid.d -MT chvalid.obj ../chvalid.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fefc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF catalog.d -MT catalog.obj ../catalog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF c14n.d -MT c14n.obj ../c14n.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ffake.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF buf.d -MT buf.obj ../buf.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +mkdir ../../../include/os/WIN32/libxml +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Circular libxml2.dll.a <- nanohttp_stream.dll dependency dropped. +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fmount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o buf.obj -c ../buf.c +../buf.c: In function ‘xmlBufMemoryError’: +../buf.c:94:5: warning: too many arguments for format [-Wformat-extra-args] + 94 | __xmlSimpleError(XML_FROM_BUFFER, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../buf.c: In function ‘xmlBufOverflowError’: +../buf.c:109:5: warning: too many arguments for format [-Wformat-extra-args] + 109 | __xmlSimpleError(XML_FROM_BUFFER, XML_BUF_OVERFLOW, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +In file included from ../buf.c:30: +../buf.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fsfile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o c14n.obj -c ../c14n.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fsuper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fsuper_cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ftest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o catalog.obj -c ../catalog.c +In file included from ../catalog.c:38: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o chvalid.obj -c ../chvalid.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o debugXML.obj -c ../debugXML.c +In file included from ../debugXML.c:24: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dict.obj -c ../dict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o DOCBparser.obj -c ../DOCBparser.c +In file included from ../os/default/libxml/DOCBparser.h:18, + from ../DOCBparser.c:18: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o encoding.obj -c ../encoding.c +../encoding.c: In function ‘xmlEncodingErrMemory’: +../encoding.c:86:5: warning: too many arguments for format [-Wformat-extra-args] + 86 | __xmlSimpleError(XML_FROM_I18N, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../encoding.c: In function ‘xmlCharEncCloseFunc’: +../encoding.c:2856:12: warning: variable ‘handler_in_list’ set but not used [-Wunused-but-set-variable] + 2856 | int i, handler_in_list = 0; + | ^~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDcore.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o entities.obj -c ../entities.c +../entities.c: In function ‘xmlEntitiesErrMemory’: +../entities.c:76:5: warning: too many arguments for format [-Wformat-extra-args] + 76 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +In file included from ../entities.c:20: +../entities.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDfamily.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o error.obj -c ../error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o globals.obj -c ../globals.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o hash.obj -c ../hash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDlog.c +../H5FDlog.c: In function ‘H5FD_log_open’: +../H5FDlog.c:630:95: warning: ‘stat_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDlog.c:630:59: warning: ‘stat_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDlog.c:628:95: warning: ‘open_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDlog.c:628:59: warning: ‘open_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o HTMLparser.obj -c ../HTMLparser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o HTMLtree.obj -c ../HTMLtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o legacy.obj -c ../legacy.c +In file included from ../legacy.c:19: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o list.obj -c ../list.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDmulti.c +In file included from /usr/include/string.h:495, + from ../H5FDmulti.c:27: +In function ‘strncpy’, + inlined from ‘H5FD_multi_sb_encode’ at ../H5FDmulti.c:697:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDmulti.c: In function ‘H5FD_multi_sb_encode’: +../H5FDmulti.c:696:20: note: length computed here + 696 | size_t n = strlen(file->fa.memb_name[mt]) + 1; + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDsec2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDspace.c +../H5FDspace.c: In function ‘H5FD_extend’: +../H5FDspace.c:104:13: warning: unused variable ‘extra’ [-Wunused-variable] + 104 | hsize_t extra; /* Extra space to allocate, to align request */ + | ^~~~~ +../H5FDspace.c:102:13: warning: unused variable ‘orig_size’ [-Wunused-variable] + 102 | hsize_t orig_size = size; /* Original allocation size */ + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDstdio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nanoftp.obj -c ../nanoftp.c +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:45: warning: "EINPROGRESS" redefined + 45 | #define EINPROGRESS WSAEINPROGRESS + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:158: note: this is the location of the previous definition + 158 | #define EINPROGRESS 112 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:46: warning: "EALREADY" redefined + 46 | #define EALREADY WSAEALREADY + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:106: note: this is the location of the previous definition + 106 | #define EALREADY 103 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:47: warning: "ENOTSOCK" redefined + 47 | #define ENOTSOCK WSAENOTSOCK + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:146: note: this is the location of the previous definition + 146 | #define ENOTSOCK 128 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:48: warning: "EDESTADDRREQ" redefined + 48 | #define EDESTADDRREQ WSAEDESTADDRREQ + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:118: note: this is the location of the previous definition + 118 | #define EDESTADDRREQ 109 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:49: warning: "EMSGSIZE" redefined + 49 | #define EMSGSIZE WSAEMSGSIZE + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:126: note: this is the location of the previous definition + 126 | #define EMSGSIZE 115 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:50: warning: "EPROTOTYPE" redefined + 50 | #define EPROTOTYPE WSAEPROTOTYPE + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:231: note: this is the location of the previous definition + 231 | #define EPROTOTYPE 136 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:51: warning: "ENOPROTOOPT" redefined + 51 | #define ENOPROTOOPT WSAENOPROTOOPT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:142: note: this is the location of the previous definition + 142 | #define ENOPROTOOPT 123 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:52: warning: "EPROTONOSUPPORT" redefined + 52 | #define EPROTONOSUPPORT WSAEPROTONOSUPPORT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:178: note: this is the location of the previous definition + 178 | #define EPROTONOSUPPORT 135 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:54: warning: "EOPNOTSUPP" redefined + 54 | #define EOPNOTSUPP WSAEOPNOTSUPP + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:162: note: this is the location of the previous definition + 162 | #define EOPNOTSUPP 130 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:56: warning: "EAFNOSUPPORT" redefined + 56 | #define EAFNOSUPPORT WSAEAFNOSUPPORT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:82: note: this is the location of the previous definition + 82 | #define EAFNOSUPPORT 102 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:57: warning: "EADDRINUSE" redefined + 57 | #define EADDRINUSE WSAEADDRINUSE + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:86: note: this is the location of the previous definition + 86 | #define EADDRINUSE 100 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:58: warning: "EADDRNOTAVAIL" redefined + 58 | #define EADDRNOTAVAIL WSAEADDRNOTAVAIL + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:90: note: this is the location of the previous definition + 90 | #define EADDRNOTAVAIL 101 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:59: warning: "ENETDOWN" redefined + 59 | #define ENETDOWN WSAENETDOWN + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:130: note: this is the location of the previous definition + 130 | #define ENETDOWN 116 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:60: warning: "ENETUNREACH" redefined + 60 | #define ENETUNREACH WSAENETUNREACH + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:138: note: this is the location of the previous definition + 138 | #define ENETUNREACH 118 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:61: warning: "ENETRESET" redefined + 61 | #define ENETRESET WSAENETRESET + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:134: note: this is the location of the previous definition + 134 | #define ENETRESET 117 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:62: warning: "ECONNABORTED" redefined + 62 | #define ECONNABORTED WSAECONNABORTED + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:102: note: this is the location of the previous definition + 102 | #define ECONNABORTED 106 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:63: warning: "ECONNRESET" redefined + 63 | #define ECONNRESET WSAECONNRESET + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:114: note: this is the location of the previous definition + 114 | #define ECONNRESET 108 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:64: warning: "ENOBUFS" redefined + 64 | #define ENOBUFS WSAENOBUFS + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:98: note: this is the location of the previous definition + 98 | #define ENOBUFS 119 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:65: warning: "EISCONN" redefined + 65 | #define EISCONN WSAEISCONN + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:94: note: this is the location of the previous definition + 94 | #define EISCONN 113 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:66: warning: "ENOTCONN" redefined + 66 | #define ENOTCONN WSAENOTCONN + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:150: note: this is the location of the previous definition + 150 | #define ENOTCONN 126 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:68: warning: "ETIMEDOUT" redefined + 68 | #define ETIMEDOUT WSAETIMEDOUT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:223: note: this is the location of the previous definition + 223 | #define ETIMEDOUT 138 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:69: warning: "ECONNREFUSED" redefined + 69 | #define ECONNREFUSED WSAECONNREFUSED + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:110: note: this is the location of the previous definition + 110 | #define ECONNREFUSED 107 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:70: warning: "ELOOP" redefined + 70 | #define ELOOP WSAELOOP + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:227: note: this is the location of the previous definition + 227 | #define ELOOP 114 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +../os/WIN32/wsockcompat.h:72: warning: "EHOSTUNREACH" redefined + 72 | #define EHOSTUNREACH WSAEHOSTUNREACH + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/errno.h:122: note: this is the location of the previous definition + 122 | #define EHOSTUNREACH 110 + | +../nanoftp.c: In function ‘xmlFTPErrMemory’: +../nanoftp.c:176:5: warning: too many arguments for format [-Wformat-extra-args] + 176 | __xmlSimpleError(XML_FROM_FTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../nanoftp.c: In function ‘xmlNanoFTPGetConnection’: +../nanoftp.c:1479:66: warning: pointer targets in passing argument 3 of ‘getsockname’ differ in signedness [-Wpointer-sign] + 1479 | getsockname(ctxt->dataFd, (struct sockaddr *) &dataAddr, &dataAddrLen); + | ^~~~~~~~~~~~ + | | + | unsigned int * +In file included from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/winsock2.h:1009:82: note: expected ‘int *’ but argument is of type ‘unsigned int *’ + 1009 | WINSOCK_API_LINKAGE int WSAAPI getsockname(SOCKET s,struct sockaddr *name,int *namelen); + | ~~~~~^~~~~~~ +../nanoftp.c:1492:66: warning: pointer targets in passing argument 3 of ‘getsockname’ differ in signedness [-Wpointer-sign] + 1492 | getsockname(ctxt->dataFd, (struct sockaddr *) &dataAddr, &dataAddrLen); + | ^~~~~~~~~~~~ + | | + | unsigned int * +In file included from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanoftp.c:20: +/usr/share/mingw-w64/include/winsock2.h:1009:82: note: expected ‘int *’ but argument is of type ‘unsigned int *’ + 1009 | WINSOCK_API_LINKAGE int WSAAPI getsockname(SOCKET s,struct sockaddr *name,int *namelen); + | ~~~~~^~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FScache.c +../H5FScache.c: In function ‘H5FS__cache_sinfo_deserialize’: +../H5FScache.c:1013:17: warning: variable ‘old_tot_space’ set but not used [-Wunused-but-set-variable] + 1013 | hsize_t old_tot_space; /* Total space managed from header */ + | ^~~~~~~~~~~~~ +../H5FScache.c:1012:17: warning: variable ‘old_ghost_sect_count’ set but not used [-Wunused-but-set-variable] + 1012 | hsize_t old_ghost_sect_count; /* Total ghost section count from header */ + | ^~~~~~~~~~~~~~~~~~~~ +../H5FScache.c:1011:17: warning: variable ‘old_serial_sect_count’ set but not used [-Wunused-but-set-variable] + 1011 | hsize_t old_serial_sect_count; /* Total serializable section count from header */ + | ^~~~~~~~~~~~~~~~~~~~~ +../H5FScache.c:1010:17: warning: variable ‘old_tot_sect_count’ set but not used [-Wunused-but-set-variable] + 1010 | hsize_t old_tot_sect_count; /* Total section count from header */ + | ^~~~~~~~~~~~~~~~~~ +../H5FScache.c: In function ‘H5FS__cache_sinfo_image_len’: +../H5FScache.c:1119:19: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] + 1119 | const H5FS_t *fspace; /* Free space header */ + | ^~~~~~ +../H5FScache.c: In function ‘H5FS__cache_sinfo_serialize’: +../H5FScache.c:1249:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] + 1249 | H5FS_t *fspace; /* Free space header */ + | ^~~~~~ +../H5FScache.c: In function ‘H5FS__cache_sinfo_free_icr’: +../H5FScache.c:1396:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] + 1396 | H5FS_t *fspace; /* Free space header */ + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nanohttp.obj -c ../nanohttp.c +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:45: warning: "EINPROGRESS" redefined + 45 | #define EINPROGRESS WSAEINPROGRESS + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:158: note: this is the location of the previous definition + 158 | #define EINPROGRESS 112 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:46: warning: "EALREADY" redefined + 46 | #define EALREADY WSAEALREADY + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:106: note: this is the location of the previous definition + 106 | #define EALREADY 103 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:47: warning: "ENOTSOCK" redefined + 47 | #define ENOTSOCK WSAENOTSOCK + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:146: note: this is the location of the previous definition + 146 | #define ENOTSOCK 128 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:48: warning: "EDESTADDRREQ" redefined + 48 | #define EDESTADDRREQ WSAEDESTADDRREQ + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:118: note: this is the location of the previous definition + 118 | #define EDESTADDRREQ 109 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:49: warning: "EMSGSIZE" redefined + 49 | #define EMSGSIZE WSAEMSGSIZE + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:126: note: this is the location of the previous definition + 126 | #define EMSGSIZE 115 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:50: warning: "EPROTOTYPE" redefined + 50 | #define EPROTOTYPE WSAEPROTOTYPE + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:231: note: this is the location of the previous definition + 231 | #define EPROTOTYPE 136 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:51: warning: "ENOPROTOOPT" redefined + 51 | #define ENOPROTOOPT WSAENOPROTOOPT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:142: note: this is the location of the previous definition + 142 | #define ENOPROTOOPT 123 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:52: warning: "EPROTONOSUPPORT" redefined + 52 | #define EPROTONOSUPPORT WSAEPROTONOSUPPORT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:178: note: this is the location of the previous definition + 178 | #define EPROTONOSUPPORT 135 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:54: warning: "EOPNOTSUPP" redefined + 54 | #define EOPNOTSUPP WSAEOPNOTSUPP + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:162: note: this is the location of the previous definition + 162 | #define EOPNOTSUPP 130 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:56: warning: "EAFNOSUPPORT" redefined + 56 | #define EAFNOSUPPORT WSAEAFNOSUPPORT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:82: note: this is the location of the previous definition + 82 | #define EAFNOSUPPORT 102 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:57: warning: "EADDRINUSE" redefined + 57 | #define EADDRINUSE WSAEADDRINUSE + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:86: note: this is the location of the previous definition + 86 | #define EADDRINUSE 100 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:58: warning: "EADDRNOTAVAIL" redefined + 58 | #define EADDRNOTAVAIL WSAEADDRNOTAVAIL + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:90: note: this is the location of the previous definition + 90 | #define EADDRNOTAVAIL 101 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:59: warning: "ENETDOWN" redefined + 59 | #define ENETDOWN WSAENETDOWN + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:130: note: this is the location of the previous definition + 130 | #define ENETDOWN 116 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:60: warning: "ENETUNREACH" redefined + 60 | #define ENETUNREACH WSAENETUNREACH + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:138: note: this is the location of the previous definition + 138 | #define ENETUNREACH 118 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:61: warning: "ENETRESET" redefined + 61 | #define ENETRESET WSAENETRESET + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:134: note: this is the location of the previous definition + 134 | #define ENETRESET 117 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:62: warning: "ECONNABORTED" redefined + 62 | #define ECONNABORTED WSAECONNABORTED + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:102: note: this is the location of the previous definition + 102 | #define ECONNABORTED 106 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:63: warning: "ECONNRESET" redefined + 63 | #define ECONNRESET WSAECONNRESET + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:114: note: this is the location of the previous definition + 114 | #define ECONNRESET 108 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:64: warning: "ENOBUFS" redefined + 64 | #define ENOBUFS WSAENOBUFS + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:98: note: this is the location of the previous definition + 98 | #define ENOBUFS 119 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:65: warning: "EISCONN" redefined + 65 | #define EISCONN WSAEISCONN + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:94: note: this is the location of the previous definition + 94 | #define EISCONN 113 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:66: warning: "ENOTCONN" redefined + 66 | #define ENOTCONN WSAENOTCONN + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:150: note: this is the location of the previous definition + 150 | #define ENOTCONN 126 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:68: warning: "ETIMEDOUT" redefined + 68 | #define ETIMEDOUT WSAETIMEDOUT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:223: note: this is the location of the previous definition + 223 | #define ETIMEDOUT 138 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:69: warning: "ECONNREFUSED" redefined + 69 | #define ECONNREFUSED WSAECONNREFUSED + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:110: note: this is the location of the previous definition + 110 | #define ECONNREFUSED 107 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:70: warning: "ELOOP" redefined + 70 | #define ELOOP WSAELOOP + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:227: note: this is the location of the previous definition + 227 | #define ELOOP 114 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +../os/WIN32/wsockcompat.h:72: warning: "EHOSTUNREACH" redefined + 72 | #define EHOSTUNREACH WSAEHOSTUNREACH + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/errno.h:122: note: this is the location of the previous definition + 122 | #define EHOSTUNREACH 110 + | +../nanohttp.c: In function ‘xmlHTTPErrMemory’: +../nanohttp.c:177:5: warning: too many arguments for format [-Wformat-extra-args] + 177 | __xmlSimpleError(XML_FROM_HTTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../nanohttp.c: In function ‘xmlNanoHTTPConnectAttempt’: +../nanohttp.c:1002:67: warning: pointer targets in passing argument 5 of ‘getsockopt’ differ in signedness [-Wpointer-sign] + 1002 | if (getsockopt(s, SOL_SOCKET, SO_ERROR, (char *) &status, &len) < + | ^~~~ + | | + | unsigned int * +In file included from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp.c:16: +/usr/share/mingw-w64/include/winsock2.h:1010:94: note: expected ‘int *’ but argument is of type ‘unsigned int *’ + 1010 | WINSOCK_API_LINKAGE int WSAAPI getsockopt(SOCKET s,int level,int optname,char *optval,int *optlen); + | ~~~~~^~~~~~ +../nanohttp.c: In function ‘xmlNanoHTTPConnectHost’: +../nanohttp.c:1050:9: warning: unused variable ‘i’ [-Wunused-variable] + 1050 | int i; + | ^ +../nanohttp.c:1043:20: warning: unused variable ‘ia’ [-Wunused-variable] + 1043 | struct in_addr ia; + | ^~ +../nanohttp.c:1041:21: warning: unused variable ‘h’ [-Wunused-variable] + 1041 | struct hostent *h; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FStest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5G.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gcompact.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Gcompact.c:28: +In function ‘strncpy’, + inlined from ‘H5G__compact_get_name_by_idx’ at ../H5Gcompact.c:246:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Gcompact.c:28: +../H5Gcompact.c: In function ‘H5G__compact_get_name_by_idx’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gcompact.c:242:26: note: in expansion of macro ‘HDstrlen’ + 242 | ret_value = (ssize_t)HDstrlen(ltable.lnks[idx].name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gdense.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Gdense.c:35: +In function ‘strncpy’, + inlined from ‘H5G__dense_get_name_by_idx’ at ../H5Gdense.c:1278:13: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Gdense.c:35: +../H5Gdense.c: In function ‘H5G__dense_get_name_by_idx’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gdense.c:1274:30: note: in expansion of macro ‘HDstrlen’ + 1274 | ret_value = (ssize_t)HDstrlen(ltable.lnks[n].name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gent.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Glink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gname.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Gname.c:35: +In function ‘strncat’, + inlined from ‘H5G_build_fullpath’ at ../H5Gname.c:327:5, + inlined from ‘H5G_build_fullpath_refstr_str’ at ../H5Gname.c:367:17: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Gname.c:35: +../H5Gname.c: In function ‘H5G_build_fullpath_refstr_str’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gname.c:316:16: note: in expansion of macro ‘HDstrlen’ + 316 | name_len = HDstrlen(name); + | ^~~~~~~~ +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Gname.c:35: +In function ‘strncat’, + inlined from ‘H5G_name_move_path’ at ../H5Gname.c:771:13, + inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:1028:24, + inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Gname.c:35: +../H5Gname.c: In function ‘H5G_name_replace_cb’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gname.c:717:23: note: in expansion of macro ‘HDstrlen’ + 717 | full_suffix_len = HDstrlen(full_suffix); + | ^~~~~~~~ +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Gname.c:35: +In function ‘strncat’, + inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:1040:17, + inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Gname.c:35: +../H5Gname.c: In function ‘H5G_name_replace_cb’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gname.c:1024:35: note: in expansion of macro ‘HDstrlen’ + 1024 | full_suffix_len = HDstrlen(full_suffix); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gnode.c +../H5Gnode.c: In function ‘H5G_node_remove’: +../H5Gnode.c:790:21: warning: unused variable ‘lt_key’ [-Wunused-variable] + 790 | H5G_node_key_t *lt_key = (H5G_node_key_t *)_lt_key; + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gobj.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o parser.obj -c ../parser.c +../parser.c: In function ‘xmlAddSpecialAttr’: +../parser.c:1327:22: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 1327 | (void *) (long) type); + | ^ +../parser.c: In function ‘xmlCleanSpecialAttrCallback’: +../parser.c:1346:10: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1346 | if (((long) payload) == XML_ATTRIBUTE_CDATA) { + | ^ +../parser.c: In function ‘nameNsPush’: +../parser.c:1858:43: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 1858 | ctxt->pushTab[ctxt->nameNr * 3 + 2] = (void *) (long) nsNr; + | ^ +../parser.c: In function ‘xmlParseAttribute2’: +../parser.c:9262:22: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 9262 | type = (int) (long) xmlHashQLookup2(ctxt->attsSpecial, + | ^ +../parser.c: In function ‘xmlParseTryOrFinish’: +../parser.c:11788:16: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] +11788 | (int) (long) ctxt->pushTab[ctxt->nameNr * 3 - 1], 0); + | ^ +In file included from ../parser.c:51: +../parser.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Goh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Groot.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gstab.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Gstab.c:29: +In function ‘strncpy’, + inlined from ‘H5G__stab_get_name_by_idx’ at ../H5Gstab.c:803:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Gstab.c:29: +../H5Gstab.c: In function ‘H5G__stab_get_name_by_idx’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gstab.c:799:26: note: in expansion of macro ‘HDstrlen’ + 799 | ret_value = (ssize_t)HDstrlen(udata.name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o parserInternals.obj -c ../parserInternals.c +../parserInternals.c: In function ‘xmlNextChar’: +../parserInternals.c:473:9: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 473 | if (c == 0xC0) + | ^~ +../parserInternals.c:475:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 475 | if (cur[1] == 0) { + | ^~ +In file included from ../parserInternals.c:42: +../parserInternals.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gtraverse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pattern.obj -c ../pattern.c +In file included from ../pattern.c:35: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HF.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFcache.c +../H5HFcache.c: In function ‘H5HF__cache_hdr_serialize’: +../H5HFcache.c:774:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 774 | hdr->f = f; + | ^ +../H5HFcache.c: In function ‘H5HF__cache_iblock_serialize’: +../H5HFcache.c:1361:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1361 | hdr->f = f; + | ^ +../H5HFcache.c: In function ‘H5HF__cache_iblock_notify’: +../H5HFcache.c:1477:18: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] + 1477 | unsigned indir_idx; /* Index in parent's child iblock pointer array */ + | ^~~~~~~~~ +../H5HFcache.c:1476:26: warning: unused variable ‘par_iblock’ [-Wunused-variable] + 1476 | H5HF_indirect_t *par_iblock = iblock->parent; + | ^~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFdtable.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFhuge.c +../H5HFhuge.c: In function ‘H5HF_huge_write’: +../H5HFhuge.c:890:8: warning: ‘obj_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 890 | if(H5F_block_write(hdr->f, H5FD_MEM_FHEAP_HUGE_OBJ, obj_addr, obj_size, H5AC_rawdata_dxpl_id, obj) < 0) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o relaxng.obj -c ../relaxng.c +../relaxng.c: In function ‘xmlRelaxNGComputeInterleaves’: +../relaxng.c:4407:44: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 4407 | (void *) (long) (i + 1)); + | ^ +../relaxng.c:4415:48: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 4415 | (void *) (long) (i + 1)); + | ^ +../relaxng.c:4419:48: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 4419 | (void *) (long) (i + 1)); + | ^ +../relaxng.c:4426:48: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 4426 | (void *) (long) (i + 1)); + | ^ +../relaxng.c:4430:48: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 4430 | (void *) (long) (i + 1)); + | ^ +../relaxng.c: In function ‘xmlRelaxNGValidateInterleave’: +../relaxng.c:9390:22: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 9390 | i = ((long) tmp) - 1; + | ^ +In file included from ../relaxng.c:25: +../relaxng.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFiter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFman.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o SAX2.obj -c ../SAX2.c +../SAX2.c: In function ‘xmlSAX2TextNode’: +../SAX2.c:1911:19: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 1911 | ret->psvi = (void *) (long) ctxt->input->line; + | ^ +In file included from ../SAX2.c:18: +../SAX2.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o SAX.obj -c ../SAX.c +In file included from ../SAX.c:18: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o schematron.obj -c ../schematron.c +../schematron.c: In function ‘xmlSchematronPErrMemory’: +../schematron.c:234:22: warning: too many arguments for format [-Wformat-extra-args] + 234 | extra); + | ^~~~~ +../schematron.c: In function ‘xmlSchematronVErrMemory’: +../schematron.c:284:22: warning: too many arguments for format [-Wformat-extra-args] + 284 | extra); + | ^~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFsection.c +../H5HFsection.c: In function ‘H5HF_sect_single_valid’: +../H5HFsection.c:1191:20: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] + 1191 | herr_t status; /* Generic status value */ + | ^~~~~~ +../H5HFsection.c:1189:20: warning: variable ‘dblock_overhead’ set but not used [-Wunused-but-set-variable] + 1189 | size_t dblock_overhead; /* Direct block's overhead */ + | ^~~~~~~~~~~~~~~ +../H5HFsection.c: In function ‘H5HF_sect_row_valid’: +../H5HFsection.c:2000:14: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] + 2000 | unsigned indir_idx; /* Index of row in underlying indirect section's row array */ + | ^~~~~~~~~ +../H5HFsection.c: In function ‘H5HF_sect_indirect_valid’: +../H5HFsection.c:4107:44: warning: variable ‘tmp_row_sect2’ set but not used [-Wunused-but-set-variable] + 4107 | const H5HF_free_section_t *tmp_row_sect2; /* Pointer to row section */ + | ^~~~~~~~~~~~~ +../H5HFsection.c:4099:40: warning: variable ‘tmp_row_sect’ set but not used [-Wunused-but-set-variable] + 4099 | const H5HF_free_section_t *tmp_row_sect; /* Pointer to row section */ + | ^~~~~~~~~~~~ +../H5HFsection.c:4134:44: warning: variable ‘tmp_child_sect2’ set but not used [-Wunused-but-set-variable] + 4134 | const H5HF_free_section_t *tmp_child_sect2; /* Pointer to child indirect section */ + | ^~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFtiny.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o threads.obj -c ../threads.c +../threads.c: In function ‘__xmlGlobalInitMutexLock’: +../threads.c:461:43: warning: passing argument 1 of ‘_InterlockedCompareExchangePointer’ from incompatible pointer type [-Wincompatible-pointer-types] + 461 | InterlockedCompareExchangePointer(&global_init_lock, cs, NULL); + | ^~~~~~~~~~~~~~~~~ + | | + | struct _RTL_CRITICAL_SECTION * volatile* +In file included from /usr/share/mingw-w64/include/winnt.h:27, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from ../threads.c:30: +/usr/share/mingw-w64/include/psdk_inc/intrin-impl.h:1571:58: note: expected ‘void * volatile*’ but argument is of type ‘struct _RTL_CRITICAL_SECTION * volatile*’ + 1571 | void *_InterlockedCompareExchangePointer(void *volatile *Destination, void *ExChange, void *Comperand) { + | ~~~~~~~~~~~~~~~~^~~~~~~~~~~ +../threads.c: In function ‘xmlOnceInit’: +../threads.c:962:34: warning: pointer targets in passing argument 1 of ‘_InterlockedIncrement’ differ in signedness [-Wpointer-sign] + 962 | if (InterlockedIncrement(&run_once.control) == 1) { + | ^~~~~~~~~~~~~~~~~ + | | + | DWORD * {aka long unsigned int *} +In file included from /usr/share/mingw-w64/include/winnt.h:27, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from ../threads.c:30: +/usr/share/mingw-w64/include/psdk_inc/intrin-impl.h:1505:51: note: expected ‘volatile long int *’ but argument is of type ‘DWORD *’ {aka ‘long unsigned int *’} + 1505 | __LONG32 _InterlockedIncrement(__LONG32 volatile *Addend) { + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HGcache.c +../H5HGcache.c: In function ‘H5HG__cache_heap_get_final_load_size’: +../H5HGcache.c:225:17: warning: ‘*((void *)&heap+280)’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 225 | *actual_len = heap.size; + | ~~~~~~~~~~~~^~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HGdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HGquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLprfx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLdblk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5I.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Itest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tree.obj -c ../tree.c +../tree.c: In function ‘xmlTreeErrMemory’: +../tree.c:74:5: warning: too many arguments for format [-Wformat-extra-args] + 74 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../tree.c: In function ‘xmlGetLineNoInternal’: +../tree.c:4599:19: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 4599 | result = (long) node->psvi; + | ^ +../tree.c: In function ‘xmlGetNodePath’: +../tree.c:4758:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 4758 | if (tmp->type == XML_COMMENT_NODE) + | ^~ +../tree.c:4760:21: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 4760 | tmp = tmp->next; + | ^~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5L.c +../H5L.c: In function ‘H5L_move_cb’: +../H5L.c:2639:41: warning: passing argument 1 of ‘H5RS_wrap’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 2639 | dst_name_r = H5RS_wrap(udata->dst_name); + | ~~~~~^~~~~~~~~~ +In file included from ../H5Gprivate.h:35, + from ../H5Tprivate.h:28, + from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5L.c:26: +../H5RSprivate.h:47:20: note: expected ‘char *’ but argument is of type ‘const char *’ + 47 | H5_DLL H5RS_str_t *H5RS_wrap(char *s); + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o uri.obj -c ../uri.c +../uri.c: In function ‘xmlCanonicPath’: +../uri.c:2475:14: warning: pointer targets in assignment from ‘xmlChar *’ {aka ‘unsigned char *’} to ‘char *’ differ in signedness [-Wpointer-sign] + 2475 | uri->scheme = xmlStrdup(BAD_CAST "file"); + | ^ +../uri.c:2484:4: warning: pointer targets in assignment from ‘char *’ to ‘xmlChar *’ {aka ‘unsigned char *’} differ in signedness [-Wpointer-sign] + 2484 | p = uri->path + 1; + | ^ +../uri.c:2485:10: warning: pointer targets in passing argument 1 of ‘strncpy’ differ in signedness [-Wpointer-sign] + 2485 | strncpy(p, path, len + 1); + | ^ + | | + | xmlChar * {aka unsigned char *} +In file included from /usr/share/mingw-w64/include/io.h:10, + from ../os/WIN32/config.h:23, + from ../libxml.h:39, + from ../uri.c:12: +/usr/share/mingw-w64/include/string.h:89:9: note: expected ‘char * restrict’ but argument is of type ‘xmlChar *’ {aka ‘unsigned char *’} + 89 | char *strncpy(char * __restrict__ _Dest,const char * __restrict__ _Source,size_t _Count) __MINGW_ATTRIB_DEPRECATED_SEC_WARN; + | ^~~~~~~ +../uri.c:2485:13: warning: pointer targets in passing argument 2 of ‘strncpy’ differ in signedness [-Wpointer-sign] + 2485 | strncpy(p, path, len + 1); + | ^~~~ + | | + | const xmlChar * {aka const unsigned char *} +In file included from /usr/share/mingw-w64/include/io.h:10, + from ../os/WIN32/config.h:23, + from ../libxml.h:39, + from ../uri.c:12: +/usr/share/mingw-w64/include/string.h:89:9: note: expected ‘const char * restrict’ but argument is of type ‘const xmlChar *’ {aka ‘const unsigned char *’} + 89 | char *strncpy(char * __restrict__ _Dest,const char * __restrict__ _Source,size_t _Count) __MINGW_ATTRIB_DEPRECATED_SEC_WARN; + | ^~~~~~~ +../uri.c:2487:12: warning: pointer targets in assignment from ‘xmlChar *’ {aka ‘unsigned char *’} to ‘char *’ differ in signedness [-Wpointer-sign] + 2487 | uri->path = xmlStrdup(path); + | ^ +../uri.c:2492:4: warning: pointer targets in assignment from ‘char *’ to ‘xmlChar *’ {aka ‘unsigned char *’} differ in signedness [-Wpointer-sign] + 2492 | p = uri->path; + | ^ +../uri.c:2393:9: warning: unused variable ‘i’ [-Wunused-variable] + 2393 | int i = 0; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Lexternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MF.c +../H5MF.c: In function ‘H5MF_settle_meta_data_fsm’: +../H5MF.c:3249:17: warning: unused variable ‘fs_stat’ [-Wunused-variable] + 3249 | H5FS_stat_t fs_stat; /* Information for hdr FSM */ + | ^~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MFaggr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MFsection.c +../H5MFsection.c: In function ‘H5MF_sect_split’: +../H5MFsection.c:376:22: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 376 | FUNC_LEAVE_NOAPI((H5FS_section_info_t *)ret_value) + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o valid.obj -c ../valid.c +In file included from ../valid.c:24: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MPtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xinclude.obj -c ../xinclude.c +In file included from ../xinclude.c:22: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xlink.obj -c ../xlink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5O.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oainfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlIO.obj -c ../xmlIO.c +../xmlIO.c:63: warning: "stat" redefined + 63 | # define stat _stat + | +In file included from ../xmlIO.c:24: +/usr/share/mingw-w64/include/sys/stat.h:279: note: this is the location of the previous definition + 279 | #define stat _stat64 + | +In file included from ../os/default/libxml/nanoftp.h:20, + from ../xmlIO.c:92: +/usr/share/mingw-w64/include/winsock2.h:15:2: warning: #warning Please include winsock2.h before windows.h [-Wcpp] + 15 | #warning Please include winsock2.h before windows.h + | ^~~~~~~ +../xmlIO.c: In function ‘xmlIOErrMemory’: +../xmlIO.c:256:5: warning: too many arguments for format [-Wformat-extra-args] + 256 | __xmlSimpleError(XML_FROM_IO, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../xmlIO.c: In function ‘xmlFdRead’: +../xmlIO.c:829:22: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 829 | ret = read((int) (long) context, &buffer[0], len); + | ^ +../xmlIO.c: In function ‘xmlFdWrite’: +../xmlIO.c:850:20: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 850 | ret = write((int) (long) context, &buffer[0], len); + | ^ +../xmlIO.c: In function ‘xmlFdClose’: +../xmlIO.c:868:23: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 868 | ret = close((int) (long) context); + | ^ +../xmlIO.c: In function ‘xmlZMemBuffExtend’: +../xmlIO.c:1675:33: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘size_t’ {aka ‘long long unsigned int’} [-Wformat=] + 1675 | "xmlZMemBuffExtend: %s %lu bytes.\n", + | ~~^ + | | + | long unsigned int + | %I64u + 1676 | "Allocation failure extending output buffer to", + 1677 | new_size ); + | ~~~~~~~~ + | | + | size_t {aka long long unsigned int} +../xmlIO.c: In function ‘xmlParserInputBufferCreateFd’: +../xmlIO.c:3006:24: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 3006 | ret->context = (void *) (long) fd; + | ^ +../xmlIO.c: In function ‘xmlOutputBufferCreateFd’: +../xmlIO.c:3112:24: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 3112 | ret->context = (void *) (long) fd; + | ^ +In file included from ../xmlIO.c:88: +../xmlIO.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oalloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlmemory.obj -c ../xmlmemory.c +../xmlmemory.c: In function ‘xmlMemFree’: +../xmlmemory.c:476:33: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 476 | "xmlMemFree(%lX) error\n", (unsigned long) ptr); + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oattr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oattribute.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Obogus.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Obtreek.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlreader.obj -c ../xmlreader.c +In file included from ../xmlreader.c:34: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocache_image.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ochunk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocont.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Odbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Odrvinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlregexp.obj -c ../xmlregexp.c +In file included from ../xmlregexp.c:31: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Odtype.c +../H5Odtype.c: In function ‘H5O_dtype_copy’: +../H5Odtype.c:1192:32: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1192 | if(NULL == (dst = H5T_copy(src, H5T_COPY_ALL))) + | ^~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Odtype.c:19: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Odtype.c: In function ‘H5O_dtype_pre_copy_file’: +../H5Odtype.c:1541:49: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1541 | if(NULL == (udata->src_dtype = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) + | ^~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Odtype.c:19: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlmodule.obj -c ../xmlmodule.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oefl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ofill.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oflush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlsave.obj -c ../xmlsave.c +../xmlsave.c: In function ‘xmlSaveErrMemory’: +../xmlsave.c:111:5: warning: too many arguments for format [-Wformat-extra-args] + 111 | __xmlSimpleError(XML_FROM_OUTPUT, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +In file included from ../xmlsave.c:14: +../xmlsave.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ofsinfo.c +../H5Ofsinfo.c: In function ‘H5O_fsinfo_decode’: +../H5Ofsinfo.c:132:35: warning: ‘threshold’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 132 | fsinfo->threshold = threshold; + | ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oginfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Olayout.c +../H5Olayout.c: In function ‘H5O__layout_decode’: +../H5Olayout.c:412:90: warning: ‘tmp_hsize’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 412 | if(NULL == (mesg->storage.u.virt.list = (H5O_storage_virtual_ent_t *)H5MM_calloc((size_t)tmp_hsize * sizeof(H5O_storage_virtual_ent_t)))) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Olinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Olink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Omessage.c +../H5Omessage.c: In function ‘H5O_msg_reset_share’: +../H5Omessage.c:1691:28: warning: variable ‘type’ set but not used [-Wunused-but-set-variable] + 1691 | const H5O_msg_class_t *type; /* Actual H5O class type for the ID */ + | ^~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Omtime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oname.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Onull.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Opline.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Orefcount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Osdspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oshared.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oshmesg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ostab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Otest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ounknown.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5P.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pacpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdapl.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Pdapl.c:35: +In function ‘strncpy’, + inlined from ‘H5Pget_efile_prefix’ at ../H5Pdapl.c:1280:13: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Pdapl.c:35: +../H5Pdapl.c: In function ‘H5Pget_efile_prefix’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Pdapl.c:1278:15: note: in expansion of macro ‘HDstrlen’ + 1278 | len = HDstrlen(my_prefix); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdcpl.c +../H5Pdcpl.c: In function ‘H5P_get_fill_value’: +../H5Pdcpl.c:3329:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 3329 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(type, H5T_COPY_TRANSIENT), FALSE)) < 0) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Pdcpl.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdxpl.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Pdxpl.c:35: +In function ‘strncpy’, + inlined from ‘H5Pget_data_transform’ at ../H5Pdxpl.c:1129:2: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Pdxpl.c:35: +../H5Pdxpl.c: In function ‘H5Pget_data_transform’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Pdxpl.c:1127:11: note: in expansion of macro ‘HDstrlen’ + 1127 | len = HDstrlen(pexp); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pencdec.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Pencdec.c:29: +In function ‘strncpy’, + inlined from ‘H5P__encode_cb’ at ../H5Pencdec.c:351:13, + inlined from ‘H5P__encode_cb’ at ../H5Pencdec.c:332:1: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Pencdec.c:29: +../H5Pencdec.c: In function ‘H5P__encode_cb’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Pencdec.c:349:25: note: in expansion of macro ‘HDstrlen’ + 349 | prop_name_len = HDstrlen(prop->name) + 1; + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlschemas.obj -c ../xmlschemas.c +../xmlschemas.c: In function ‘xmlSchemaPSimpleErr’: +../xmlschemas.c:1861:22: warning: too many arguments for format [-Wformat-extra-args] + 1861 | msg); + | ^~~ +../xmlschemas.c: In function ‘xmlSchemaPErrMemory’: +../xmlschemas.c:1878:22: warning: too many arguments for format [-Wformat-extra-args] + 1878 | extra); + | ^~~~~ +../xmlschemas.c: In function ‘xmlSchemaVErrMemory’: +../xmlschemas.c:2002:22: warning: too many arguments for format [-Wformat-extra-args] + 2002 | extra); + | ^~~~~ +../xmlschemas.c: In function ‘xmlSchemaPResCompAttrErr’: +../xmlschemas.c:2834:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 2834 | if (refTypeStr == NULL) + | ^~ +../xmlschemas.c:2836:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 2836 | xmlSchemaPErrExt(ctxt, ownerElem, error, + | ^~~~~~~~~~~~~~~~ +../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeQNameValue’: +../xmlschemas.c:5824:6: warning: too many arguments for format [-Wformat-extra-args] + 5824 | NULL, value, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlGetMaxOccurs’: +../xmlschemas.c:6047:3: warning: too many arguments for format [-Wformat-extra-args] + 6047 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:6061:6: warning: too many arguments for format [-Wformat-extra-args] + 6061 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:6078:6: warning: too many arguments for format [-Wformat-extra-args] + 6078 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c: In function ‘xmlGetMinOccurs’: +../xmlschemas.c:6113:6: warning: too many arguments for format [-Wformat-extra-args] + 6113 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:6130:6: warning: too many arguments for format [-Wformat-extra-args] + 6130 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c: In function ‘xmlSchemaPGetBoolNodeValue’: +../xmlschemas.c:6175:6: warning: too many arguments for format [-Wformat-extra-args] + 6175 | NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlGetBooleanProp’: +../xmlschemas.c:6223:6: warning: too many arguments for format [-Wformat-extra-args] + 6223 | NULL, val, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeValue’: +../xmlschemas.c:6328:6: warning: too many arguments for format [-Wformat-extra-args] + 6328 | type, NULL, value, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaParseWildcardNs’: +../xmlschemas.c:6763:6: warning: too many arguments for format [-Wformat-extra-args] + 6763 | NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c:6801:7: warning: too many arguments for format [-Wformat-extra-args] + 6801 | nsItem, NULL, NULL, NULL); + | ^~~~~~ +../xmlschemas.c: In function ‘xmlSchemaParseLocalAttribute’: +../xmlschemas.c:7188:8: warning: too many arguments for format [-Wformat-extra-args] + 7188 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:7208:4: warning: too many arguments for format [-Wformat-extra-args] + 7208 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:7366:2: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 7366 | if (defValue != NULL) + | ^~ +../xmlschemas.c:7368:6: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 7368 | if (defValueType == WXS_ATTR_DEF_VAL_FIXED) + | ^~ +../xmlschemas.c: In function ‘xmlSchemaParseElement’: +../xmlschemas.c:8629:4: warning: too many arguments for format [-Wformat-extra-args] + 8629 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:8708:4: warning: too many arguments for format [-Wformat-extra-args] + 8708 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:8738:7: warning: too many arguments for format [-Wformat-extra-args] + 8738 | NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaParseSimpleType’: +../xmlschemas.c:9294:7: warning: too many arguments for format [-Wformat-extra-args] + 9294 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c: In function ‘xmlSchemaParseSchemaElement’: +../xmlschemas.c:9693:3: warning: too many arguments for format [-Wformat-extra-args] + 9693 | "(qualified | unqualified)", val, NULL, NULL, NULL); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +../xmlschemas.c:9706:3: warning: too many arguments for format [-Wformat-extra-args] + 9706 | "(qualified | unqualified)", val, NULL, NULL, NULL); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +../xmlschemas.c:9724:3: warning: too many arguments for format [-Wformat-extra-args] + 9724 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:9740:3: warning: too many arguments for format [-Wformat-extra-args] + 9740 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c: In function ‘xmlSchemaParseImport’: +../xmlschemas.c:10763:6: warning: too many arguments for format [-Wformat-extra-args] +10763 | NULL, namespaceName, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c:10774:6: warning: too many arguments for format [-Wformat-extra-args] +10774 | NULL, schemaLocation, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaParseComplexType’: +../xmlschemas.c:12233:8: warning: too many arguments for format [-Wformat-extra-args] +12233 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:12251:8: warning: too many arguments for format [-Wformat-extra-args] +12251 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c: In function ‘xmlSchemaValidateFacets’: +../xmlschemas.c:24253:3: warning: too many arguments for format [-Wformat-extra-args] +24253 | value, len, type, facetLink->facet, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c:24289:3: warning: too many arguments for format [-Wformat-extra-args] +24289 | value, length, type, facetLink->facet, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c:24341:7: warning: too many arguments for format [-Wformat-extra-args] +24341 | value, 0, type, NULL, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c:24386:4: warning: too many arguments for format [-Wformat-extra-args] +24386 | value, 0, type, facet, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c: In function ‘xmlSchemaSetValidStructuredErrors’: +../xmlschemas.c:27790:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] +27790 | if (ctxt == NULL) + | ^~ +../xmlschemas.c:27792:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ +27792 | ctxt->serror = serror; + | ^~~~ +In file included from ../xmlschemas.c:55: +../xmlschemas.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pfapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pfcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pfmpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pgcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlschemastypes.obj -c ../xmlschemastypes.c +../xmlschemastypes.c: In function ‘xmlSchemaTypeErrMemory’: +../xmlschemastypes.c:204:5: warning: too many arguments for format [-Wformat-extra-args] + 204 | __xmlSimpleError(XML_FROM_DATATYPE, XML_ERR_NO_MEMORY, node, NULL, extra); + | ^~~~~~~~~~~~~~~~ +In file included from ../xmlschemastypes.c:18: +../xmlschemastypes.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlunicode.obj -c ../xmlunicode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pint.c +../H5Pint.c: In function ‘H5P__iterate_pclass_cb’: +../H5Pint.c:4066:11: warning: unused variable ‘key’ [-Wunused-variable] + 4066 | char *key = (char *)_key; /* Pointer to the property's name */ + | ^~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlwriter.obj -c ../xmlwriter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Plapl.c +../H5Plapl.c: In function ‘H5P__lacc_elink_fapl_cmp’: +../H5Plapl.c:570:16: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] + 570 | herr_t status; + | ^~~~~~ +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Plapl.c:35: +In function ‘strncpy’, + inlined from ‘H5Pget_elink_prefix’ at ../H5Plapl.c:1062:13: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Plapl.c:35: +../H5Plapl.c: In function ‘H5Pget_elink_prefix’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Plapl.c:1060:15: note: in expansion of macro ‘HDstrlen’ + 1060 | len = HDstrlen(my_prefix); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Plcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pocpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pocpypl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pstrcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ptest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5PB.c +../H5PB.c: In function ‘H5PB_dest’: +../H5PB.c:487:7: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 487 | f = fio_info->f; + | ^ +../H5PB.c: In function ‘H5PB_read’: +../H5PB.c:793:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 793 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5PB.c:794:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 794 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +../H5PB.c: In function ‘H5PB_write’: +../H5PB.c:1100:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1100 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5PB.c:1101:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1101 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +../H5PB.c: In function ‘H5PB__write_entry’: +../H5PB.c:1525:29: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1525 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5PB.c:1526:28: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1526 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5PL.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5PL.c:23: +In function ‘strncpy’, + inlined from ‘H5PLget’ at ../H5PL.c:623:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5PL.c:23: +../H5PL.c: In function ‘H5PLget’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5PL.c:621:11: note: in expansion of macro ‘HDstrlen’ + 621 | len = HDstrlen(dl_path); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5R.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Rdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5UC.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5RS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5S.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Sall.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Sdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xpath.obj -c ../xpath.c +../xpath.c: In function ‘xmlXPathCmpNodesExt’: +../xpath.c:170:12: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 170 | if ((0 > (long) node1->content) && /* TODO: Would a != 0 suffice here? */ + | ^ +../xpath.c:171:12: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 171 | (0 > (long) node2->content) && + | ^ +../xpath.c:174:14: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 174 | l1 = -((long) node1->content); + | ^ +../xpath.c:175:14: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 175 | l2 = -((long) node2->content); + | ^ +../xpath.c:220:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 220 | (0 <= (long) node1->content)) { + | ^ +../xpath.c:270:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 270 | (0 <= (long) node2->content)) + | ^ +../xpath.c:343:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 343 | (0 > (long) node1->content) && + | ^ +../xpath.c:344:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 344 | (0 > (long) node2->content) && + | ^ +../xpath.c:347:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 347 | l1 = -((long) node1->content); + | ^ +../xpath.c:348:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 348 | l2 = -((long) node2->content); + | ^ +../xpath.c:411:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 411 | (0 > (long) node1->content) && + | ^ +../xpath.c:412:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 412 | (0 > (long) node2->content) && + | ^ +../xpath.c:415:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 415 | l1 = -((long) node1->content); + | ^ +../xpath.c:416:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 416 | l2 = -((long) node2->content); + | ^ +In file included from ../xpath.c:462: +../timsort.h: In function ‘libxml_domnode_tim_sort_resize’: +../timsort.h:326:80: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 3 has type ‘long long unsigned int’ [-Wformat=] + 326 | fprintf(stderr, "Error allocating temporary storage for tim sort: need %lu bytes", sizeof(SORT_TYPE) * new_size); + | ~~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + | | | + | long unsigned int long long unsigned int + | %I64u +../timsort.h:326:80: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 3 has type ‘long long unsigned int’ [-Wformat=] + 326 | fprintf(stderr, "Error allocating temporary storage for tim sort: need %lu bytes", sizeof(SORT_TYPE) * new_size); + | ~~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + | | | + | long unsigned int long long unsigned int + | %I64u +../timsort.h: In function ‘libxml_domnode_tim_sort_collapse’: +../timsort.h:397:19: warning: variable ‘BD’ set but not used [-Wunused-but-set-variable] + 397 | int ABC, BCD, BD, CD; + | ^~ +../xpath.c: In function ‘xmlXPathOrderDocElems’: +../xpath.c:3236:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 3236 | cur->content = (void *) (-(++count)); + | ^ +../xpath.c: In function ‘xmlXPathCmpNodes’: +../xpath.c:3328:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 3328 | (0 > (long) node1->content) && + | ^ +../xpath.c:3329:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 3329 | (0 > (long) node2->content) && + | ^ +../xpath.c:3333:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 3333 | l1 = -((long) node1->content); + | ^ +../xpath.c:3334:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 3334 | l2 = -((long) node2->content); + | ^ +../xpath.c:3391:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 3391 | (0 > (long) node1->content) && + | ^ +../xpath.c:3392:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 3392 | (0 > (long) node2->content) && + | ^ +../xpath.c:3396:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 3396 | l1 = -((long) node1->content); + | ^ +../xpath.c:3397:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 3397 | l2 = -((long) node2->content); + | ^ +../xpath.c: In function ‘xmlXPathNodeCollectAndTest’: +../xpath.c:12409:28: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘xmlXPathTypeVal’ {aka ‘enum ’} [-Wenum-compare] +12409 | } else if (cur->type == type) { + | ^~ +In file included from ../xpath.c:43: +../xpath.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +In file included from ../xpath.c:476: +../trionan.c:218:1: warning: ‘trio_is_negative’ defined but not used [-Wunused-function] + 218 | trio_is_negative + | ^~~~~~~~~~~~~~~~ +../trionan.c:194:1: warning: ‘trio_is_special_quantity’ defined but not used [-Wunused-function] + 194 | trio_is_special_quantity + | ^~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xpointer.obj -c ../xpointer.c +../xpointer.c: In function ‘xmlXPtrNewRangeNodePoint’: +../xpointer.c:451:21: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘enum ’ [-Wenum-compare] + 451 | if (start->type != XPATH_POINT) + | ^~ +In file included from ../xpointer.c:31: +../xpointer.c: At top level: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlstring.obj -c ../xmlstring.c +In file included from ../xmlstring.c:22: +../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element + 312 | XMLPUBVAR const xmlChar xmlStringText[]; + | ^~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element + 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; + | ^~~~~~~~~~~~~~~~~~ +../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element + 314 | XMLPUBVAR const xmlChar xmlStringComment[]; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nanohttp_stream.obj -c ../nanohttp_stream.c +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:45: warning: "EINPROGRESS" redefined + 45 | #define EINPROGRESS WSAEINPROGRESS + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:158: note: this is the location of the previous definition + 158 | #define EINPROGRESS 112 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:46: warning: "EALREADY" redefined + 46 | #define EALREADY WSAEALREADY + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:106: note: this is the location of the previous definition + 106 | #define EALREADY 103 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:47: warning: "ENOTSOCK" redefined + 47 | #define ENOTSOCK WSAENOTSOCK + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:146: note: this is the location of the previous definition + 146 | #define ENOTSOCK 128 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:48: warning: "EDESTADDRREQ" redefined + 48 | #define EDESTADDRREQ WSAEDESTADDRREQ + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:118: note: this is the location of the previous definition + 118 | #define EDESTADDRREQ 109 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:49: warning: "EMSGSIZE" redefined + 49 | #define EMSGSIZE WSAEMSGSIZE + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:126: note: this is the location of the previous definition + 126 | #define EMSGSIZE 115 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:50: warning: "EPROTOTYPE" redefined + 50 | #define EPROTOTYPE WSAEPROTOTYPE + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:231: note: this is the location of the previous definition + 231 | #define EPROTOTYPE 136 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:51: warning: "ENOPROTOOPT" redefined + 51 | #define ENOPROTOOPT WSAENOPROTOOPT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:142: note: this is the location of the previous definition + 142 | #define ENOPROTOOPT 123 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:52: warning: "EPROTONOSUPPORT" redefined + 52 | #define EPROTONOSUPPORT WSAEPROTONOSUPPORT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:178: note: this is the location of the previous definition + 178 | #define EPROTONOSUPPORT 135 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:54: warning: "EOPNOTSUPP" redefined + 54 | #define EOPNOTSUPP WSAEOPNOTSUPP + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:162: note: this is the location of the previous definition + 162 | #define EOPNOTSUPP 130 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:56: warning: "EAFNOSUPPORT" redefined + 56 | #define EAFNOSUPPORT WSAEAFNOSUPPORT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:82: note: this is the location of the previous definition + 82 | #define EAFNOSUPPORT 102 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:57: warning: "EADDRINUSE" redefined + 57 | #define EADDRINUSE WSAEADDRINUSE + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:86: note: this is the location of the previous definition + 86 | #define EADDRINUSE 100 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:58: warning: "EADDRNOTAVAIL" redefined + 58 | #define EADDRNOTAVAIL WSAEADDRNOTAVAIL + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:90: note: this is the location of the previous definition + 90 | #define EADDRNOTAVAIL 101 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:59: warning: "ENETDOWN" redefined + 59 | #define ENETDOWN WSAENETDOWN + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:130: note: this is the location of the previous definition + 130 | #define ENETDOWN 116 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:60: warning: "ENETUNREACH" redefined + 60 | #define ENETUNREACH WSAENETUNREACH + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:138: note: this is the location of the previous definition + 138 | #define ENETUNREACH 118 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:61: warning: "ENETRESET" redefined + 61 | #define ENETRESET WSAENETRESET + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:134: note: this is the location of the previous definition + 134 | #define ENETRESET 117 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:62: warning: "ECONNABORTED" redefined + 62 | #define ECONNABORTED WSAECONNABORTED + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:102: note: this is the location of the previous definition + 102 | #define ECONNABORTED 106 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:63: warning: "ECONNRESET" redefined + 63 | #define ECONNRESET WSAECONNRESET + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:114: note: this is the location of the previous definition + 114 | #define ECONNRESET 108 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:64: warning: "ENOBUFS" redefined + 64 | #define ENOBUFS WSAENOBUFS + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:98: note: this is the location of the previous definition + 98 | #define ENOBUFS 119 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:65: warning: "EISCONN" redefined + 65 | #define EISCONN WSAEISCONN + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:94: note: this is the location of the previous definition + 94 | #define EISCONN 113 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:66: warning: "ENOTCONN" redefined + 66 | #define ENOTCONN WSAENOTCONN + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:150: note: this is the location of the previous definition + 150 | #define ENOTCONN 126 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:68: warning: "ETIMEDOUT" redefined + 68 | #define ETIMEDOUT WSAETIMEDOUT + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:223: note: this is the location of the previous definition + 223 | #define ETIMEDOUT 138 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:69: warning: "ECONNREFUSED" redefined + 69 | #define ECONNREFUSED WSAECONNREFUSED + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:110: note: this is the location of the previous definition + 110 | #define ECONNREFUSED 107 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:70: warning: "ELOOP" redefined + 70 | #define ELOOP WSAELOOP + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:227: note: this is the location of the previous definition + 227 | #define ELOOP 114 + | +In file included from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +../os/WIN32/wsockcompat.h:72: warning: "EHOSTUNREACH" redefined + 72 | #define EHOSTUNREACH WSAEHOSTUNREACH + | +In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, + from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, + from /usr/share/mingw-w64/include/winnt.h:1554, + from /usr/share/mingw-w64/include/minwindef.h:163, + from /usr/share/mingw-w64/include/windef.h:8, + from /usr/share/mingw-w64/include/windows.h:69, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/errno.h:122: note: this is the location of the previous definition + 122 | #define EHOSTUNREACH 110 + | +../nanohttp_stream.c: In function ‘xmlParseJpegHeader’: +../nanohttp_stream.c:628:40: warning: pointer targets in passing argument 1 of ‘xmlStrncmp’ differ in signedness [-Wpointer-sign] + 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { + | ~~~~^~~~~~~~~~~~~~ + | | + | char * +In file included from ../libxml.h:12, + from ../nanohttp_stream.c:16: +../os/default/libxml/xmlstring.h:67:58: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘char *’ + 67 | xmlStrncmp (const xmlChar *str1, + | ~~~~~~~~~~~~~~~^~~~ +../nanohttp_stream.c:628:56: warning: pointer targets in passing argument 2 of ‘xmlStrncmp’ differ in signedness [-Wpointer-sign] + 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { + | ^~~~~~~~~~~~ + | | + | const char * +In file included from ../libxml.h:12, + from ../nanohttp_stream.c:16: +../os/default/libxml/xmlstring.h:68:57: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘const char *’ + 68 | const xmlChar *str2, + | ~~~~~~~~~~~~~~~^~~~ +../nanohttp_stream.c: In function ‘xmlNanoHTTPScanAnswer’: +../nanohttp_stream.c:979:30: warning: pointer targets in initialization of ‘const char *’ from ‘const xmlChar *’ {aka ‘const unsigned char *’} differ in signedness [-Wpointer-sign] + 979 | const char* boundaryName = xmlStrstr(BAD_CAST ctxt->contentType, BAD_CAST "boundary"); + | ^~~~~~~~~ +../nanohttp_stream.c:981:17: warning: pointer targets in assignment from ‘const xmlChar *’ {aka ‘const unsigned char *’} to ‘const char *’ differ in signedness [-Wpointer-sign] + 981 | boundaryName = xmlStrstr(BAD_CAST boundaryName, BAD_CAST "="); + | ^ +../nanohttp_stream.c: In function ‘xmlNanoHTTPConnectAttempt’: +../nanohttp_stream.c:1240:67: warning: pointer targets in passing argument 5 of ‘getsockopt’ differ in signedness [-Wpointer-sign] + 1240 | if (getsockopt(s, SOL_SOCKET, SO_ERROR, (char *) &status, &len) < + | ^~~~ + | | + | unsigned int * +In file included from ../os/WIN32/wsockcompat.h:12, + from ../os/WIN32/config.h:34, + from ../libxml.h:39, + from ../nanohttp_stream.c:16: +/usr/share/mingw-w64/include/winsock2.h:1010:94: note: expected ‘int *’ but argument is of type ‘unsigned int *’ + 1010 | WINSOCK_API_LINKAGE int WSAAPI getsockopt(SOCKET s,int level,int optname,char *optval,int *optlen); + | ~~~~~^~~~~~ +../nanohttp_stream.c: In function ‘xmlNanoHTTPConnectHost’: +../nanohttp_stream.c:1288:9: warning: unused variable ‘i’ [-Wunused-variable] + 1288 | int i; + | ^ +../nanohttp_stream.c:1281:20: warning: unused variable ‘ia’ [-Wunused-variable] + 1281 | struct in_addr ia; + | ^~ +../nanohttp_stream.c:1279:21: warning: unused variable ‘h’ [-Wunused-variable] + 1279 | struct hostent *h; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o xml2.dll -shared -Wl,--out-implib,libxml2.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ buf.obj c14n.obj catalog.obj chvalid.obj debugXML.obj dict.obj DOCBparser.obj encoding.obj entities.obj error.obj globals.obj hash.obj HTMLparser.obj HTMLtree.obj legacy.obj list.obj nanoftp.obj nanohttp.obj parser.obj parserInternals.obj pattern.obj relaxng.obj SAX2.obj SAX.obj schematron.obj threads.obj tree.obj uri.obj valid.obj xinclude.obj xlink.obj xmlIO.obj xmlmemory.obj xmlreader.obj xmlregexp.obj xmlmodule.obj xmlsave.obj xmlschemas.obj xmlschemastypes.obj xmlunicode.obj xmlwriter.obj xpath.obj xpointer.obj xmlstring.obj -lzlib -lws2_32 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o nanohttp_stream.dll -shared -Wl,--out-implib,libnanohttp_stream.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ nanohttp_stream.obj buf.obj c14n.obj catalog.obj chvalid.obj debugXML.obj dict.obj DOCBparser.obj encoding.obj entities.obj error.obj globals.obj hash.obj HTMLparser.obj HTMLtree.obj legacy.obj list.obj nanoftp.obj nanohttp.obj parser.obj parserInternals.obj pattern.obj relaxng.obj SAX2.obj SAX.obj schematron.obj threads.obj tree.obj uri.obj valid.obj xinclude.obj xlink.obj xmlIO.obj xmlmemory.obj xmlreader.obj xmlregexp.obj xmlmodule.obj xmlsave.obj xmlschemas.obj xmlschemastypes.obj xmlunicode.obj xmlwriter.obj xpath.obj xpointer.obj xmlstring.obj -lxml2 -lzlib -lws2_32 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Shyper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Snone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Spoint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Stest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Sselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMmessage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5ST.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SL.c +../H5SL.c: In function ‘H5SL_term_package’: +../H5SL.c:655:21: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] + 655 | herr_t ret; + | ^~~ +In file included from ../H5SL.c:64: +../H5SL.c: In function ‘H5SL_search’: +../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 2267 | return(ret_value); \ + | ^ +../H5SL.c:1397:11: note: ‘ret_value’ was declared here + 1397 | void *ret_value; /* Return value */ + | ^~~~~~~~~ +In file included from ../H5SL.c:64: +../H5SL.c: In function ‘H5SL_find’: +../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 2267 | return(ret_value); \ + | ^ +../H5SL.c:1698:18: note: ‘ret_value’ was declared here + 1698 | H5SL_node_t *ret_value; /* Return value */ + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5T.c +../H5T.c: In function ‘H5T_path_find’: +../H5T.c:4499:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 4499 | if(NULL == (path->src = H5T_copy(src, H5T_COPY_ALL))) + | ^~~ +../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) + | ~~~~~~~^~~~~~ +../H5T.c:4501:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 4501 | if(NULL == (path->dst = H5T_copy(dst, H5T_COPY_ALL))) + | ^~~ +../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) + | ~~~~~~~^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tarray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make -C ./GraphicsMagickSrc install +make -C ./bzlib install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' +mkdir -p O.Common +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF randtable.d ../randtable.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huffman.d ../huffman.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompress.d ../decompress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crctable.d ../crctable.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d ../compress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bzlib.d ../bzlib.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tcommit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blocksort.d ../blocksort.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tcompound.c +../H5Tcompound.c: In function ‘H5T__insert’: +../H5Tcompound.c:459:56: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 459 | parent->shared->u.compnd.memb[idx].type = H5T_copy(member, H5T_COPY_ALL); + | ^~~~~~ +In file included from ../H5Tpkg.h:37, + from ../H5Tcompound.c:33: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../blocksort.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../bzlib.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../compress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../crctable.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../decompress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../huffman.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../randtable.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +/usr/bin/ar -rc libbzlib.a blocksort.o bzlib.o compress.o crctable.o decompress.o huffman.o randtable.o +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +/usr/bin/ranlib libbzlib.a +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +g++ -o libbzlib.so -shared -fPIC -Wl,-hlibbzlib.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 blocksort.o bzlib.o compress.o crctable.o decompress.o huffman.o randtable.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ + T_A=windows-x64-mingw install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF randtable.d -MT randtable.obj ../randtable.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huffman.d -MT huffman.obj ../huffman.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompress.d -MT decompress.obj ../decompress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crctable.d -MT crctable.obj ../crctable.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d -MT compress.obj ../compress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bzlib.d -MT bzlib.obj ../bzlib.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blocksort.d -MT blocksort.obj ../blocksort.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blocksort.obj -c ../blocksort.c +In file included from ../bzlib_private.h:33, + from ../blocksort.c:22: +../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export + 85 | # pragma message( "BZIP compiling as DLL export" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o bzlib.obj -c ../bzlib.c +In file included from ../bzlib_private.h:33, + from ../bzlib.c:31: +../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export + 85 | # pragma message( "BZIP compiling as DLL export" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o compress.obj -c ../compress.c +In file included from ../bzlib_private.h:33, + from ../compress.c:29: +../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export + 85 | # pragma message( "BZIP compiling as DLL export" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o crctable.obj -c ../crctable.c +In file included from ../bzlib_private.h:33, + from ../crctable.c:22: +../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export + 85 | # pragma message( "BZIP compiling as DLL export" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o decompress.obj -c ../decompress.c +In file included from ../bzlib_private.h:33, + from ../decompress.c:22: +../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export + 85 | # pragma message( "BZIP compiling as DLL export" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o huffman.obj -c ../huffman.c +In file included from ../bzlib_private.h:33, + from ../huffman.c:22: +../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export + 85 | # pragma message( "BZIP compiling as DLL export" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o randtable.obj -c ../randtable.c +In file included from ../bzlib_private.h:33, + from ../randtable.c:22: +../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export + 85 | # pragma message( "BZIP compiling as DLL export" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-windres -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include ../bzlib.rc bzlib.coff +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o bzlib.dll -shared -Wl,--out-implib,libbzlib.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ blocksort.obj bzlib.obj compress.obj crctable.obj decompress.obj huffman.obj randtable.obj bzlib.coff -lws2_32 +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' +make -C ./lcms install +make -C ./src install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' +perl -C0 /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' +perl -C0 /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' +mkdir -p O.Common +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsxform.d ../cmsxform.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmswtpnt.d ../cmswtpnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsvirt.d ../cmsvirt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmstypes.d ../cmstypes.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssm.d ../cmssm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssamp.d ../cmssamp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsps2.d ../cmsps2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsplugin.d ../cmsplugin.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspcs.d ../cmspcs.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspack.d ../cmspack.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsopt.d ../cmsopt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsnamed.d ../cmsnamed.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmtrx.d ../cmsmtrx.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmd5.d ../cmsmd5.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tconv.c +../H5Tconv.c: In function ‘H5T_conv_struct_free’: +../H5Tconv.c:1876:17: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] + 1876 | int status; + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmslut.d ../cmslut.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio1.d ../cmsio1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio0.d ../cmsio0.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsintrp.d ../cmsintrp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmshalf.d ../cmshalf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tcset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgmt.d ../cmsgmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgamma.d ../cmsgamma.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmserr.d ../cmserr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscnvrt.d ../cmscnvrt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscgats.d ../cmscgats.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscam02.d ../cmscam02.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsalpha.d ../cmsalpha.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsalpha.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tenum.c +../H5Tenum.c: In function ‘H5T__enum_create’: +../H5Tenum.c:110:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 110 | ret_value->shared->parent = H5T_copy(parent, H5T_COPY_ALL); + | ^~~~~~ +In file included from ../H5Tpkg.h:37, + from ../H5Tenum.c:26: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Tenum.c: In function ‘H5T_enum_nameof’: +../H5Tenum.c:411:38: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 411 | if(NULL == (copied_dt = H5T_copy(dt, H5T_COPY_ALL))) + | ^~ +In file included from ../H5Tpkg.h:37, + from ../H5Tenum.c:26: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Tenum.c: In function ‘H5T_enum_valueof’: +../H5Tenum.c:550:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 550 | if (NULL==(copied_dt=H5T_copy(dt, H5T_COPY_ALL))) + | ^~ +In file included from ../H5Tpkg.h:37, + from ../H5Tenum.c:26: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmscam02.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tfields.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tfixed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tfloat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tnative.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmscgats.c +../cmscgats.c: In function ‘ReadReal’: +../cmscgats.c:577:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 577 | else + | ^~~~ +../cmscgats.c:584:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 584 | e = 0; + | ^ +../cmscgats.c: In function ‘ParseFloatNumber’: +../cmscgats.c:654:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 654 | else + | ^~~~ +../cmscgats.c:661:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 661 | e = 0; + | ^ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘GetVal’ at ../cmscgats.c:986:19: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying between 255 and 1023 bytes from a string of length 1023 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘AddToList.constprop’ at ../cmscgats.c:1184:22: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList.constprop’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘AddToList.constprop’ at ../cmscgats.c:1215:22: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList.constprop’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘AddToList’ at ../cmscgats.c:1184:22: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘AddToList’ at ../cmscgats.c:1185:47: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘AddToList’ at ../cmscgats.c:1215:22: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘isabsolutepath’ at ../cmscgats.c:396:5, + inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:419:9, + inlined from ‘InSymbol’ at ../cmscgats.c:920:21: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 3 bytes from a string of length 1023 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:421:9, + inlined from ‘InSymbol’ at ../cmscgats.c:920:21: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 255 bytes from a string of length 1023 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:427:5, + inlined from ‘InSymbol’ at ../cmscgats.c:920:21: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 255 bytes from a string of length 255 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:437:5, + inlined from ‘InSymbol’ at ../cmscgats.c:920:21: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying between 1 and 255 bytes from a string of length 1023 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘SetData’ at ../cmscgats.c:1545:47: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘SetData’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, + inlined from ‘DataFormatSection’ at ../cmscgats.c:1841:18, + inlined from ‘ParseIT8’ at ../cmscgats.c:2061:26: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘ParseIT8’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, + inlined from ‘cmsIT8SetDataFormat’ at ../cmscgats.c:1490:16: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘cmsIT8SetDataFormat’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘SetData’ at ../cmscgats.c:1545:47, + inlined from ‘cmsIT8SetDataRowCol’ at ../cmscgats.c:2569:12: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘cmsIT8SetDataRowCol’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘SetData’ at ../cmscgats.c:1545:47, + inlined from ‘cmsIT8SetDataRowColDbl’ at ../cmscgats.c:2582:12: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘cmsIT8SetDataRowColDbl’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Toffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Toh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmscnvrt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Topaque.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmserr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Torder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tprecis.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsgamma.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tstrpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tvisit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsgmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmshalf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tvlen.c +../H5Tvlen.c: In function ‘H5T__vlen_create’: +../H5Tvlen.c:142:47: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 142 | if(NULL == (dt->shared->parent = H5T_copy(base, H5T_COPY_ALL))) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Tvlen.c:23: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5TS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5VM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5WB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsintrp.c +../cmsintrp.c: In function ‘Eval4Inputs’: +../cmsintrp.c:918:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 918 | else + | ^~~~ +../cmsintrp.c:930:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 930 | Rest = c1 * rx + c2 * ry + c3 * rz; + | ^~~~ +../cmsintrp.c:982:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 982 | else + | ^~~~ +../cmsintrp.c:994:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 994 | Rest = c1 * rx + c2 * ry + c3 * rz; + | ^~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Z.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zdeflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zfletcher32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsio0.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsio1.c +../cmsio1.c: In function ‘_cmsReadFloatDevicelinkTag’: +../cmsio1.c:681:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 681 | else + | ^~~~ +../cmsio1.c:688:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 688 | if (PCS == cmsSigLabData) + | ^~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Znbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmslut.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsmd5.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsmtrx.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsnamed.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zscaleoffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsopt.c +../cmsopt.c: In function ‘PatchLUT’: +../cmsopt.c:510:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 510 | else + | ^~~~ +../cmsopt.c:526:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 526 | for (i=0; i < nChannelsOut; i++) + | ^~~ +../cmsopt.c: In function ‘PrelinEval8’: +../cmsopt.c:978:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 978 | else + | ^~~~ +../cmsopt.c:990:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 990 | Rest = c1 * rx + c2 * ry + c3 * rz + 0x8001; + | ^~~~ +../cmsopt.c: In function ‘OptimizeByComputingLinearization’: +../cmsopt.c:1030:26: warning: variable ‘lIsLinear’ set but not used [-Wunused-but-set-variable] + 1030 | cmsBool lIsSuitable, lIsLinear; + | ^~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zshuffle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zszip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmspack.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmspcs.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsplugin.c +../cmsplugin.c: In function ‘_cmsReadFloat32Number’: +../cmsplugin.c:181:15: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] + 181 | *n = *(cmsFloat32Number*) (void*) &tmp; + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmsplugin.c: In function ‘_cmsWriteFloat32Number’: +../cmsplugin.c:292:12: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] + 292 | tmp = *(cmsUInt32Number*) (void*) &n; + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsps2.c +../cmsps2.c: In function ‘WriteInputMatrixShaper’: +../cmsps2.c:964:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 964 | else + | ^~~~ +../cmsps2.c:986:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 986 | return rc; + | ^~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ztrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmssamp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../os/Linux/H5Tinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5lib_settings.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmssm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmstypes.c +../cmstypes.c: In function ‘ReadCLUT’: +../cmstypes.c:2360:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 2360 | else + | ^~~~ +../cmstypes.c:2374:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 2374 | return CLUT; + | ^~~~~~ +../cmstypes.c: In function ‘WriteCLUT’: +../cmstypes.c:2645:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 2645 | else + | ^~~~ +../cmstypes.c:2655:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 2655 | if (!_cmsWriteAlignment(io)) return FALSE; + | ^~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmstypes.c:27: +In function ‘strncpy’, + inlined from ‘Type_NamedColor_Write’ at ../cmstypes.c:3146:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘Type_NamedColor_Write’ at ../cmstypes.c:3147:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsvirt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmswtpnt.c +../cmswtpnt.c: In function ‘cmsWhitePointFromTemp’: +../cmswtpnt.c:66:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 66 | else + | ^~~~ +../cmswtpnt.c:80:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 80 | y = -3.000*(x*x) + 2.870*x - 0.275; + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5detect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +/usr/bin/ar -rc libhdf5.a H5.o H5checksum.o H5dbg.o H5system.o H5timer.o H5trace.o H5A.o H5Abtree2.o H5Adense.o H5Adeprec.o H5Aint.o H5Atest.o H5AC.o H5AClog.o H5ACdbg.o H5ACproxy_entry.o H5B.o H5Bcache.o H5Bdbg.o H5B2.o H5B2cache.o H5B2dbg.o H5B2hdr.o H5B2int.o H5B2internal.o H5B2leaf.o H5B2stat.o H5B2test.o H5C.o H5Cdbg.o H5Cepoch.o H5Cimage.o H5Clog.o H5Cprefetched.o H5Cquery.o H5Ctag.o H5Ctest.o H5CS.o H5D.o H5Dbtree.o H5Dbtree2.o H5Dchunk.o H5Dcompact.o H5Dcontig.o H5Ddbg.o H5Ddeprec.o H5Dearray.o H5Defl.o H5Dfarray.o H5Dfill.o H5Dint.o H5Dio.o H5Dlayout.o H5Dnone.o H5Doh.o H5Dscatgath.o H5Dselect.o H5Dsingle.o H5Dtest.o H5Dvirtual.o H5E.o H5Edeprec.o H5Eint.o H5EA.o H5EAcache.o H5EAdbg.o H5EAdblkpage.o H5EAdblock.o H5EAhdr.o H5EAiblock.o H5EAint.o H5EAsblock.o H5EAstat.o H5EAtest.o H5F.o H5Faccum.o H5Fcwfs.o H5Fdbg.o H5Fdeprec.o H5Fefc.o H5Ffake.o H5Fint.o H5Fio.o H5Fmount.o H5Fquery.o H5Fsfile.o H5Fspace.o H5Fsuper.o H5Fsuper_cache.o H5Ftest.o H5FA.o H5FAcache.o H5FAdbg.o H5FAdblock.o H5FAdblkpage.o H5FAhdr.o H5FAint.o H5FAstat.o H5FAtest.o H5FD.o H5FDcore.o H5FDfamily.o H5FDint.o H5FDlog.o H5FDmulti.o H5FDsec2.o H5FDspace.o H5FDstdio.o H5FDtest.o H5FL.o H5FO.o H5FS.o H5FScache.o H5FSdbg.o H5FSint.o H5FSsection.o H5FSstat.o H5FStest.o H5G.o H5Gbtree2.o H5Gcache.o H5Gcompact.o H5Gdense.o H5Gdeprec.o H5Gent.o H5Gint.o H5Glink.o H5Gloc.o H5Gname.o H5Gnode.o H5Gobj.o H5Goh.o H5Groot.o H5Gstab.o H5Gtest.o H5Gtraverse.o H5HF.o H5HFbtree2.o H5HFcache.o H5HFdbg.o H5HFdblock.o H5HFdtable.o H5HFhdr.o H5HFhuge.o H5HFiblock.o H5HFiter.o H5HFman.o H5HFsection.o H5HFspace.o H5HFstat.o H5HFtest.o H5HFtiny.o H5HG.o H5HGcache.o H5HGdbg.o H5HGquery.o H5HL.o H5HLcache.o H5HLdbg.o H5HLint.o H5HLprfx.o H5HLdblk.o H5HP.o H5I.o H5Itest.o H5L.o H5Lexternal.o H5MF.o H5MFaggr.o H5MFdbg.o H5MFsection.o H5MM.o H5MP.o H5MPtest.o H5O.o H5Oainfo.o H5Oalloc.o H5Oattr.o H5Oattribute.o H5Obogus.o H5Obtreek.o H5Ocache.o H5Ocache_image.o H5Ochunk.o H5Ocont.o H5Ocopy.o H5Odbg.o H5Odrvinfo.o H5Odtype.o H5Oefl.o H5Ofill.o H5Oflush.o H5Ofsinfo.o H5Oginfo.o H5Olayout.o H5Olinfo.o H5Olink.o H5Omessage.o H5Omtime.o H5Oname.o H5Onull.o H5Opline.o H5Orefcount.o H5Osdspace.o H5Oshared.o H5Oshmesg.o H5Ostab.o H5Otest.o H5Ounknown.o H5P.o H5Pacpl.o H5Pdapl.o H5Pdcpl.o H5Pdeprec.o H5Pdxpl.o H5Pencdec.o H5Pfapl.o H5Pfcpl.o H5Pfmpl.o H5Pgcpl.o H5Pint.o H5Plapl.o H5Plcpl.o H5Pocpl.o H5Pocpypl.o H5Pstrcpl.o H5Ptest.o H5PB.o H5PL.o H5R.o H5Rdeprec.o H5UC.o H5RS.o H5S.o H5Sall.o H5Sdbg.o H5Shyper.o H5Snone.o H5Spoint.o H5Sselect.o H5Stest.o H5SL.o H5SM.o H5SMbtree2.o H5SMcache.o H5SMmessage.o H5SMtest.o H5ST.o H5T.o H5Tarray.o H5Tbit.o H5Tcommit.o H5Tcompound.o H5Tconv.o H5Tcset.o H5Tdbg.o H5Tdeprec.o H5Tenum.o H5Tfields.o H5Tfixed.o H5Tfloat.o H5Tnative.o H5Toffset.o H5Toh.o H5Topaque.o H5Torder.o H5Tpad.o H5Tprecis.o H5Tstrpad.o H5Tvisit.o H5Tvlen.o H5TS.o H5VM.o H5WB.o H5Z.o H5Zdeflate.o H5Zfletcher32.o H5Znbit.o H5Zscaleoffset.o H5Zshuffle.o H5Zszip.o H5Ztrans.o H5Tinit.o H5lib_settings.o blosc_filter.o jpeg_h5filter.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +/usr/bin/ranlib libhdf5.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsxform.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +/usr/bin/ar -rc liblcms.a cmsalpha.o cmscam02.o cmscgats.o cmscnvrt.o cmserr.o cmsgamma.o cmsgmt.o cmshalf.o cmsintrp.o cmsio0.o cmsio1.o cmslut.o cmsmd5.o cmsmtrx.o cmsnamed.o cmsopt.o cmspack.o cmspcs.o cmsplugin.o cmsps2.o cmssamp.o cmssm.o cmstypes.o cmsvirt.o cmswtpnt.o cmsxform.o +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +/usr/bin/ranlib liblcms.a +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +g++ -o liblcms.so -shared -fPIC -Wl,-hliblcms.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 cmsalpha.o cmscam02.o cmscgats.o cmscnvrt.o cmserr.o cmsgamma.o cmsgmt.o cmshalf.o cmsintrp.o cmsio0.o cmsio1.o cmslut.o cmsmd5.o cmsmtrx.o cmsnamed.o cmsopt.o cmspack.o cmspcs.o cmsplugin.o cmsps2.o cmssamp.o cmssm.o cmstypes.o cmsvirt.o cmswtpnt.o cmsxform.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +g++ -o libhdf5.so -shared -fPIC -Wl,-hlibhdf5.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 H5.o H5checksum.o H5dbg.o H5system.o H5timer.o H5trace.o H5A.o H5Abtree2.o H5Adense.o H5Adeprec.o H5Aint.o H5Atest.o H5AC.o H5AClog.o H5ACdbg.o H5ACproxy_entry.o H5B.o H5Bcache.o H5Bdbg.o H5B2.o H5B2cache.o H5B2dbg.o H5B2hdr.o H5B2int.o H5B2internal.o H5B2leaf.o H5B2stat.o H5B2test.o H5C.o H5Cdbg.o H5Cepoch.o H5Cimage.o H5Clog.o H5Cprefetched.o H5Cquery.o H5Ctag.o H5Ctest.o H5CS.o H5D.o H5Dbtree.o H5Dbtree2.o H5Dchunk.o H5Dcompact.o H5Dcontig.o H5Ddbg.o H5Ddeprec.o H5Dearray.o H5Defl.o H5Dfarray.o H5Dfill.o H5Dint.o H5Dio.o H5Dlayout.o H5Dnone.o H5Doh.o H5Dscatgath.o H5Dselect.o H5Dsingle.o H5Dtest.o H5Dvirtual.o H5E.o H5Edeprec.o H5Eint.o H5EA.o H5EAcache.o H5EAdbg.o H5EAdblkpage.o H5EAdblock.o H5EAhdr.o H5EAiblock.o H5EAint.o H5EAsblock.o H5EAstat.o H5EAtest.o H5F.o H5Faccum.o H5Fcwfs.o H5Fdbg.o H5Fdeprec.o H5Fefc.o H5Ffake.o H5Fint.o H5Fio.o H5Fmount.o H5Fquery.o H5Fsfile.o H5Fspace.o H5Fsuper.o H5Fsuper_cache.o H5Ftest.o H5FA.o H5FAcache.o H5FAdbg.o H5FAdblock.o H5FAdblkpage.o H5FAhdr.o H5FAint.o H5FAstat.o H5FAtest.o H5FD.o H5FDcore.o H5FDfamily.o H5FDint.o H5FDlog.o H5FDmulti.o H5FDsec2.o H5FDspace.o H5FDstdio.o H5FDtest.o H5FL.o H5FO.o H5FS.o H5FScache.o H5FSdbg.o H5FSint.o H5FSsection.o H5FSstat.o H5FStest.o H5G.o H5Gbtree2.o H5Gcache.o H5Gcompact.o H5Gdense.o H5Gdeprec.o H5Gent.o H5Gint.o H5Glink.o H5Gloc.o H5Gname.o H5Gnode.o H5Gobj.o H5Goh.o H5Groot.o H5Gstab.o H5Gtest.o H5Gtraverse.o H5HF.o H5HFbtree2.o H5HFcache.o H5HFdbg.o H5HFdblock.o H5HFdtable.o H5HFhdr.o H5HFhuge.o H5HFiblock.o H5HFiter.o H5HFman.o H5HFsection.o H5HFspace.o H5HFstat.o H5HFtest.o H5HFtiny.o H5HG.o H5HGcache.o H5HGdbg.o H5HGquery.o H5HL.o H5HLcache.o H5HLdbg.o H5HLint.o H5HLprfx.o H5HLdblk.o H5HP.o H5I.o H5Itest.o H5L.o H5Lexternal.o H5MF.o H5MFaggr.o H5MFdbg.o H5MFsection.o H5MM.o H5MP.o H5MPtest.o H5O.o H5Oainfo.o H5Oalloc.o H5Oattr.o H5Oattribute.o H5Obogus.o H5Obtreek.o H5Ocache.o H5Ocache_image.o H5Ochunk.o H5Ocont.o H5Ocopy.o H5Odbg.o H5Odrvinfo.o H5Odtype.o H5Oefl.o H5Ofill.o H5Oflush.o H5Ofsinfo.o H5Oginfo.o H5Olayout.o H5Olinfo.o H5Olink.o H5Omessage.o H5Omtime.o H5Oname.o H5Onull.o H5Opline.o H5Orefcount.o H5Osdspace.o H5Oshared.o H5Oshmesg.o H5Ostab.o H5Otest.o H5Ounknown.o H5P.o H5Pacpl.o H5Pdapl.o H5Pdcpl.o H5Pdeprec.o H5Pdxpl.o H5Pencdec.o H5Pfapl.o H5Pfcpl.o H5Pfmpl.o H5Pgcpl.o H5Pint.o H5Plapl.o H5Plcpl.o H5Pocpl.o H5Pocpypl.o H5Pstrcpl.o H5Ptest.o H5PB.o H5PL.o H5R.o H5Rdeprec.o H5UC.o H5RS.o H5S.o H5Sall.o H5Sdbg.o H5Shyper.o H5Snone.o H5Spoint.o H5Sselect.o H5Stest.o H5SL.o H5SM.o H5SMbtree2.o H5SMcache.o H5SMmessage.o H5SMtest.o H5ST.o H5T.o H5Tarray.o H5Tbit.o H5Tcommit.o H5Tcompound.o H5Tconv.o H5Tcset.o H5Tdbg.o H5Tdeprec.o H5Tenum.o H5Tfields.o H5Tfixed.o H5Tfloat.o H5Tnative.o H5Toffset.o H5Toh.o H5Topaque.o H5Torder.o H5Tpad.o H5Tprecis.o H5Tstrpad.o H5Tvisit.o H5Tvlen.o H5TS.o H5VM.o H5WB.o H5Z.o H5Zdeflate.o H5Zfletcher32.o H5Znbit.o H5Zscaleoffset.o H5Zshuffle.o H5Zszip.o H5Ztrans.o H5Tinit.o H5lib_settings.o blosc_filter.o jpeg_h5filter.o -lszip -lzlib -lblosc -ljpeg -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsxform.d -MT cmsxform.obj ../cmsxform.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +g++ -o H5detect -Wl,-Bstatic -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 H5detect.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +mkdir ../../../bin/linux-x86_64 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmswtpnt.d -MT cmswtpnt.obj ../cmswtpnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsvirt.d -MT cmsvirt.obj ../cmsvirt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5detect.d -MT H5detect.obj ../H5detect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d -MT jpeg_h5filter.obj ../jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d -MT blosc_filter.obj ../blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5lib_settings.d -MT H5lib_settings.obj ../H5lib_settings.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmstypes.d -MT cmstypes.obj ../cmstypes.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssm.d -MT cmssm.obj ../cmssm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tinit.d -MT H5Tinit.obj ../os/WIN32/H5Tinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssamp.d -MT cmssamp.obj ../cmssamp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ztrans.d -MT H5Ztrans.obj ../H5Ztrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsps2.d -MT cmsps2.obj ../cmsps2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zszip.d -MT H5Zszip.obj ../H5Zszip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsplugin.d -MT cmsplugin.obj ../cmsplugin.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zshuffle.d -MT H5Zshuffle.obj ../H5Zshuffle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspcs.d -MT cmspcs.obj ../cmspcs.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zscaleoffset.d -MT H5Zscaleoffset.obj ../H5Zscaleoffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspack.d -MT cmspack.obj ../cmspack.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Znbit.d -MT H5Znbit.obj ../H5Znbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsopt.d -MT cmsopt.obj ../cmsopt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zfletcher32.d -MT H5Zfletcher32.obj ../H5Zfletcher32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsnamed.d -MT cmsnamed.obj ../cmsnamed.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zdeflate.d -MT H5Zdeflate.obj ../H5Zdeflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmtrx.d -MT cmsmtrx.obj ../cmsmtrx.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Z.d -MT H5Z.obj ../H5Z.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmd5.d -MT cmsmd5.obj ../cmsmd5.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmslut.d -MT cmslut.obj ../cmslut.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5WB.d -MT H5WB.obj ../H5WB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio1.d -MT cmsio1.obj ../cmsio1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5VM.d -MT H5VM.obj ../H5VM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio0.d -MT cmsio0.obj ../cmsio0.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5TS.d -MT H5TS.obj ../H5TS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsintrp.d -MT cmsintrp.obj ../cmsintrp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvlen.d -MT H5Tvlen.obj ../H5Tvlen.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmshalf.d -MT cmshalf.obj ../cmshalf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvisit.d -MT H5Tvisit.obj ../H5Tvisit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgmt.d -MT cmsgmt.obj ../cmsgmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tstrpad.d -MT H5Tstrpad.obj ../H5Tstrpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgamma.d -MT cmsgamma.obj ../cmsgamma.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tprecis.d -MT H5Tprecis.obj ../H5Tprecis.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmserr.d -MT cmserr.obj ../cmserr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tpad.d -MT H5Tpad.obj ../H5Tpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscnvrt.d -MT cmscnvrt.obj ../cmscnvrt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Torder.d -MT H5Torder.obj ../H5Torder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscgats.d -MT cmscgats.obj ../cmscgats.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Topaque.d -MT H5Topaque.obj ../H5Topaque.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscam02.d -MT cmscam02.obj ../cmscam02.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toh.d -MT H5Toh.obj ../H5Toh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsalpha.d -MT cmsalpha.obj ../cmsalpha.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toffset.d -MT H5Toffset.obj ../H5Toffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tnative.d -MT H5Tnative.obj ../H5Tnative.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfloat.d -MT H5Tfloat.obj ../H5Tfloat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfixed.d -MT H5Tfixed.obj ../H5Tfixed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfields.d -MT H5Tfields.obj ../H5Tfields.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsalpha.obj -c ../cmsalpha.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tenum.d -MT H5Tenum.obj ../H5Tenum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdeprec.d -MT H5Tdeprec.obj ../H5Tdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdbg.d -MT H5Tdbg.obj ../H5Tdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcset.d -MT H5Tcset.obj ../H5Tcset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tconv.d -MT H5Tconv.obj ../H5Tconv.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmscam02.obj -c ../cmscam02.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcompound.d -MT H5Tcompound.obj ../H5Tcompound.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcommit.d -MT H5Tcommit.obj ../H5Tcommit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tbit.d -MT H5Tbit.obj ../H5Tbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tarray.d -MT H5Tarray.obj ../H5Tarray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5T.d -MT H5T.obj ../H5T.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ST.d -MT H5ST.obj ../H5ST.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMtest.d -MT H5SMtest.obj ../H5SMtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMmessage.d -MT H5SMmessage.obj ../H5SMmessage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMcache.d -MT H5SMcache.obj ../H5SMcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMbtree2.d -MT H5SMbtree2.obj ../H5SMbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmscgats.obj -c ../cmscgats.c +../cmscgats.c: In function ‘ReadReal’: +../cmscgats.c:577:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 577 | else + | ^~~~ +../cmscgats.c:584:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 584 | e = 0; + | ^ +../cmscgats.c: In function ‘ParseFloatNumber’: +../cmscgats.c:654:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 654 | else + | ^~~~ +../cmscgats.c:661:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 661 | e = 0; + | ^ +../cmscgats.c: In function ‘GetVal’: +../cmscgats.c:986:19: warning: ‘strncpy’ output may be truncated copying between 255 and 1023 bytes from a string of length 1023 [-Wstringop-truncation] + 986 | case SSTRING: strncpy(Buffer, it8->str, max); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘AddToList’ at ../cmscgats.c:1184:22: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘AddToList’ at ../cmscgats.c:1185:47: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘AddToList’ at ../cmscgats.c:1215:22: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘AddToList.constprop’ at ../cmscgats.c:1184:22: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList.constprop’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘AddToList.constprop’ at ../cmscgats.c:1215:22: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList.constprop’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘SetData’ at ../cmscgats.c:1545:47: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘SetData’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In function ‘isabsolutepath’, + inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:419:9, + inlined from ‘InSymbol’ at ../cmscgats.c:920:21: +../cmscgats.c:396:5: warning: ‘strncpy’ output may be truncated copying 3 bytes from a string of length 1023 [-Wstringop-truncation] + 396 | strncpy(ThreeChars, path, 3); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘BuildAbsolutePath’, + inlined from ‘InSymbol’ at ../cmscgats.c:920:21: +../cmscgats.c:421:9: warning: ‘strncpy’ output may be truncated copying 255 bytes from a string of length 1023 [-Wstringop-truncation] + 421 | strncpy(buffer, relPath, MaxLen); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c:427:5: warning: ‘strncpy’ output may be truncated copying 255 bytes from a string of length 255 [-Wstringop-truncation] + 427 | strncpy(buffer, basePath, MaxLen); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c:437:5: warning: ‘strncpy’ output may be truncated copying between 1 and 255 bytes from a string of length 1023 [-Wstringop-truncation] + 437 | strncpy(tail + 1, relPath, MaxLen - len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘cmsIT8SetSheetType’, + inlined from ‘ParseIT8’ at ../cmscgats.c:2100:41: +../cmscgats.c:1335:9: warning: ‘strncpy’ output may be truncated copying 1023 bytes from a string of length 1023 [-Wstringop-truncation] + 1335 | strncpy(t ->SheetType, Type, MAXSTR-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, + inlined from ‘DataFormatSection’ at ../cmscgats.c:1841:18, + inlined from ‘ParseIT8’ at ../cmscgats.c:2061:26: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘ParseIT8’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, + inlined from ‘cmsIT8SetDataFormat’ at ../cmscgats.c:1490:16: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘cmsIT8SetDataFormat’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘SetData’ at ../cmscgats.c:1545:47, + inlined from ‘cmsIT8SetDataRowCol’ at ../cmscgats.c:2569:12: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘cmsIT8SetDataRowCol’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In function ‘AllocString’, + inlined from ‘SetData’ at ../cmscgats.c:1545:47, + inlined from ‘cmsIT8SetDataRowColDbl’ at ../cmscgats.c:2582:12: +../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1111 | if (ptr) strncpy (ptr, str, Size-1); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘cmsIT8SetDataRowColDbl’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SM.d -MT H5SM.obj ../H5SM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SL.d -MT H5SL.obj ../H5SL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Stest.d -MT H5Stest.obj ../H5Stest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sselect.d -MT H5Sselect.obj ../H5Sselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Spoint.d -MT H5Spoint.obj ../H5Spoint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmscnvrt.obj -c ../cmscnvrt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Snone.d -MT H5Snone.obj ../H5Snone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Shyper.d -MT H5Shyper.obj ../H5Shyper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sdbg.d -MT H5Sdbg.obj ../H5Sdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sall.d -MT H5Sall.obj ../H5Sall.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5S.d -MT H5S.obj ../H5S.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmserr.obj -c ../cmserr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5RS.d -MT H5RS.obj ../H5RS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5UC.d -MT H5UC.obj ../H5UC.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Rdeprec.d -MT H5Rdeprec.obj ../H5Rdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5R.d -MT H5R.obj ../H5R.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PL.d -MT H5PL.obj ../H5PL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PB.d -MT H5PB.obj ../H5PB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ptest.d -MT H5Ptest.obj ../H5Ptest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsgamma.obj -c ../cmsgamma.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pstrcpl.d -MT H5Pstrcpl.obj ../H5Pstrcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpypl.d -MT H5Pocpypl.obj ../H5Pocpypl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpl.d -MT H5Pocpl.obj ../H5Pocpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plcpl.d -MT H5Plcpl.obj ../H5Plcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsgmt.obj -c ../cmsgmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plapl.d -MT H5Plapl.obj ../H5Plapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pint.d -MT H5Pint.obj ../H5Pint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pgcpl.d -MT H5Pgcpl.obj ../H5Pgcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmshalf.obj -c ../cmshalf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfmpl.d -MT H5Pfmpl.obj ../H5Pfmpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfcpl.d -MT H5Pfcpl.obj ../H5Pfcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfapl.d -MT H5Pfapl.obj ../H5Pfapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pencdec.d -MT H5Pencdec.obj ../H5Pencdec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdxpl.d -MT H5Pdxpl.obj ../H5Pdxpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdeprec.d -MT H5Pdeprec.obj ../H5Pdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdcpl.d -MT H5Pdcpl.obj ../H5Pdcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdapl.d -MT H5Pdapl.obj ../H5Pdapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pacpl.d -MT H5Pacpl.obj ../H5Pacpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5P.d -MT H5P.obj ../H5P.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ounknown.d -MT H5Ounknown.obj ../H5Ounknown.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Otest.d -MT H5Otest.obj ../H5Otest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsintrp.obj -c ../cmsintrp.c +../cmsintrp.c: In function ‘Eval4Inputs’: +../cmsintrp.c:918:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 918 | else + | ^~~~ +../cmsintrp.c:930:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 930 | Rest = c1 * rx + c2 * ry + c3 * rz; + | ^~~~ +../cmsintrp.c:982:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 982 | else + | ^~~~ +../cmsintrp.c:994:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 994 | Rest = c1 * rx + c2 * ry + c3 * rz; + | ^~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ostab.d -MT H5Ostab.obj ../H5Ostab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshmesg.d -MT H5Oshmesg.obj ../H5Oshmesg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshared.d -MT H5Oshared.obj ../H5Oshared.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Osdspace.d -MT H5Osdspace.obj ../H5Osdspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Orefcount.d -MT H5Orefcount.obj ../H5Orefcount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Opline.d -MT H5Opline.obj ../H5Opline.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Onull.d -MT H5Onull.obj ../H5Onull.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsio0.obj -c ../cmsio0.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oname.d -MT H5Oname.obj ../H5Oname.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omtime.d -MT H5Omtime.obj ../H5Omtime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omessage.d -MT H5Omessage.obj ../H5Omessage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olink.d -MT H5Olink.obj ../H5Olink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olinfo.d -MT H5Olinfo.obj ../H5Olinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsio1.obj -c ../cmsio1.c +../cmsio1.c: In function ‘_cmsReadFloatDevicelinkTag’: +../cmsio1.c:681:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 681 | else + | ^~~~ +../cmsio1.c:688:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 688 | if (PCS == cmsSigLabData) + | ^~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olayout.d -MT H5Olayout.obj ../H5Olayout.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oginfo.d -MT H5Oginfo.obj ../H5Oginfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofsinfo.d -MT H5Ofsinfo.obj ../H5Ofsinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oflush.d -MT H5Oflush.obj ../H5Oflush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofill.d -MT H5Ofill.obj ../H5Ofill.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oefl.d -MT H5Oefl.obj ../H5Oefl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odtype.d -MT H5Odtype.obj ../H5Odtype.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odrvinfo.d -MT H5Odrvinfo.obj ../H5Odrvinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odbg.d -MT H5Odbg.obj ../H5Odbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmslut.obj -c ../cmslut.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocopy.d -MT H5Ocopy.obj ../H5Ocopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocont.d -MT H5Ocont.obj ../H5Ocont.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ochunk.d -MT H5Ochunk.obj ../H5Ochunk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache_image.d -MT H5Ocache_image.obj ../H5Ocache_image.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsmd5.obj -c ../cmsmd5.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache.d -MT H5Ocache.obj ../H5Ocache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obtreek.d -MT H5Obtreek.obj ../H5Obtreek.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obogus.d -MT H5Obogus.obj ../H5Obogus.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattribute.d -MT H5Oattribute.obj ../H5Oattribute.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsmtrx.obj -c ../cmsmtrx.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattr.d -MT H5Oattr.obj ../H5Oattr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oalloc.d -MT H5Oalloc.obj ../H5Oalloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oainfo.d -MT H5Oainfo.obj ../H5Oainfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5O.d -MT H5O.obj ../H5O.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MPtest.d -MT H5MPtest.obj ../H5MPtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MP.d -MT H5MP.obj ../H5MP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsnamed.obj -c ../cmsnamed.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MM.d -MT H5MM.obj ../H5MM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFsection.d -MT H5MFsection.obj ../H5MFsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFdbg.d -MT H5MFdbg.obj ../H5MFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFaggr.d -MT H5MFaggr.obj ../H5MFaggr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MF.d -MT H5MF.obj ../H5MF.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Lexternal.d -MT H5Lexternal.obj ../H5Lexternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5L.d -MT H5L.obj ../H5L.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Itest.d -MT H5Itest.obj ../H5Itest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5I.d -MT H5I.obj ../H5I.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsopt.obj -c ../cmsopt.c +../cmsopt.c: In function ‘PatchLUT’: +../cmsopt.c:510:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 510 | else + | ^~~~ +../cmsopt.c:526:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 526 | for (i=0; i < nChannelsOut; i++) + | ^~~ +../cmsopt.c: In function ‘PrelinEval8’: +../cmsopt.c:978:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 978 | else + | ^~~~ +../cmsopt.c:990:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 990 | Rest = c1 * rx + c2 * ry + c3 * rz + 0x8001; + | ^~~~ +../cmsopt.c: In function ‘OptimizeByComputingLinearization’: +../cmsopt.c:1030:26: warning: variable ‘lIsLinear’ set but not used [-Wunused-but-set-variable] + 1030 | cmsBool lIsSuitable, lIsLinear; + | ^~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HP.d -MT H5HP.obj ../H5HP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdblk.d -MT H5HLdblk.obj ../H5HLdblk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLprfx.d -MT H5HLprfx.obj ../H5HLprfx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLint.d -MT H5HLint.obj ../H5HLint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdbg.d -MT H5HLdbg.obj ../H5HLdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLcache.d -MT H5HLcache.obj ../H5HLcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HL.d -MT H5HL.obj ../H5HL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGquery.d -MT H5HGquery.obj ../H5HGquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGdbg.d -MT H5HGdbg.obj ../H5HGdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGcache.d -MT H5HGcache.obj ../H5HGcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HG.d -MT H5HG.obj ../H5HG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtiny.d -MT H5HFtiny.obj ../H5HFtiny.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtest.d -MT H5HFtest.obj ../H5HFtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFstat.d -MT H5HFstat.obj ../H5HFstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFspace.d -MT H5HFspace.obj ../H5HFspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFsection.d -MT H5HFsection.obj ../H5HFsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFman.d -MT H5HFman.obj ../H5HFman.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiter.d -MT H5HFiter.obj ../H5HFiter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiblock.d -MT H5HFiblock.obj ../H5HFiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhuge.d -MT H5HFhuge.obj ../H5HFhuge.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhdr.d -MT H5HFhdr.obj ../H5HFhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdtable.d -MT H5HFdtable.obj ../H5HFdtable.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdblock.d -MT H5HFdblock.obj ../H5HFdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdbg.d -MT H5HFdbg.obj ../H5HFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFcache.d -MT H5HFcache.obj ../H5HFcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFbtree2.d -MT H5HFbtree2.obj ../H5HFbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HF.d -MT H5HF.obj ../H5HF.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmspack.obj -c ../cmspack.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtraverse.d -MT H5Gtraverse.obj ../H5Gtraverse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtest.d -MT H5Gtest.obj ../H5Gtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gstab.d -MT H5Gstab.obj ../H5Gstab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Groot.d -MT H5Groot.obj ../H5Groot.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Goh.d -MT H5Goh.obj ../H5Goh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gobj.d -MT H5Gobj.obj ../H5Gobj.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmspcs.obj -c ../cmspcs.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gnode.d -MT H5Gnode.obj ../H5Gnode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gname.d -MT H5Gname.obj ../H5Gname.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gloc.d -MT H5Gloc.obj ../H5Gloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Glink.d -MT H5Glink.obj ../H5Glink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gint.d -MT H5Gint.obj ../H5Gint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsplugin.obj -c ../cmsplugin.c +../cmsplugin.c: In function ‘_cmsReadFloat32Number’: +../cmsplugin.c:181:15: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] + 181 | *n = *(cmsFloat32Number*) (void*) &tmp; + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmsplugin.c: In function ‘_cmsWriteFloat32Number’: +../cmsplugin.c:292:12: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] + 292 | tmp = *(cmsUInt32Number*) (void*) &n; + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gent.d -MT H5Gent.obj ../H5Gent.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdeprec.d -MT H5Gdeprec.obj ../H5Gdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdense.d -MT H5Gdense.obj ../H5Gdense.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcompact.d -MT H5Gcompact.obj ../H5Gcompact.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcache.d -MT H5Gcache.obj ../H5Gcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsps2.obj -c ../cmsps2.c +../cmsps2.c: In function ‘WriteInputMatrixShaper’: +../cmsps2.c:964:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 964 | else + | ^~~~ +../cmsps2.c:986:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 986 | return rc; + | ^~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gbtree2.d -MT H5Gbtree2.obj ../H5Gbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5G.d -MT H5G.obj ../H5G.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FStest.d -MT H5FStest.obj ../H5FStest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSstat.d -MT H5FSstat.obj ../H5FSstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmssamp.obj -c ../cmssamp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSsection.d -MT H5FSsection.obj ../H5FSsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSint.d -MT H5FSint.obj ../H5FSint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSdbg.d -MT H5FSdbg.obj ../H5FSdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FScache.d -MT H5FScache.obj ../H5FScache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FS.d -MT H5FS.obj ../H5FS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FO.d -MT H5FO.obj ../H5FO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmssm.obj -c ../cmssm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FL.d -MT H5FL.obj ../H5FL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDtest.d -MT H5FDtest.obj ../H5FDtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDstdio.d -MT H5FDstdio.obj ../H5FDstdio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDspace.d -MT H5FDspace.obj ../H5FDspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDsec2.d -MT H5FDsec2.obj ../H5FDsec2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDmulti.d -MT H5FDmulti.obj ../H5FDmulti.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDlog.d -MT H5FDlog.obj ../H5FDlog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDint.d -MT H5FDint.obj ../H5FDint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDfamily.d -MT H5FDfamily.obj ../H5FDfamily.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDcore.d -MT H5FDcore.obj ../H5FDcore.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FD.d -MT H5FD.obj ../H5FD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAtest.d -MT H5FAtest.obj ../H5FAtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAstat.d -MT H5FAstat.obj ../H5FAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAint.d -MT H5FAint.obj ../H5FAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAhdr.d -MT H5FAhdr.obj ../H5FAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblkpage.d -MT H5FAdblkpage.obj ../H5FAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmstypes.obj -c ../cmstypes.c +../cmstypes.c: In function ‘ReadCLUT’: +../cmstypes.c:2360:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 2360 | else + | ^~~~ +../cmstypes.c:2374:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 2374 | return CLUT; + | ^~~~~~ +../cmstypes.c: In function ‘WriteCLUT’: +../cmstypes.c:2645:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 2645 | else + | ^~~~ +../cmstypes.c:2655:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 2655 | if (!_cmsWriteAlignment(io)) return FALSE; + | ^~ +../cmstypes.c: In function ‘Type_NamedColor_Write’: +../cmstypes.c:3146:5: warning: ‘strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] + 3146 | strncpy(prefix, (const char*) NamedColorList->Prefix, 32); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmstypes.c:3147:5: warning: ‘strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] + 3147 | strncpy(suffix, (const char*) NamedColorList->Suffix, 32); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblock.d -MT H5FAdblock.obj ../H5FAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdbg.d -MT H5FAdbg.obj ../H5FAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAcache.d -MT H5FAcache.obj ../H5FAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FA.d -MT H5FA.obj ../H5FA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ftest.d -MT H5Ftest.obj ../H5Ftest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsvirt.obj -c ../cmsvirt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper_cache.d -MT H5Fsuper_cache.obj ../H5Fsuper_cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper.d -MT H5Fsuper.obj ../H5Fsuper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fspace.d -MT H5Fspace.obj ../H5Fspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsfile.d -MT H5Fsfile.obj ../H5Fsfile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmswtpnt.obj -c ../cmswtpnt.c +../cmswtpnt.c: In function ‘cmsWhitePointFromTemp’: +../cmswtpnt.c:66:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 66 | else + | ^~~~ +../cmswtpnt.c:80:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 80 | y = -3.000*(x*x) + 2.870*x - 0.275; + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fquery.d -MT H5Fquery.obj ../H5Fquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fmount.d -MT H5Fmount.obj ../H5Fmount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fio.d -MT H5Fio.obj ../H5Fio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fint.d -MT H5Fint.obj ../H5Fint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ffake.d -MT H5Ffake.obj ../H5Ffake.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fefc.d -MT H5Fefc.obj ../H5Fefc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsxform.obj -c ../cmsxform.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdeprec.d -MT H5Fdeprec.obj ../H5Fdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o lcms.dll -shared -Wl,--out-implib,liblcms.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ cmsalpha.obj cmscam02.obj cmscgats.obj cmscnvrt.obj cmserr.obj cmsgamma.obj cmsgmt.obj cmshalf.obj cmsintrp.obj cmsio0.obj cmsio1.obj cmslut.obj cmsmd5.obj cmsmtrx.obj cmsnamed.obj cmsopt.obj cmspack.obj cmspcs.obj cmsplugin.obj cmsps2.obj cmssamp.obj cmssm.obj cmstypes.obj cmsvirt.obj cmswtpnt.obj cmsxform.obj -lws2_32 +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' +make -C ./ttf install +make -C ./src install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdbg.d -MT H5Fdbg.obj ../H5Fdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' +mkdir -p O.Common +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fcwfs.d -MT H5Fcwfs.obj ../H5Fcwfs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cff.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bdf.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF winfnt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type42.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Faccum.d -MT H5Faccum.obj ../H5Faccum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1cid.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5F.d -MT H5F.obj ../H5F.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF truetype.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF smooth.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF sfnt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAtest.d -MT H5EAtest.obj ../H5EAtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF raster.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psmodule.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pshinter.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAstat.d -MT H5EAstat.obj ../H5EAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psaux.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pfr.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pcf.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlzw.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAsblock.d -MT H5EAsblock.obj ../H5EAsblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgzip.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftcache.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftwinfnt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAint.d -MT H5EAint.obj ../H5EAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fttype1.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsystem.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsynth.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftstroke.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAiblock.d -MT H5EAiblock.obj ../H5EAiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpfr.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpatent.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftotval.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftmm.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAhdr.d -MT H5EAhdr.obj ../H5EAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlcdfil.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftinit.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgxval.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftglyph.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblock.d -MT H5EAdblock.obj ../H5EAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgasp.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfstype.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfntfmt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbitmap.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblkpage.d -MT H5EAdblkpage.obj ../H5EAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbbox.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbase.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdbg.d -MT H5EAdbg.obj ../H5EAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAcache.d -MT H5EAcache.obj ../H5EAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EA.d -MT H5EA.obj ../H5EA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF autofit.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Eint.d -MT H5Eint.obj ../H5Eint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Edeprec.d -MT H5Edeprec.obj ../H5Edeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5E.d -MT H5E.obj ../H5E.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dvirtual.d -MT H5Dvirtual.obj ../H5Dvirtual.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dtest.d -MT H5Dtest.obj ../H5Dtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dsingle.d -MT H5Dsingle.obj ../H5Dsingle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dselect.d -MT H5Dselect.obj ../H5Dselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dscatgath.d -MT H5Dscatgath.obj ../H5Dscatgath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Doh.d -MT H5Doh.obj ../H5Doh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dnone.d -MT H5Dnone.obj ../H5Dnone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dlayout.d -MT H5Dlayout.obj ../H5Dlayout.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dio.d -MT H5Dio.obj ../H5Dio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dint.d -MT H5Dint.obj ../H5Dint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfill.d -MT H5Dfill.obj ../H5Dfill.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfarray.d -MT H5Dfarray.obj ../H5Dfarray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Defl.d -MT H5Defl.obj ../H5Defl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dearray.d -MT H5Dearray.obj ../H5Dearray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddeprec.d -MT H5Ddeprec.obj ../H5Ddeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddbg.d -MT H5Ddbg.obj ../H5Ddbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcontig.d -MT H5Dcontig.obj ../H5Dcontig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcompact.d -MT H5Dcompact.obj ../H5Dcompact.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dchunk.d -MT H5Dchunk.obj ../H5Dchunk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree2.d -MT H5Dbtree2.obj ../H5Dbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree.d -MT H5Dbtree.obj ../H5Dbtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5D.d -MT H5D.obj ../H5D.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5CS.d -MT H5CS.obj ../H5CS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctest.d -MT H5Ctest.obj ../H5Ctest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctag.d -MT H5Ctag.obj ../H5Ctag.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cquery.d -MT H5Cquery.obj ../H5Cquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cprefetched.d -MT H5Cprefetched.obj ../H5Cprefetched.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Clog.d -MT H5Clog.obj ../H5Clog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cimage.d -MT H5Cimage.obj ../H5Cimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cepoch.d -MT H5Cepoch.obj ../H5Cepoch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cdbg.d -MT H5Cdbg.obj ../H5Cdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5C.d -MT H5C.obj ../H5C.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2test.d -MT H5B2test.obj ../H5B2test.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2stat.d -MT H5B2stat.obj ../H5B2stat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2leaf.d -MT H5B2leaf.obj ../H5B2leaf.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2internal.d -MT H5B2internal.obj ../H5B2internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2int.d -MT H5B2int.obj ../H5B2int.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2hdr.d -MT H5B2hdr.obj ../H5B2hdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2dbg.d -MT H5B2dbg.obj ../H5B2dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2cache.d -MT H5B2cache.obj ../H5B2cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2.d -MT H5B2.obj ../H5B2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bdbg.d -MT H5Bdbg.obj ../H5Bdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bcache.d -MT H5Bcache.obj ../H5Bcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B.d -MT H5B.obj ../H5B.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACproxy_entry.d -MT H5ACproxy_entry.obj ../H5ACproxy_entry.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACdbg.d -MT H5ACdbg.obj ../H5ACdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AClog.d -MT H5AClog.obj ../H5AClog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AC.d -MT H5AC.obj ../H5AC.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Atest.d -MT H5Atest.obj ../H5Atest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Aint.d -MT H5Aint.obj ../H5Aint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adeprec.d -MT H5Adeprec.obj ../H5Adeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adense.d -MT H5Adense.obj ../H5Adense.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Abtree2.d -MT H5Abtree2.obj ../H5Abtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5A.d -MT H5A.obj ../H5A.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5trace.d -MT H5trace.obj ../H5trace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5timer.d -MT H5timer.obj ../H5timer.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5system.d -MT H5system.obj ../H5system.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5dbg.d -MT H5dbg.obj ../H5dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5checksum.d -MT H5checksum.obj ../H5checksum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5.d -MT H5.obj ../H5.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5.obj -c ../H5.c +In file included from ../H5.c:22: +../H5.c: In function ‘H5check_version’: +../H5private.h:1358:31: warning: ‘strncat’ specified bound 1 equals source length [-Wstringop-overflow=] + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5.c:831:6: note: in expansion of macro ‘HDstrncat’ + 831 | HDstrncat(lib_str, "-", (size_t)1); + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5checksum.obj -c ../H5checksum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5dbg.obj -c ../H5dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5system.obj -c ../H5system.c +../H5system.c:849: warning: ignoring #pragma comment [-Wunknown-pragmas] + 849 | #pragma comment(lib, "advapi32.lib") + | +../H5system.c: In function ‘Wgetlogin’: +../H5system.c:861:36: warning: pointer targets in passing argument 2 of ‘GetUserNameA’ differ in signedness [-Wpointer-sign] + 861 | if (GetUserName(Wlogin_buffer, &bufferCount) == 0) + | ^~~~~~~~~~~~ + | | + | long int * +In file included from /usr/share/mingw-w64/include/windows.h:70, + from /usr/share/mingw-w64/include/winsock2.h:23, + from ../H5private.h:179, + from ../H5system.c:33: +/usr/share/mingw-w64/include/winbase.h:2399:66: note: expected ‘LPDWORD’ {aka ‘long unsigned int *’} but argument is of type ‘long int *’ + 2399 | WINADVAPI WINBOOL WINAPI GetUserNameA (LPSTR lpBuffer, LPDWORD pcbBuffer); + | ~~~~~~~~^~~~~~~~~ +In file included from ../H5system.c:33: +../H5system.c: In function ‘H5_build_extpath’: +../H5private.h:1358:31: warning: ‘strncat’ specified bound 1 equals source length [-Wstringop-overflow=] + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5system.c:1115:17: note: in expansion of macro ‘HDstrncat’ + 1115 | HDstrncat(full_path, H5_DIR_SEPS, HDstrlen(H5_DIR_SEPS)); + | ^~~~~~~~~ +../H5private.h:1358:31: warning: ‘strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5system.c:1116:13: note: in expansion of macro ‘HDstrncat’ + 1116 | HDstrncat(full_path, new_name, HDstrlen(new_name)); + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5timer.obj -c ../H5timer.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5trace.obj -c ../H5trace.c +../H5trace.c: In function ‘H5_trace’: +../H5trace.c:250:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 250 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:264:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 264 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:283:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 283 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:299:56: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 299 | fprintf (out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:337:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 337 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:363:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 363 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:397:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 397 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:431:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 431 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:461:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 461 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:499:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 499 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:545:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 545 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:587:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 587 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:638:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 638 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:668:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 668 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:702:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 702 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:728:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 728 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:764:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 764 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:783:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 783 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:809:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 809 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:816:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 816 | fprintf(out, "0x%lx", (unsigned long)error); + | ^ +../H5trace.c:823:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 823 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:857:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 857 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:891:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 891 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:926:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 926 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:977:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 977 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1003:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1003 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1012:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1012 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1047:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1047 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1095:56: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1095 | fprintf (out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1102:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1102 | fprintf(out, "0x%lx", (unsigned long)statbuf); + | ^ +../H5trace.c:1116:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1116 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1150:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1150 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1180:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1180 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1368:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1368 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1402:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1402 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1440:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1440 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1464:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1464 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1546:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1546 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1578:56: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1578 | fprintf (out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1624:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1624 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1640:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1640 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1656:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1656 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1715:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1715 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1731:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1731 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1775:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1775 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1799:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1799 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1815:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1815 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1857:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1857 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1891:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1891 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1949:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1949 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:1997:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1997 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2013:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2013 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2060:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2060 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2090:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2090 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2120:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2120 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2154:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2154 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2196:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2196 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2234:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2234 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2268:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2268 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2338:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2338 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2394:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2394 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2415:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2415 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2439:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2439 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2455:45: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2455 | fprintf(out, "%llu", iull); + | ^ +../H5trace.c:2455:42: warning: too many arguments for format [-Wformat-extra-args] + 2455 | fprintf(out, "%llu", iull); + | ^~~~~~ +../H5trace.c:2455:45: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2455 | fprintf(out, "%llu", iull); + | ^ +../H5trace.c:2455:42: warning: too many arguments for format [-Wformat-extra-args] + 2455 | fprintf(out, "%llu", iull); + | ^~~~~~ +../H5trace.c:2469:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2469 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2476:78: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2476 | fprintf(out, "%s0x%lx", (i ? ", " : ""), (unsigned long)(p[i])); + | ^ +../H5trace.c:2490:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2490 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2499:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2499 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2525:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2525 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2555:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2555 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2562:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2562 | fprintf(out, "0x%lx", (unsigned long)filter); + | ^ +../H5trace.c:2569:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2569 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2588:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2588 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +../H5trace.c:2605:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 2605 | fprintf(out, "0x%lx", (unsigned long)vp); + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5A.obj -c ../H5A.c +In file included from ../H5A.c:25: +../H5A.c: In function ‘H5Aget_name_by_idx’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5A.c:937:9: note: in expansion of macro ‘HDstrncpy’ + 937 | HDstrncpy(name, attr->shared->name, MIN((size_t)(ret_value + 1), size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5A.c:933:26: note: in expansion of macro ‘HDstrlen’ + 933 | ret_value = (ssize_t)HDstrlen(attr->shared->name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Abtree2.obj -c ../H5Abtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Adense.obj -c ../H5Adense.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Adeprec.obj -c ../H5Adeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Aint.obj -c ../H5Aint.c +../H5Aint.c: In function ‘H5A_create’: +../H5Aint.c:200:45: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 200 | if(NULL == (attr->shared->dt = H5T_copy(type, H5T_COPY_ALL))) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Aprivate.h:25, + from ../H5Apkg.h:37, + from ../H5Aint.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Aint.c: In function ‘H5A__read’: +../H5Aint.c:532:71: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 532 | (dst_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0) + | ^~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Aprivate.h:25, + from ../H5Apkg.h:37, + from ../H5Aint.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Aint.c: In function ‘H5A__write’: +../H5Aint.c:632:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 632 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0 || + | ^~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Aprivate.h:25, + from ../H5Apkg.h:37, + from ../H5Aint.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Atest.obj -c ../H5Atest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5AC.obj -c ../H5AC.c +In file included from ../H5AC.c:39: +../H5AC.c: In function ‘H5AC__init_package’: +../H5private.h:1992:13: warning: unused variable ‘err_occurred’ [-Wunused-variable] + 1992 | hbool_t err_occurred = FALSE; \ + | ^~~~~~~~~~~~ +../H5private.h:2175:5: note: in expansion of macro ‘FUNC_ENTER_COMMON’ + 2175 | FUNC_ENTER_COMMON(H5_IS_PKG(FUNC)); \ + | ^~~~~~~~~~~~~~~~~ +../H5AC.c:201:5: note: in expansion of macro ‘FUNC_ENTER_PACKAGE’ + 201 | FUNC_ENTER_PACKAGE + | ^~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5AClog.obj -c ../H5AClog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5ACdbg.obj -c ../H5ACdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5ACproxy_entry.obj -c ../H5ACproxy_entry.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B.obj -c ../H5B.c +../H5B.c: In function ‘H5B_valid’: +../H5B.c:2038:26: warning: variable ‘shared’ set but not used [-Wunused-but-set-variable] + 2038 | H5B_shared_t *shared; /* Pointer to shared B-tree info */ + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Bcache.obj -c ../H5Bcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Bdbg.obj -c ../H5Bdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +/usr/bin/ar -rc libttf.a autofit.o ftbase.o ftbbox.o ftbitmap.o ftfntfmt.o ftfstype.o ftgasp.o ftglyph.o ftgxval.o ftinit.o ftlcdfil.o ftmm.o ftotval.o ftpatent.o ftpfr.o ftstroke.o ftsynth.o ftsystem.o fttype1.o ftwinfnt.o ftcache.o ftgzip.o ftlzw.o pcf.o pfr.o psaux.o pshinter.o psmodule.o raster.o sfnt.o smooth.o truetype.o type1.o type1cid.o type42.o winfnt.o bdf.o cff.o +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +/usr/bin/ranlib libttf.a +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +g++ -o libttf.so -shared -fPIC -Wl,-hlibttf.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 autofit.o ftbase.o ftbbox.o ftbitmap.o ftfntfmt.o ftfstype.o ftgasp.o ftglyph.o ftgxval.o ftinit.o ftlcdfil.o ftmm.o ftotval.o ftpatent.o ftpfr.o ftstroke.o ftsynth.o ftsystem.o fttype1.o ftwinfnt.o ftcache.o ftgzip.o ftlzw.o pcf.o pfr.o psaux.o pshinter.o psmodule.o raster.o sfnt.o smooth.o truetype.o type1.o type1cid.o type42.o winfnt.o bdf.o cff.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ + T_A=windows-x64-mingw install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cff.d -MT cff.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bdf.d -MT bdf.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2.obj -c ../H5B2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF winfnt.d -MT winfnt.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type42.d -MT type42.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1cid.d -MT type1cid.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1.d -MT type1.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF truetype.d -MT truetype.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF smooth.d -MT smooth.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF sfnt.d -MT sfnt.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF raster.d -MT raster.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psmodule.d -MT psmodule.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pshinter.d -MT pshinter.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psaux.d -MT psaux.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pfr.d -MT pfr.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pcf.d -MT pcf.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlzw.d -MT ftlzw.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgzip.d -MT ftgzip.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftcache.d -MT ftcache.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftwinfnt.d -MT ftwinfnt.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fttype1.d -MT fttype1.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsystem.d -MT ftsystem.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsynth.d -MT ftsynth.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftstroke.d -MT ftstroke.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2cache.obj -c ../H5B2cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpfr.d -MT ftpfr.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpatent.d -MT ftpatent.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftotval.d -MT ftotval.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftmm.d -MT ftmm.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlcdfil.d -MT ftlcdfil.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftinit.d -MT ftinit.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgxval.d -MT ftgxval.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftglyph.d -MT ftglyph.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgasp.d -MT ftgasp.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfstype.d -MT ftfstype.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfntfmt.d -MT ftfntfmt.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbitmap.d -MT ftbitmap.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbbox.d -MT ftbbox.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbase.d -MT ftbase.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2dbg.obj -c ../H5B2dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF autofit.d -MT autofit.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2hdr.obj -c ../H5B2hdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2int.obj -c ../H5B2int.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o autofit.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2internal.obj -c ../H5B2internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2leaf.obj -c ../H5B2leaf.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2stat.obj -c ../H5B2stat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2test.obj -c ../H5B2test.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftbase.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftbbox.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftbitmap.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftfntfmt.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftfstype.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftgasp.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftglyph.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftgxval.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftinit.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftlcdfil.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftmm.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftotval.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftpatent.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftpfr.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5C.obj -c ../H5C.c +../H5C.c: In function ‘H5C_flush_cache’: +../H5C.c:1057:14: warning: variable ‘ignore_protected’ set but not used [-Wunused-but-set-variable] + 1057 | hbool_t ignore_protected; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftstroke.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftsynth.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftsystem.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cdbg.obj -c ../H5Cdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o fttype1.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftwinfnt.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cepoch.obj -c ../H5Cepoch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftcache.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftgzip.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cimage.obj -c ../H5Cimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftlzw.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Clog.obj -c ../H5Clog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o pcf.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cprefetched.obj -c ../H5Cprefetched.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o pfr.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cquery.obj -c ../H5Cquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ctag.obj -c ../H5Ctag.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o psaux.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ctest.obj -c ../H5Ctest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5CS.obj -c ../H5CS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o pshinter.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o psmodule.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5D.obj -c ../H5D.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o raster.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dbtree.obj -c ../H5Dbtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dbtree2.obj -c ../H5Dbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o sfnt.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o smooth.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dchunk.obj -c ../H5Dchunk.c +../H5Dchunk.c: In function ‘H5D__chunk_direct_write’: +../H5Dchunk.c:393:13: warning: unused variable ‘md_dxpl_generated’ [-Wunused-variable] + 393 | hbool_t md_dxpl_generated = FALSE; /* bool to indicate whether we should free the md_dxpl_id at exit */ + | ^~~~~~~~~~~~~~~~~ +../H5Dchunk.c: In function ‘H5D__chunk_init’: +../H5Dchunk.c:724:26: warning: unused variable ‘sc’ [-Wunused-variable] + 724 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_is_space_alloc’: +../H5Dchunk.c:816:32: warning: unused variable ‘sc’ [-Wunused-variable] + 816 | const H5O_storage_chunk_t *sc = &(storage->u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_dest’: +../H5Dchunk.c:2371:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2371 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_create’: +../H5Dchunk.c:2582:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2582 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_lookup’: +../H5Dchunk.c:2683:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2683 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_flush_entry’: +../H5Dchunk.c:2806:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2806 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_allocated’: +../H5Dchunk.c:3716:26: warning: unused variable ‘sc’ [-Wunused-variable] + 3716 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_allocate’: +../H5Dchunk.c:3809:32: warning: unused variable ‘sc’ [-Wunused-variable] + 3809 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_update_old_edge_chunks’: +../H5Dchunk.c:4242:32: warning: unused variable ‘sc’ [-Wunused-variable] + 4242 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c:4229:24: warning: unused variable ‘pline’ [-Wunused-variable] + 4229 | const H5O_pline_t *pline = &(dset->shared->dcpl_cache.pline); /* I/O pipeline info */ + | ^~~~~ +../H5Dchunk.c: In function ‘H5D__chunk_prune_by_extent’: +../H5Dchunk.c:4797:32: warning: unused variable ‘sc’ [-Wunused-variable] + 4797 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_delete’: +../H5Dchunk.c:5203:26: warning: unused variable ‘sc’ [-Wunused-variable] + 5203 | H5O_storage_chunk_t *sc = &(storage->u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_copy_cb’: +../H5Dchunk.c:5550:111: warning: passing argument 5 of ‘H5D__chunk_file_alloc’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 5550 | if(H5D__chunk_file_alloc(udata->idx_info_dst, NULL, &udata_dst.chunk_block, &need_insert, udata_dst.common.scaled) < 0) + | ~~~~~~~~~~~~~~~~^~~~~~~ +../H5Dchunk.c:300:13: note: expected ‘hsize_t *’ {aka ‘long long unsigned int *’} but argument is of type ‘const hsize_t *’ {aka ‘const long long unsigned int *’} + 300 | hsize_t scaled[]); + | ~~~~~~~~^~~~~~~~ +../H5Dchunk.c: In function ‘H5D__chunk_copy’: +../H5Dchunk.c:5689:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 5689 | if(NULL == (dt_mem = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) + | ^~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dchunk.c:55: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dchunk.c:5697:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 5697 | if(NULL == (dt_dst = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) + | ^~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dchunk.c:55: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dchunk.c: In function ‘H5D__chunk_bh_info’: +../H5Dchunk.c:5856:26: warning: unused variable ‘sc’ [-Wunused-variable] + 5856 | H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_dump_index’: +../H5Dchunk.c:5979:26: warning: unused variable ‘sc’ [-Wunused-variable] + 5979 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dcompact.obj -c ../H5Dcompact.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dcontig.obj -c ../H5Dcontig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o truetype.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c:25: +../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/ttgload.c: In function ‘load_truetype_glyph’: +../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/ttgload.c:1662:26: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 1662 | (void*)(unsigned long)glyph_index ) ) + | ^ +../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/ttgload.c:1676:22: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] + 1676 | node->data = (void*)(unsigned long)glyph_index; + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ddbg.obj -c ../H5Ddbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ddeprec.obj -c ../H5Ddeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o type1.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o type1cid.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dearray.obj -c ../H5Dearray.c +../H5Dearray.c: In function ‘H5D__earray_debug’: +../H5Dearray.c:446:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 446 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5Dearray.c:446:23: warning: too many arguments for format [-Wformat-extra-args] + 446 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +../H5Dearray.c:446:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 446 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5Dearray.c:446:23: warning: too many arguments for format [-Wformat-extra-args] + 446 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +../H5Dearray.c: In function ‘H5D__earray_filt_debug’: +../H5Dearray.c:605:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 605 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5Dearray.c:605:23: warning: too many arguments for format [-Wformat-extra-args] + 605 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +../H5Dearray.c:605:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 605 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5Dearray.c:605:23: warning: too many arguments for format [-Wformat-extra-args] + 605 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o type42.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o winfnt.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Defl.obj -c ../H5Defl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o bdf.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dfarray.obj -c ../H5Dfarray.c +../H5Dfarray.c: In function ‘H5D__farray_debug’: +../H5Dfarray.c:444:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 444 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5Dfarray.c:444:23: warning: too many arguments for format [-Wformat-extra-args] + 444 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +../H5Dfarray.c:444:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 444 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5Dfarray.c:444:23: warning: too many arguments for format [-Wformat-extra-args] + 444 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +../H5Dfarray.c: In function ‘H5D__farray_filt_debug’: +../H5Dfarray.c:710:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 710 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5Dfarray.c:710:23: warning: too many arguments for format [-Wformat-extra-args] + 710 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +../H5Dfarray.c:710:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 710 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5Dfarray.c:710:23: warning: too many arguments for format [-Wformat-extra-args] + 710 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dfill.obj -c ../H5Dfill.c +../H5Dfill.c: In function ‘H5D__fill’: +../H5Dfill.c:238:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 238 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(fill_type, H5T_COPY_ALL), FALSE)) < 0) + | ^~~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dfill.c:36: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dfill.c:241:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 241 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(buf_type, H5T_COPY_ALL), FALSE)) < 0) + | ^~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dfill.c:36: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dfill.c: In function ‘H5D__fill_init’: +../H5Dfill.c:413:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 413 | if(NULL == (fb_info->mem_type = H5T_copy(dset_type, H5T_COPY_REOPEN))) + | ^~~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dfill.c:36: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dint.obj -c ../H5Dint.c +../H5Dint.c: In function ‘H5D__init_type’: +../H5Dint.c:681:43: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 681 | if((dset->shared->type = H5T_copy(type, H5T_COPY_ALL)) == NULL) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dint.c:25: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dint.c: In function ‘H5D__mark’: +../H5Dint.c:3174:37: warning: passing argument 1 of ‘H5D__layout_oh_write’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 3174 | if(H5D__layout_oh_write(dataset, dxpl_id, oh, update_flags) < 0) + | ^~~~~~~ +In file included from ../H5Dint.c:25: +../H5Dpkg.h:638:43: note: expected ‘H5D_t *’ {aka ‘struct H5D_t *’} but argument is of type ‘const H5D_t *’ {aka ‘const struct H5D_t *’} + 638 | H5_DLL herr_t H5D__layout_oh_write(H5D_t *dataset, hid_t dxpl_id, H5O_t *oh, + | ~~~~~~~^~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o cff.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o ttf.dll -shared -Wl,--out-implib,libttf.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ autofit.obj ftbase.obj ftbbox.obj ftbitmap.obj ftfntfmt.obj ftfstype.obj ftgasp.obj ftglyph.obj ftgxval.obj ftinit.obj ftlcdfil.obj ftmm.obj ftotval.obj ftpatent.obj ftpfr.obj ftstroke.obj ftsynth.obj ftsystem.obj fttype1.obj ftwinfnt.obj ftcache.obj ftgzip.obj ftlzw.obj pcf.obj pfr.obj psaux.obj pshinter.obj psmodule.obj raster.obj sfnt.obj smooth.obj truetype.obj type1.obj type1cid.obj type42.obj winfnt.obj bdf.obj cff.obj -lws2_32 +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' +make -C ./wmf install +make -C ./src install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' +mkdir -p O.Common +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dio.obj -c ../H5Dio.c +In file included from ../H5Dio.c:24: +../H5Dio.c: In function ‘H5D__ioinfo_init’: +../H5private.h:1992:13: warning: unused variable ‘err_occurred’ [-Wunused-variable] + 1992 | hbool_t err_occurred = FALSE; \ + | ^~~~~~~~~~~~ +../H5private.h:2199:5: note: in expansion of macro ‘FUNC_ENTER_COMMON’ + 2199 | FUNC_ENTER_COMMON(H5_IS_PKG(FUNC)); \ + | ^~~~~~~~~~~~~~~~~ +../H5Dio.c:867:5: note: in expansion of macro ‘FUNC_ENTER_STATIC’ + 867 | FUNC_ENTER_STATIC + | ^~~~~~~~~~~~~~~~~ +../H5Dio.c:920:1: warning: label ‘done’ defined but not used [-Wunused-label] + 920 | done: + | ^~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF recorder.d ../recorder.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF player.d ../player.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF meta.d ../meta.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bbuf.d ../bbuf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF api.d ../api.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../api.c +In file included from ../api.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../bbuf.c +In file included from ../bbuf.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dlayout.obj -c ../H5Dlayout.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../meta.c +In file included from ../meta.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dnone.obj -c ../H5Dnone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Doh.obj -c ../H5Doh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dscatgath.obj -c ../H5Dscatgath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dselect.obj -c ../H5Dselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dsingle.obj -c ../H5Dsingle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dtest.obj -c ../H5Dtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../player.c +In file included from ../player.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +In file included from ../player.c:44: +../player/meta.h: In function ‘meta_dc_color’: +../player/meta.h:2386:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] + 2386 | { if (value = wmf_attr_query (API, attrlist, "color")) + | ^~~~~ +../player/meta.h: In function ‘meta_pen_create’: +../player/meta.h:3107:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] + 3107 | { if (value = wmf_attr_query (API, attrlist, "color")) + | ^~~~~ +../player/meta.h: In function ‘meta_brush_create’: +../player/meta.h:3209:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] + 3209 | { if (value = wmf_attr_query (API, attrlist, "color")) + | ^~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../recorder.c +In file included from ../recorder.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +../recorder.c: In function ‘wmf_canvas_line’: +../recorder.c:977:17: warning: unused variable ‘Size’ [-Wunused-variable] + 977 | unsigned long Size = 3 + 2; + | ^~~~ +../recorder.c: In function ‘s_update_header’: +../recorder.c:91:16: warning: ‘rbox.ptr’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 91 | *rbox->ptr++ = (unsigned char) ((ul >> 8) & 0xff); + | ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../recorder.c:98:16: note: ‘rbox.ptr’ was declared here + 98 | wmfRecordBox rbox; + | ^~~~ +../recorder.c:84:17: warning: ‘rbox.end’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 84 | if (rbox->end - rbox->ptr < 4) + | ~~~~~~~~~~^~~~~~~~~~~ +../recorder.c:98:16: note: ‘rbox.end’ was declared here + 98 | wmfRecordBox rbox; + | ^~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +/usr/bin/ar -rc libwmf.a api.o bbuf.o meta.o player.o recorder.o +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +/usr/bin/ranlib libwmf.a +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +g++ -o libwmf.so -shared -fPIC -Wl,-hlibwmf.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 api.o bbuf.o meta.o player.o recorder.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ + T_A=windows-x64-mingw install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF recorder.d -MT recorder.obj ../recorder.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF player.d -MT player.obj ../player.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF meta.d -MT meta.obj ../meta.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dvirtual.obj -c ../H5Dvirtual.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bbuf.d -MT bbuf.obj ../bbuf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF api.d -MT api.obj ../api.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o api.obj -c ../api.c +In file included from ../api.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, + from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, + from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, + from ../wmfdefs.h:24, + from ../api.c:29: +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] + 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] + 310 | # pragma warning( disable : 4018 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] + 311 | # pragma warning( disable : 4244 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] + 312 | # pragma warning( disable : 4142 ) + | +In file included from ../wmfdefs.h:25, + from ../api.c:29: +../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export + 34 | # pragma message( "WMF compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o bbuf.obj -c ../bbuf.c +In file included from ../bbuf.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, + from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, + from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, + from ../wmfdefs.h:24, + from ../bbuf.c:26: +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] + 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] + 310 | # pragma warning( disable : 4018 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] + 311 | # pragma warning( disable : 4244 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] + 312 | # pragma warning( disable : 4142 ) + | +In file included from ../wmfdefs.h:25, + from ../bbuf.c:26: +../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export + 34 | # pragma message( "WMF compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o meta.obj -c ../meta.c +In file included from ../meta.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, + from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, + from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, + from ../wmfdefs.h:24, + from ../meta.c:26: +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] + 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] + 310 | # pragma warning( disable : 4018 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] + 311 | # pragma warning( disable : 4244 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] + 312 | # pragma warning( disable : 4142 ) + | +In file included from ../wmfdefs.h:25, + from ../meta.c:26: +../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export + 34 | # pragma message( "WMF compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5E.obj -c ../H5E.c +In file included from ../H5E.c:52: +In function ‘H5E_get_class_name’, + inlined from ‘H5Eget_class_name’ at ../H5E.c:610:21: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5E.c:646:8: note: in expansion of macro ‘HDstrncpy’ + 646 | HDstrncpy(name, cls->cls_name, MIN((size_t)(len + 1), size)); + | ^~~~~~~~~ +../H5E.c: In function ‘H5Eget_class_name’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5E.c:642:20: note: in expansion of macro ‘HDstrlen’ + 642 | len = (ssize_t)HDstrlen(cls->cls_name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Edeprec.obj -c ../H5Edeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Eint.obj -c ../H5Eint.c +In file included from ../H5Eint.c:35: +../H5Eint.c: In function ‘H5E_get_msg’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Eint.c:143:8: note: in expansion of macro ‘HDstrncpy’ + 143 | HDstrncpy(msg_str, msg->msg, MIN((size_t)(len+1), size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Eint.c:139:20: note: in expansion of macro ‘HDstrlen’ + 139 | len = (ssize_t)HDstrlen(msg->msg); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EA.obj -c ../H5EA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o player.obj -c ../player.c +In file included from ../player.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, + from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, + from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, + from ../wmfdefs.h:24, + from ../player.c:33: +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] + 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] + 310 | # pragma warning( disable : 4018 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] + 311 | # pragma warning( disable : 4244 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] + 312 | # pragma warning( disable : 4142 ) + | +In file included from ../wmfdefs.h:25, + from ../player.c:33: +../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export + 34 | # pragma message( "WMF compiling as DLL export" ) + | ^~~~~~~ +In file included from ../player.c:44: +../player/meta.h: In function ‘meta_dc_color’: +../player/meta.h:2386:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] + 2386 | { if (value = wmf_attr_query (API, attrlist, "color")) + | ^~~~~ +../player/meta.h: In function ‘meta_pen_create’: +../player/meta.h:3107:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] + 3107 | { if (value = wmf_attr_query (API, attrlist, "color")) + | ^~~~~ +../player/meta.h: In function ‘meta_brush_create’: +../player/meta.h:3209:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] + 3209 | { if (value = wmf_attr_query (API, attrlist, "color")) + | ^~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAcache.obj -c ../H5EAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAdbg.obj -c ../H5EAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o recorder.obj -c ../recorder.c +In file included from ../recorder.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, + from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, + from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, + from ../wmfdefs.h:24, + from ../recorder.c:28: +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] + 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] + 310 | # pragma warning( disable : 4018 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] + 311 | # pragma warning( disable : 4244 ) + | +../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] + 312 | # pragma warning( disable : 4142 ) + | +In file included from ../wmfdefs.h:25, + from ../recorder.c:28: +../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export + 34 | # pragma message( "WMF compiling as DLL export" ) + | ^~~~~~~ +../recorder.c: In function ‘wmf_canvas_line’: +../recorder.c:977:17: warning: unused variable ‘Size’ [-Wunused-variable] + 977 | unsigned long Size = 3 + 2; + | ^~~~ +../recorder.c: In function ‘s_update_header’: +../recorder.c:91:16: warning: ‘rbox.ptr’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 91 | *rbox->ptr++ = (unsigned char) ((ul >> 8) & 0xff); + | ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../recorder.c:98:16: note: ‘rbox.ptr’ was declared here + 98 | wmfRecordBox rbox; + | ^~~~ +../recorder.c:84:17: warning: ‘rbox.end’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 84 | if (rbox->end - rbox->ptr < 4) + | ~~~~~~~~~~^~~~~~~~~~~ +../recorder.c:98:16: note: ‘rbox.end’ was declared here + 98 | wmfRecordBox rbox; + | ^~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o wmf.dll -shared -Wl,--out-implib,libwmf.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ api.obj bbuf.obj meta.obj player.obj recorder.obj -lws2_32 +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' +make -C ./webp install +make -C ./src install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' +mkdir -p O.Common +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF utils.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF thread.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerutils.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF random.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels_dec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman_encode.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersutils.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF color_cache.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAdblkpage.obj -c ../H5EAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_writer.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_reader.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxread.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxinternal.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxedit.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_encode.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webpenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF analysis.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphaenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF backward_references.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF delta_palettization.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF config.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filter.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF frameenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF histogram.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF iterator.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_tools.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_rescale.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_psnr.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_csp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF near_lossless.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF syntax.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF token.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treeenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8lenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAdblock.obj -c ../H5EAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_msa.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_clip_tables.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cpu.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costdsp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_avx2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersdsp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAhdr.obj -c ../H5EAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerdsp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF demux.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_decode.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8ldec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treedec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantdec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF io.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF idec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF framedec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF buffer.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAiblock.obj -c ../H5EAiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphadec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAint.obj -c ../H5EAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAsblock.obj -c ../H5EAsblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAstat.obj -c ../H5EAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAtest.obj -c ../H5EAtest.c +../H5EAtest.c: In function ‘H5EA__test_debug’: +../H5EAtest.c:339:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 339 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5EAtest.c:339:23: warning: too many arguments for format [-Wformat-extra-args] + 339 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +../H5EAtest.c:339:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 339 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5EAtest.c:339:23: warning: too many arguments for format [-Wformat-extra-args] + 339 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5F.obj -c ../H5F.c +In file included from ../H5F.c:24: +../H5F.c: In function ‘H5Fget_name’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5F.c:1311:9: note: in expansion of macro ‘HDstrncpy’ + 1311 | HDstrncpy(name, H5F_OPEN_NAME(f), MIN(len + 1,size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5F.c:1308:11: note: in expansion of macro ‘HDstrlen’ + 1308 | len = HDstrlen(H5F_OPEN_NAME(f)); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Faccum.obj -c ../H5Faccum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fcwfs.obj -c ../H5Fcwfs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fdbg.obj -c ../H5Fdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fdeprec.obj -c ../H5Fdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fefc.obj -c ../H5Fefc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ffake.obj -c ../H5Ffake.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fint.obj -c ../H5Fint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fio.obj -c ../H5Fio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fmount.obj -c ../H5Fmount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fquery.obj -c ../H5Fquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fsfile.obj -c ../H5Fsfile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fspace.obj -c ../H5Fspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fsuper.obj -c ../H5Fsuper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fsuper_cache.obj -c ../H5Fsuper_cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ftest.obj -c ../H5Ftest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FA.obj -c ../H5FA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAcache.obj -c ../H5FAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAdbg.obj -c ../H5FAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAdblock.obj -c ../H5FAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAdblkpage.obj -c ../H5FAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAhdr.obj -c ../H5FAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAint.obj -c ../H5FAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAstat.obj -c ../H5FAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAtest.obj -c ../H5FAtest.c +../H5FAtest.c: In function ‘H5FA__test_debug’: +../H5FAtest.c:322:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 322 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5FAtest.c:322:23: warning: too many arguments for format [-Wformat-extra-args] + 322 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +../H5FAtest.c:322:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 322 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^ +../H5FAtest.c:322:23: warning: too many arguments for format [-Wformat-extra-args] + 322 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FD.obj -c ../H5FD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDcore.obj -c ../H5FDcore.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDfamily.obj -c ../H5FDfamily.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDint.obj -c ../H5FDint.c +../H5FDint.c: In function ‘H5FD_read’: +../H5FDint.c:183:17: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 183 | io_dxpl = fdio_info->raw_dxpl; + | ^ +../H5FDint.c:185:17: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 185 | io_dxpl = fdio_info->meta_dxpl; + | ^ +../H5FDint.c: In function ‘H5FD_write’: +../H5FDint.c:269:17: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 269 | io_dxpl = fdio_info->raw_dxpl; + | ^ +../H5FDint.c:271:17: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 271 | io_dxpl = fdio_info->meta_dxpl; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDlog.obj -c ../H5FDlog.c +../H5FDlog.c: In function ‘H5FD_log_open’: +../H5FDlog.c:630:95: warning: ‘stat_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDlog.c:630:59: warning: ‘stat_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDlog.c:628:95: warning: ‘open_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDlog.c:628:59: warning: ‘open_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDmulti.obj -c ../H5FDmulti.c +../H5FDmulti.c: In function ‘H5FD_multi_sb_encode’: +../H5FDmulti.c:662:5: warning: ‘strncpy’ output truncated copying 8 bytes from a string of length 9 [-Wstringop-truncation] + 662 | strncpy(name, "NCSAmulti", (size_t)8); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDmulti.c:697:9: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 697 | strncpy((char *)p, file->fa.memb_name[mt], n); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDmulti.c:696:20: note: length computed here + 696 | size_t n = strlen(file->fa.memb_name[mt]) + 1; + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDsec2.obj -c ../H5FDsec2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDspace.obj -c ../H5FDspace.c +../H5FDspace.c: In function ‘H5FD_extend’: +../H5FDspace.c:104:13: warning: unused variable ‘extra’ [-Wunused-variable] + 104 | hsize_t extra; /* Extra space to allocate, to align request */ + | ^~~~~ +../H5FDspace.c:102:13: warning: unused variable ‘orig_size’ [-Wunused-variable] + 102 | hsize_t orig_size = size; /* Original allocation size */ + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDstdio.obj -c ../H5FDstdio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDtest.obj -c ../H5FDtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FL.obj -c ../H5FL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FO.obj -c ../H5FO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FS.obj -c ../H5FS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +/usr/bin/ar -rc libwebp.a alphadec.o buffer.o framedec.o idec.o io.o quantdec.o treedec.o vp8.o vp8ldec.o webp.o anim_decode.o demux.o rescalerdsp.o rescaler_mips32.o rescaler_mips_dsp_r2.o rescaler_neon.o rescaler_sse2.o lossless.o lossless_enc.o lossless_enc_mips32.o lossless_enc_mips_dsp_r2.o lossless_enc_neon.o lossless_enc_sse2.o lossless_enc_sse41.o lossless_mips_dsp_r2.o lossless_neon.o lossless_sse2.o filtersdsp.o filters_mips_dsp_r2.o filters_sse2.o enc.o enc_avx2.o enc_mips32.o enc_mips_dsp_r2.o enc_neon.o enc_sse2.o enc_sse41.o costdsp.o cost_mips32.o cost_mips_dsp_r2.o cost_sse2.o cpu.o dec.o dec_clip_tables.o dec_mips32.o dec_mips_dsp_r2.o dec_msa.o dec_neon.o dec_sse2.o dec_sse41.o argb.o argb_mips_dsp_r2.o argb_sse2.o alpha_processing.o alpha_processing_mips_dsp_r2.o alpha_processing_sse2.o alpha_processing_sse41.o upsampling.o upsampling_mips_dsp_r2.o upsampling_neon.o upsampling_sse2.o yuv.o yuv_mips32.o yuv_mips_dsp_r2.o yuv_sse2.o vp8lenc.o treeenc.o token.o syntax.o near_lossless.o picture.o picture_csp.o picture_psnr.o picture_rescale.o picture_tools.o quantenc.o iterator.o histogram.o frameenc.o filter.o config.o costenc.o delta_palettization.o backward_references.o alphaenc.o analysis.o webpenc.o anim_encode.o muxedit.o muxinternal.o muxread.o bit_reader.o bit_writer.o color_cache.o filtersutils.o huffman.o huffman_encode.o quant_levels.o quant_levels_dec.o random.o rescalerutils.o thread.o utils.o +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +/usr/bin/ranlib libwebp.a +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +g++ -o libwebp.so -shared -fPIC -Wl,-hlibwebp.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 alphadec.o buffer.o framedec.o idec.o io.o quantdec.o treedec.o vp8.o vp8ldec.o webp.o anim_decode.o demux.o rescalerdsp.o rescaler_mips32.o rescaler_mips_dsp_r2.o rescaler_neon.o rescaler_sse2.o lossless.o lossless_enc.o lossless_enc_mips32.o lossless_enc_mips_dsp_r2.o lossless_enc_neon.o lossless_enc_sse2.o lossless_enc_sse41.o lossless_mips_dsp_r2.o lossless_neon.o lossless_sse2.o filtersdsp.o filters_mips_dsp_r2.o filters_sse2.o enc.o enc_avx2.o enc_mips32.o enc_mips_dsp_r2.o enc_neon.o enc_sse2.o enc_sse41.o costdsp.o cost_mips32.o cost_mips_dsp_r2.o cost_sse2.o cpu.o dec.o dec_clip_tables.o dec_mips32.o dec_mips_dsp_r2.o dec_msa.o dec_neon.o dec_sse2.o dec_sse41.o argb.o argb_mips_dsp_r2.o argb_sse2.o alpha_processing.o alpha_processing_mips_dsp_r2.o alpha_processing_sse2.o alpha_processing_sse41.o upsampling.o upsampling_mips_dsp_r2.o upsampling_neon.o upsampling_sse2.o yuv.o yuv_mips32.o yuv_mips_dsp_r2.o yuv_sse2.o vp8lenc.o treeenc.o token.o syntax.o near_lossless.o picture.o picture_csp.o picture_psnr.o picture_rescale.o picture_tools.o quantenc.o iterator.o histogram.o frameenc.o filter.o config.o costenc.o delta_palettization.o backward_references.o alphaenc.o analysis.o webpenc.o anim_encode.o muxedit.o muxinternal.o muxread.o bit_reader.o bit_writer.o color_cache.o filtersutils.o huffman.o huffman_encode.o quant_levels.o quant_levels_dec.o random.o rescalerutils.o thread.o utils.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ + T_A=windows-x64-mingw install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF utils.d -MT utils.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF thread.d -MT thread.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerutils.d -MT rescalerutils.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF random.d -MT random.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels_dec.d -MT quant_levels_dec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels.d -MT quant_levels.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman_encode.d -MT huffman_encode.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman.d -MT huffman.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersutils.d -MT filtersutils.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF color_cache.d -MT color_cache.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_writer.d -MT bit_writer.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_reader.d -MT bit_reader.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxread.d -MT muxread.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxinternal.d -MT muxinternal.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxedit.d -MT muxedit.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_encode.d -MT anim_encode.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webpenc.d -MT webpenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF analysis.d -MT analysis.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphaenc.d -MT alphaenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF backward_references.d -MT backward_references.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF delta_palettization.d -MT delta_palettization.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costenc.d -MT costenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF config.d -MT config.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filter.d -MT filter.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF frameenc.d -MT frameenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF histogram.d -MT histogram.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF iterator.d -MT iterator.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantenc.d -MT quantenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_tools.d -MT picture_tools.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_rescale.d -MT picture_rescale.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_psnr.d -MT picture_psnr.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_csp.d -MT picture_csp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture.d -MT picture.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF near_lossless.d -MT near_lossless.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF syntax.d -MT syntax.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF token.d -MT token.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treeenc.d -MT treeenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8lenc.d -MT vp8lenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_sse2.d -MT yuv_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FScache.obj -c ../H5FScache.c +../H5FScache.c: In function ‘H5FS__cache_sinfo_deserialize’: +../H5FScache.c:1013:17: warning: variable ‘old_tot_space’ set but not used [-Wunused-but-set-variable] + 1013 | hsize_t old_tot_space; /* Total space managed from header */ + | ^~~~~~~~~~~~~ +../H5FScache.c:1012:17: warning: variable ‘old_ghost_sect_count’ set but not used [-Wunused-but-set-variable] + 1012 | hsize_t old_ghost_sect_count; /* Total ghost section count from header */ + | ^~~~~~~~~~~~~~~~~~~~ +../H5FScache.c:1011:17: warning: variable ‘old_serial_sect_count’ set but not used [-Wunused-but-set-variable] + 1011 | hsize_t old_serial_sect_count; /* Total serializable section count from header */ + | ^~~~~~~~~~~~~~~~~~~~~ +../H5FScache.c:1010:17: warning: variable ‘old_tot_sect_count’ set but not used [-Wunused-but-set-variable] + 1010 | hsize_t old_tot_sect_count; /* Total section count from header */ + | ^~~~~~~~~~~~~~~~~~ +../H5FScache.c: In function ‘H5FS__cache_sinfo_image_len’: +../H5FScache.c:1119:19: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] + 1119 | const H5FS_t *fspace; /* Free space header */ + | ^~~~~~ +../H5FScache.c: In function ‘H5FS__cache_sinfo_serialize’: +../H5FScache.c:1249:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] + 1249 | H5FS_t *fspace; /* Free space header */ + | ^~~~~~ +../H5FScache.c: In function ‘H5FS__cache_sinfo_free_icr’: +../H5FScache.c:1396:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] + 1396 | H5FS_t *fspace; /* Free space header */ + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips_dsp_r2.d -MT yuv_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips32.d -MT yuv_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv.d -MT yuv.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_sse2.d -MT upsampling_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_neon.d -MT upsampling_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_mips_dsp_r2.d -MT upsampling_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling.d -MT upsampling.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse41.d -MT alpha_processing_sse41.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse2.d -MT alpha_processing_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_mips_dsp_r2.d -MT alpha_processing_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing.d -MT alpha_processing.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_sse2.d -MT argb_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_mips_dsp_r2.d -MT argb_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb.d -MT argb.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse41.d -MT dec_sse41.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse2.d -MT dec_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_neon.d -MT dec_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_msa.d -MT dec_msa.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips_dsp_r2.d -MT dec_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips32.d -MT dec_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_clip_tables.d -MT dec_clip_tables.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec.d -MT dec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cpu.d -MT cpu.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_sse2.d -MT cost_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips_dsp_r2.d -MT cost_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips32.d -MT cost_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costdsp.d -MT costdsp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse41.d -MT enc_sse41.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse2.d -MT enc_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_neon.d -MT enc_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips_dsp_r2.d -MT enc_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips32.d -MT enc_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_avx2.d -MT enc_avx2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc.d -MT enc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_sse2.d -MT filters_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_mips_dsp_r2.d -MT filters_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersdsp.d -MT filtersdsp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FSdbg.obj -c ../H5FSdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_sse2.d -MT lossless_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_neon.d -MT lossless_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_mips_dsp_r2.d -MT lossless_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse41.d -MT lossless_enc_sse41.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse2.d -MT lossless_enc_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_neon.d -MT lossless_enc_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips_dsp_r2.d -MT lossless_enc_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips32.d -MT lossless_enc_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc.d -MT lossless_enc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless.d -MT lossless.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_sse2.d -MT rescaler_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_neon.d -MT rescaler_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips_dsp_r2.d -MT rescaler_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips32.d -MT rescaler_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerdsp.d -MT rescalerdsp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF demux.d -MT demux.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_decode.d -MT anim_decode.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webp.d -MT webp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8ldec.d -MT vp8ldec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8.d -MT vp8.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treedec.d -MT treedec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantdec.d -MT quantdec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF io.d -MT io.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF idec.d -MT idec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF framedec.d -MT framedec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF buffer.d -MT buffer.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FSint.obj -c ../H5FSint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphadec.d -MT alphadec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alphadec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/rescaler.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././webpi.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./alphai.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o buffer.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o framedec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FSsection.obj -c ../H5FSsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o idec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/rescaler.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././webpi.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./alphai.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c:18: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FSstat.obj -c ../H5FSstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o io.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/../enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/../enc/vp8li.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/vp8i.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o quantdec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o treedec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FStest.obj -c ../H5FStest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o vp8.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/rescaler.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././webpi.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./alphai.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5G.obj -c ../H5G.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o vp8ldec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/rescaler.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././webpi.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./alphai.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gbtree2.obj -c ../H5Gbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o webp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o anim_decode.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/utils.h:24, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c:20: +../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gcache.obj -c ../H5Gcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o demux.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/utils.h:24, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c:21: +../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescalerdsp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescaler_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescaler_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescaler_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescaler_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gcompact.obj -c ../H5Gcompact.c +In file included from ../H5Gcompact.c:28: +../H5Gcompact.c: In function ‘H5G__compact_get_name_by_idx’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Gcompact.c:246:9: note: in expansion of macro ‘HDstrncpy’ + 246 | HDstrncpy(name, ltable.lnks[idx].name, MIN((size_t)(ret_value + 1), size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gcompact.c:242:26: note: in expansion of macro ‘HDstrlen’ + 242 | ret_value = (ssize_t)HDstrlen(ltable.lnks[idx].name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gdense.obj -c ../H5Gdense.c +In file included from ../H5Gdense.c:35: +../H5Gdense.c: In function ‘H5G__dense_get_name_by_idx’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Gdense.c:1278:13: note: in expansion of macro ‘HDstrncpy’ + 1278 | HDstrncpy(name, ltable.lnks[n].name, MIN((size_t)(ret_value + 1), size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gdense.c:1274:30: note: in expansion of macro ‘HDstrlen’ + 1274 | ret_value = (ssize_t)HDstrlen(ltable.lnks[n].name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_sse41.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gdeprec.obj -c ../H5Gdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filtersdsp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filters_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filters_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gent.obj -c ../H5Gent.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_avx2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c:12: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gint.obj -c ../H5Gint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Glink.obj -c ../H5Glink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_sse41.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o costdsp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c:12: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o cost_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c:12: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o cost_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c:12: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o cost_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o cpu.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gloc.obj -c ../H5Gloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_clip_tables.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_msa.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gname.obj -c ../H5Gname.c +In file included from ../H5Gname.c:35: +../H5Gname.c: In function ‘H5G_build_fullpath’: +../H5private.h:1358:31: warning: ‘strncat’ specified bound 1 equals source length [-Wstringop-overflow=] + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Gname.c:326:9: note: in expansion of macro ‘HDstrncat’ + 326 | HDstrncat(full_path, "/", (size_t)1); + | ^~~~~~~~~ +../H5Gname.c: In function ‘H5G_common_path.part.0’: +../H5Gname.c:253:23: warning: ‘nchars2’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 253 | prefix+=nchars2; + | ~~~~~~^~~~~~~~~ +In file included from ../H5Gname.c:35: +../H5private.h:1361:31: warning: ‘nchars1’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1361 | #define HDstrncmp(X,Y,Z) strncmp(X,Y,Z) + | ^~~~~~~ +../H5Gname.c:230:13: note: ‘nchars1’ was declared here + 230 | size_t nchars1,nchars2; /* Number of characters in components */ + | ^~~~~~~ +In file included from ../H5Gname.c:35: +In function ‘H5G_name_move_path’, + inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:1028:24, + inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: +../H5private.h:1358:31: warning: ‘strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Gname.c:771:13: note: in expansion of macro ‘HDstrncat’ + 771 | HDstrncat(new_path, full_suffix, full_suffix_len); + | ^~~~~~~~~ +../H5Gname.c: In function ‘H5G_name_replace_cb’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gname.c:717:23: note: in expansion of macro ‘HDstrlen’ + 717 | full_suffix_len = HDstrlen(full_suffix); + | ^~~~~~~~ +In function ‘H5G_name_replace_cb’, + inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: +../H5private.h:1358:31: warning: ‘strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Gname.c:1040:17: note: in expansion of macro ‘HDstrncat’ + 1040 | HDstrncat(new_full_path, full_suffix, full_suffix_len); + | ^~~~~~~~~ +../H5Gname.c: In function ‘H5G_name_replace_cb’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gname.c:1024:35: note: in expansion of macro ‘HDstrlen’ + 1024 | full_suffix_len = HDstrlen(full_suffix); + | ^~~~~~~~ +In function ‘H5G_build_fullpath’, + inlined from ‘H5G_build_fullpath_refstr_str’ at ../H5Gname.c:367:17: +../H5private.h:1358:31: warning: ‘strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Gname.c:327:5: note: in expansion of macro ‘HDstrncat’ + 327 | HDstrncat(full_path, name, name_len); + | ^~~~~~~~~ +../H5Gname.c: In function ‘H5G_build_fullpath_refstr_str’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gname.c:316:16: note: in expansion of macro ‘HDstrlen’ + 316 | name_len = HDstrlen(name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_sse41.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gnode.obj -c ../H5Gnode.c +../H5Gnode.c: In function ‘H5G_node_remove’: +../H5Gnode.c:790:21: warning: unused variable ‘lt_key’ [-Wunused-variable] + 790 | H5G_node_key_t *lt_key = (H5G_node_key_t *)_lt_key; + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o argb.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o argb_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o argb_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alpha_processing.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alpha_processing_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alpha_processing_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alpha_processing_sse41.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gobj.obj -c ../H5Gobj.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Goh.obj -c ../H5Goh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o upsampling.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o upsampling_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o upsampling_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Groot.obj -c ../H5Groot.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gstab.obj -c ../H5Gstab.c +In file included from ../H5Gstab.c:29: +../H5Gstab.c: In function ‘H5G__stab_get_name_by_idx’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Gstab.c:803:9: note: in expansion of macro ‘HDstrncpy’ + 803 | HDstrncpy(name, udata.name, MIN((size_t)(ret_value + 1), size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gstab.c:799:26: note: in expansion of macro ‘HDstrlen’ + 799 | ret_value = (ssize_t)HDstrlen(udata.name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gtest.obj -c ../H5Gtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o upsampling_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gtraverse.obj -c ../H5Gtraverse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HF.obj -c ../H5HF.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o yuv.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./yuv.h:38, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o yuv_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o yuv_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFbtree2.obj -c ../H5HFbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o yuv_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./yuv.h:38, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o vp8lenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c:18: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o treeenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o token.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./cost.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c:23: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFcache.obj -c ../H5HFcache.c +../H5HFcache.c: In function ‘H5HF__cache_hdr_serialize’: +../H5HFcache.c:774:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 774 | hdr->f = f; + | ^ +../H5HFcache.c: In function ‘H5HF__cache_iblock_serialize’: +../H5HFcache.c:1361:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1361 | hdr->f = f; + | ^ +../H5HFcache.c: In function ‘H5HF__cache_iblock_notify’: +../H5HFcache.c:1477:18: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] + 1477 | unsigned indir_idx; /* Index in parent's child iblock pointer array */ + | ^~~~~~~~~ +../H5HFcache.c:1476:26: warning: unused variable ‘par_iblock’ [-Wunused-variable] + 1476 | H5HF_indirect_t *par_iblock = iblock->parent; + | ^~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o syntax.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../utils/../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../utils/utils.h:24, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o near_lossless.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../dsp/lossless.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c:20: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFdbg.obj -c ../H5HFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFdblock.obj -c ../H5HFdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture_csp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c:18: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture_psnr.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture_rescale.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFdtable.obj -c ../H5HFdtable.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture_tools.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFhdr.obj -c ../H5HFhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o quantenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c:18: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFhuge.obj -c ../H5HFhuge.c +../H5HFhuge.c: In function ‘H5HF_huge_write’: +../H5HFhuge.c:890:8: warning: ‘obj_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 890 | if(H5F_block_write(hdr->f, H5FD_MEM_FHEAP_HUGE_OBJ, obj_addr, obj_size, H5AC_rawdata_dxpl_id, obj) < 0) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o iterator.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o histogram.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c:18: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFiblock.obj -c ../H5HFiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o frameenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./cost.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filter.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o config.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../webp/encode.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../webp/./types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../webp/./types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFiter.obj -c ../H5HFiter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o costenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./cost.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o delta_palettization.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/encode.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./delta_palettization.h:16, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c:13: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/./types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/./types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFman.obj -c ../H5HFman.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o backward_references.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alphaenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o analysis.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c:18: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o webpenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././vp8enci.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./cost.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c:19: +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFsection.obj -c ../H5HFsection.c +../H5HFsection.c: In function ‘H5HF_sect_single_valid’: +../H5HFsection.c:1191:20: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] + 1191 | herr_t status; /* Generic status value */ + | ^~~~~~ +../H5HFsection.c:1189:20: warning: variable ‘dblock_overhead’ set but not used [-Wunused-but-set-variable] + 1189 | size_t dblock_overhead; /* Direct block's overhead */ + | ^~~~~~~~~~~~~~~ +../H5HFsection.c: In function ‘H5HF_sect_row_valid’: +../H5HFsection.c:2000:14: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] + 2000 | unsigned indir_idx; /* Index of row in underlying indirect section's row array */ + | ^~~~~~~~~ +../H5HFsection.c: In function ‘H5HF_sect_indirect_valid’: +../H5HFsection.c:4107:44: warning: variable ‘tmp_row_sect2’ set but not used [-Wunused-but-set-variable] + 4107 | const H5HF_free_section_t *tmp_row_sect2; /* Pointer to row section */ + | ^~~~~~~~~~~~~ +../H5HFsection.c:4099:40: warning: variable ‘tmp_row_sect’ set but not used [-Wunused-but-set-variable] + 4099 | const H5HF_free_section_t *tmp_row_sect; /* Pointer to row section */ + | ^~~~~~~~~~~~ +../H5HFsection.c:4134:44: warning: variable ‘tmp_child_sect2’ set but not used [-Wunused-but-set-variable] + 4134 | const H5HF_free_section_t *tmp_child_sect2; /* Pointer to child indirect section */ + | ^~~~~~~~~~~~~~~ +../H5HFsection.c: In function ‘H5HF_sect_single_full_dblock.part.0’: +../H5HFsection.c:774:21: warning: ‘dblock_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 774 | if((dblock_size - dblock_overhead) == sect->sect_info.size && + | ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~ +../H5HFsection.c:787:12: warning: ‘dblock_addr’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 787 | if(H5HF_man_dblock_destroy(hdr, dxpl_id, dblock, dblock_addr) < 0) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5HFsection.c: In function ‘H5HF_sect_single_valid’: +../H5HFsection.c:1223:26: warning: ‘dblock_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1223 | dblock = H5HF_man_dblock_protect(iblock->hdr, dxpl_id, dblock_addr, dblock_size, iblock, sect->u.single.par_entry, H5AC__READ_ONLY_FLAG); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5HFsection.c:1223:26: warning: ‘dblock_addr’ may be used uninitialized in this function [-Wmaybe-uninitialized] +../H5HFsection.c: In function ‘H5HF_sect_single_shrink’: +../H5HFsection.c:1095:26: warning: ‘dblock_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1095 | if(NULL == (dblock = H5HF_man_dblock_protect(hdr, dxpl_id, dblock_addr, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 1096 | dblock_size, (*sect)->u.single.parent, (*sect)->u.single.par_entry, H5AC__NO_FLAGS_SET))) + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5HFsection.c:1101:8: warning: ‘dblock_addr’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1101 | if(H5HF_man_dblock_destroy(hdr, dxpl_id, dblock, dblock_addr) < 0) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o anim_encode.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/../utils/../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/../utils/utils.h:24, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c:19: +../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/../utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/../utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFspace.obj -c ../H5HFspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o muxedit.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/vp8li.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/vp8i.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./muxi.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o muxinternal.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/vp8li.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/vp8i.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./muxi.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFstat.obj -c ../H5HFstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o muxread.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./backward_references.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/vp8li.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/vp8i.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./muxi.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o bit_reader.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./bit_reader_inl.h:27, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c:18: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o bit_writer.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./bit_writer.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c:19: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o color_cache.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./color_cache.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFtest.obj -c ../H5HFtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filtersutils.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./filters.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c:14: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o huffman.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./huffman.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o huffman_encode.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./huffman_encode.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o quant_levels.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./quant_levels.h:19, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFtiny.obj -c ../H5HFtiny.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o quant_levels_dec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./quant_levels_dec.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o random.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./random.h:18, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c:15: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescalerutils.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../dsp/dsp.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c:17: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o thread.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./thread.h:21, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o utils.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c +In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../webp/decode.h:17, + from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c:16: +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../webp/./types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../webp/./types.h:52:16: note: #pragma message: libwebp compiling as DLL export + 52 | # pragma message( "libwebp compiling as DLL export" ) + | ^~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o webp.dll -shared -Wl,--out-implib,libwebp.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ alphadec.obj buffer.obj framedec.obj idec.obj io.obj quantdec.obj treedec.obj vp8.obj vp8ldec.obj webp.obj anim_decode.obj demux.obj rescalerdsp.obj rescaler_mips32.obj rescaler_mips_dsp_r2.obj rescaler_neon.obj rescaler_sse2.obj lossless.obj lossless_enc.obj lossless_enc_mips32.obj lossless_enc_mips_dsp_r2.obj lossless_enc_neon.obj lossless_enc_sse2.obj lossless_enc_sse41.obj lossless_mips_dsp_r2.obj lossless_neon.obj lossless_sse2.obj filtersdsp.obj filters_mips_dsp_r2.obj filters_sse2.obj enc.obj enc_avx2.obj enc_mips32.obj enc_mips_dsp_r2.obj enc_neon.obj enc_sse2.obj enc_sse41.obj costdsp.obj cost_mips32.obj cost_mips_dsp_r2.obj cost_sse2.obj cpu.obj dec.obj dec_clip_tables.obj dec_mips32.obj dec_mips_dsp_r2.obj dec_msa.obj dec_neon.obj dec_sse2.obj dec_sse41.obj argb.obj argb_mips_dsp_r2.obj argb_sse2.obj alpha_processing.obj alpha_processing_mips_dsp_r2.obj alpha_processing_sse2.obj alpha_processing_sse41.obj upsampling.obj upsampling_mips_dsp_r2.obj upsampling_neon.obj upsampling_sse2.obj yuv.obj yuv_mips32.obj yuv_mips_dsp_r2.obj yuv_sse2.obj vp8lenc.obj treeenc.obj token.obj syntax.obj near_lossless.obj picture.obj picture_csp.obj picture_psnr.obj picture_rescale.obj picture_tools.obj quantenc.obj iterator.obj histogram.obj frameenc.obj filter.obj config.obj costenc.obj delta_palettization.obj backward_references.obj alphaenc.obj analysis.obj webpenc.obj anim_encode.obj muxedit.obj muxinternal.obj muxread.obj bit_reader.obj bit_writer.obj color_cache.obj filtersutils.obj huffman.obj huffman_encode.obj quant_levels.obj quant_levels_dec.obj random.obj rescalerutils.obj thread.obj utils.obj -lws2_32 +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' +make -C ./png install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' +mkdir -p O.Common +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngread.d ../pngread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwutil.d ../pngwutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwtran.d ../pngwtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HG.obj -c ../H5HG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwrite.d ../pngwrite.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwio.d ../pngwio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngtrans.d ../pngtrans.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngset.d ../pngset.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrutil.d ../pngrutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrtran.d ../pngrtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrio.d ../pngrio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngpread.d ../pngpread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngmem.d ../pngmem.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngget.d ../pngget.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngerror.d ../pngerror.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF png.d ../png.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HGcache.obj -c ../H5HGcache.c +../H5HGcache.c: In function ‘H5HG__cache_heap_get_final_load_size’: +../H5HGcache.c:225:17: warning: ‘*((void *)&heap+312)’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 225 | *actual_len = heap.size; + | ~~~~~~~~~~~~^~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HGdbg.obj -c ../H5HGdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../png.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HGquery.obj -c ../H5HGquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngerror.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngget.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngmem.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HL.obj -c ../H5HL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngpread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngrio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLcache.obj -c ../H5HLcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLdbg.obj -c ../H5HLdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLint.obj -c ../H5HLint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngrtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLprfx.obj -c ../H5HLprfx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLdblk.obj -c ../H5HLdblk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngrutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HP.obj -c ../H5HP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngset.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngtrans.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5I.obj -c ../H5I.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwrite.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Itest.obj -c ../H5Itest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5L.obj -c ../H5L.c +../H5L.c: In function ‘H5L_move_cb’: +../H5L.c:2639:41: warning: passing argument 1 of ‘H5RS_wrap’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 2639 | dst_name_r = H5RS_wrap(udata->dst_name); + | ~~~~~^~~~~~~~~~ +In file included from ../H5Gprivate.h:35, + from ../H5Tprivate.h:28, + from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5L.c:26: +../H5RSprivate.h:47:20: note: expected ‘char *’ but argument is of type ‘const char *’ + 47 | H5_DLL H5RS_str_t *H5RS_wrap(char *s); + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Lexternal.obj -c ../H5Lexternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +/usr/bin/ar -rc libpng.a png.o pngerror.o pngget.o pngmem.o pngpread.o pngrio.o pngrtran.o pngrutil.o pngset.o pngtrans.o pngwio.o pngwrite.o pngwtran.o pngwutil.o pngread.o +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +/usr/bin/ranlib libpng.a +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +g++ -o libpng.so -shared -fPIC -Wl,-hlibpng.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 png.o pngerror.o pngget.o pngmem.o pngpread.o pngrio.o pngrtran.o pngrutil.o pngset.o pngtrans.o pngwio.o pngwrite.o pngwtran.o pngwutil.o pngread.o -lbzlib -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ + T_A=windows-x64-mingw install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngread.d -MT pngread.obj ../pngread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwutil.d -MT pngwutil.obj ../pngwutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MF.obj -c ../H5MF.c +../H5MF.c: In function ‘H5MF_settle_meta_data_fsm’: +../H5MF.c:3249:17: warning: unused variable ‘fs_stat’ [-Wunused-variable] + 3249 | H5FS_stat_t fs_stat; /* Information for hdr FSM */ + | ^~~~~~~ +../H5MF.c: In function ‘H5MF__fsm_type_is_self_referential.part.0’: +../H5MF.c:3548:17: warning: ‘lg_fshdr_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3547 | result = (fsm_type == sm_fshdr_fsm) || (fsm_type == sm_fssinfo_fsm) + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 3548 | || (fsm_type == lg_fshdr_fsm) || (fsm_type == lg_fssinfo_fsm); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5MF.c:3548:47: warning: ‘lg_fssinfo_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3547 | result = (fsm_type == sm_fshdr_fsm) || (fsm_type == sm_fssinfo_fsm) + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 3548 | || (fsm_type == lg_fshdr_fsm) || (fsm_type == lg_fssinfo_fsm); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5MF.c:3547:45: warning: ‘sm_fssinfo_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3547 | result = (fsm_type == sm_fshdr_fsm) || (fsm_type == sm_fssinfo_fsm) + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5MF.c:3548:47: warning: ‘sm_fshdr_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3547 | result = (fsm_type == sm_fshdr_fsm) || (fsm_type == sm_fssinfo_fsm) + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 3548 | || (fsm_type == lg_fshdr_fsm) || (fsm_type == lg_fssinfo_fsm); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5MF.c: In function ‘H5MF__fsm_is_self_referential.part.0’: +../H5MF.c:3606:48: warning: ‘lg_fshdr_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3606 | (fspace == f->shared->fs_man[lg_fshdr_fsm]) || + | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ +../H5MF.c:3607:48: warning: ‘lg_fssinfo_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3607 | (fspace == f->shared->fs_man[lg_fssinfo_fsm]); + | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ +../H5MF.c:3605:48: warning: ‘sm_fssinfo_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3605 | (fspace == f->shared->fs_man[sm_fssinfo_fsm]) || + | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ +../H5MF.c:3604:46: warning: ‘sm_fshdr_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3604 | result = (fspace == f->shared->fs_man[sm_fshdr_fsm]) || + | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ +../H5MF.c: In function ‘H5MF_settle_meta_data_fsm’: +../H5MF.c:3240:20: warning: ‘lg_fssinfo_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3240 | H5F_mem_page_t lg_fssinfo_fs_type; /* large fs sinfo fsm */ + | ^~~~~~~~~~~~~~~~~~ +../H5MF.c:3239:20: warning: ‘lg_fshdr_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3239 | H5F_mem_page_t lg_fshdr_fs_type; /* large fs hdr fsm */ + | ^~~~~~~~~~~~~~~~ +../H5MF.c:3286:25: warning: ‘sm_fssinfo_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3286 | sm_sinfo_fspace = f->shared->fs_man[sm_fssinfo_fs_type]; + | ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5MF.c: In function ‘H5MF_tidy_self_referential_fsm_hack’: +../H5MF.c:3873:16: warning: ‘lg_fssinfo_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3873 | if(H5FS_free(f, f->shared->fs_man[lg_fssinfo_fs_type], dxpl_id, FALSE) < 0) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5MF.c:3854:29: warning: ‘lg_fshdr_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3854 | if(f->shared->fs_man[lg_fshdr_fs_type]) { + | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~ +../H5MF.c:3829:25: warning: ‘sm_fshdr_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3829 | if(f->shared->fs_man[sm_fshdr_fs_type]) { + | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~ +../H5MF.c:3848:12: warning: ‘sm_fssinfo_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 3848 | if(H5FS_free(f, f->shared->fs_man[sm_fssinfo_fs_type], dxpl_id, FALSE) < 0) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwtran.d -MT pngwtran.obj ../pngwtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwrite.d -MT pngwrite.obj ../pngwrite.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MFaggr.obj -c ../H5MFaggr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwio.d -MT pngwio.obj ../pngwio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MFdbg.obj -c ../H5MFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngtrans.d -MT pngtrans.obj ../pngtrans.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngset.d -MT pngset.obj ../pngset.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MFsection.obj -c ../H5MFsection.c +../H5MFsection.c: In function ‘H5MF_sect_split’: +../H5MFsection.c:376:22: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 376 | FUNC_LEAVE_NOAPI((H5FS_section_info_t *)ret_value) + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrutil.d -MT pngrutil.obj ../pngrutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MM.obj -c ../H5MM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrtran.d -MT pngrtran.obj ../pngrtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MP.obj -c ../H5MP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrio.d -MT pngrio.obj ../pngrio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MPtest.obj -c ../H5MPtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngpread.d -MT pngpread.obj ../pngpread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngmem.d -MT pngmem.obj ../pngmem.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngget.d -MT pngget.obj ../pngget.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngerror.d -MT pngerror.obj ../pngerror.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5O.obj -c ../H5O.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF png.d -MT png.obj ../png.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oainfo.obj -c ../H5Oainfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oalloc.obj -c ../H5Oalloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o png.obj -c ../png.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oattr.obj -c ../H5Oattr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngerror.obj -c ../pngerror.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oattribute.obj -c ../H5Oattribute.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Obogus.obj -c ../H5Obogus.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngget.obj -c ../pngget.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Obtreek.obj -c ../H5Obtreek.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngmem.obj -c ../pngmem.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ocache.obj -c ../H5Ocache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ocache_image.obj -c ../H5Ocache_image.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngpread.obj -c ../pngpread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ochunk.obj -c ../H5Ochunk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ocont.obj -c ../H5Ocont.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngrio.obj -c ../pngrio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ocopy.obj -c ../H5Ocopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Odbg.obj -c ../H5Odbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Odrvinfo.obj -c ../H5Odrvinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngrtran.obj -c ../pngrtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Odtype.obj -c ../H5Odtype.c +../H5Odtype.c: In function ‘H5O_dtype_copy’: +../H5Odtype.c:1192:32: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1192 | if(NULL == (dst = H5T_copy(src, H5T_COPY_ALL))) + | ^~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Odtype.c:19: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Odtype.c: In function ‘H5O_dtype_pre_copy_file’: +../H5Odtype.c:1541:49: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1541 | if(NULL == (udata->src_dtype = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) + | ^~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Odtype.c:19: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oefl.obj -c ../H5Oefl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngrutil.obj -c ../pngrutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ofill.obj -c ../H5Ofill.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oflush.obj -c ../H5Oflush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngset.obj -c ../pngset.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ofsinfo.obj -c ../H5Ofsinfo.c +../H5Ofsinfo.c: In function ‘H5O_fsinfo_decode’: +../H5Ofsinfo.c:132:35: warning: ‘threshold’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 132 | fsinfo->threshold = threshold; + | ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oginfo.obj -c ../H5Oginfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngtrans.obj -c ../pngtrans.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Olayout.obj -c ../H5Olayout.c +../H5Olayout.c: In function ‘H5O__layout_decode’: +../H5Olayout.c:412:90: warning: ‘tmp_hsize’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 412 | if(NULL == (mesg->storage.u.virt.list = (H5O_storage_virtual_ent_t *)H5MM_calloc((size_t)tmp_hsize * sizeof(H5O_storage_virtual_ent_t)))) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngwio.obj -c ../pngwio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Olinfo.obj -c ../H5Olinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Olink.obj -c ../H5Olink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngwrite.obj -c ../pngwrite.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Omessage.obj -c ../H5Omessage.c +../H5Omessage.c: In function ‘H5O_msg_reset_share’: +../H5Omessage.c:1691:28: warning: variable ‘type’ set but not used [-Wunused-but-set-variable] + 1691 | const H5O_msg_class_t *type; /* Actual H5O class type for the ID */ + | ^~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngwtran.obj -c ../pngwtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Omtime.obj -c ../H5Omtime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oname.obj -c ../H5Oname.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Onull.obj -c ../H5Onull.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngwutil.obj -c ../pngwutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Opline.obj -c ../H5Opline.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Orefcount.obj -c ../H5Orefcount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Osdspace.obj -c ../H5Osdspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oshared.obj -c ../H5Oshared.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngread.obj -c ../pngread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-windres -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include ../png.rc png.coff +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o png.dll -shared -Wl,--out-implib,libpng.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ png.obj pngerror.obj pngget.obj pngmem.obj pngpread.obj pngrio.obj pngrtran.obj pngrutil.obj pngset.obj pngtrans.obj pngwio.obj pngwrite.obj pngwtran.obj pngwutil.obj pngread.obj png.coff -lbzlib -lzlib -lws2_32 +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' +make -C ./jp2 install +make -C ./src install +make -C ./libjasper install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../../.. +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../../.. +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' +mkdir -p O.Common +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oshmesg.obj -c ../H5Oshmesg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_util.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tsfb.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tagtree.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2cod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1cod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_qmfb.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqenc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqdec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqcod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mct.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_math.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_cs.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_bs.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ostab.obj -c ../H5Ostab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_cod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_version.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tvp.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tmr.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_string.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_stream.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_seq.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_malloc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_init.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_image.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_iccdata.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_icc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_getopt.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_debug.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_cm.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Otest.obj -c ../H5Otest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ounknown.obj -c ../H5Ounknown.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5P.obj -c ../H5P.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pacpl.obj -c ../H5Pacpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_iccattrtab_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:730:49: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘jas_iccsig_t’ {aka ‘long unsigned int’} [-Wformat=] + 730 | fprintf(out, "attrno=%d; attrname=\"%s\"(0x%08x); attrtype=\"%s\"(0x%08x)\n", + | ~~~^ + | | + | unsigned int + | %08lx +...... + 733 | attr->name, + | ~~~~~~~~~~ + | | + | jas_iccsig_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:730:74: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 7 has type ‘jas_iccsig_t’ {aka ‘long unsigned int’} [-Wformat=] + 730 | fprintf(out, "attrno=%d; attrname=\"%s\"(0x%08x); attrtype=\"%s\"(0x%08x)\n", + | ~~~^ + | | + | unsigned int + | %08lx +...... + 735 | attrval->type + | ~~~~~~~~~~~~~ + | | + | jas_iccsig_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_iccattrval_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:886:41: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘jas_iccsig_t’ {aka ‘long unsigned int’} [-Wformat=] + 886 | fprintf(out, "refcnt = %d; type = 0x%08x %s\n", attrval->refcnt, + | ~~~^ + | | + | unsigned int + | %08lx + 887 | attrval->type, jas_iccsigtostr(attrval->type, &buf[0])); + | ~~~~~~~~~~~~~ + | | + | jas_iccsig_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icccurv_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1044:37: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint32_t’ {aka ‘long unsigned int’} [-Wformat=] + 1044 | fprintf(out, "number of entires = %d\n", curv->numents); + | ~^ ~~~~~~~~~~~~~ + | | | + | int jas_iccuint32_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icctxtdesc_copy’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1072:20: warning: variable ‘txtdesc’ set but not used [-Wunused-but-set-variable] + 1072 | jas_icctxtdesc_t *txtdesc = &attrval->data.txtdesc; + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icctxtdesc_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1170:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint32_t’ {aka ‘long unsigned int’} [-Wformat=] + 1170 | fprintf(out, "uclangcode = %d; uclen = %d\n", txtdesc->uclangcode, + | ~^ ~~~~~~~~~~~~~~~~~~~ + | | | + | int jas_iccuint32_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1170:42: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘jas_iccuint32_t’ {aka ‘long unsigned int’} [-Wformat=] + 1170 | fprintf(out, "uclangcode = %d; uclen = %d\n", txtdesc->uclangcode, + | ~^ + | | + | int + | %ld + 1171 | txtdesc->uclen); + | ~~~~~~~~~~~~~~ + | | + | jas_iccuint32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1172:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1172 | fprintf(out, "sccode = %d\n", txtdesc->sccode); + | ~^ ~~~~~~~~~~~~~~~ + | | | + | int jas_iccuint16_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut8_copy’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1259:17: warning: variable ‘lut8’ set but not used [-Wunused-but-set-variable] + 1259 | jas_icclut8_t *lut8 = &attrval->data.lut8; + | ^~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut8_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1403:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1403 | fprintf(out, "numintabents=%d, numouttabents=%d\n", + | ~^ + | | + | int + | %ld + 1404 | lut8->numintabents, lut8->numouttabents); + | ~~~~~~~~~~~~~~~~~~ + | | + | jas_iccuint16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1403:48: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1403 | fprintf(out, "numintabents=%d, numouttabents=%d\n", + | ~^ + | | + | int + | %ld + 1404 | lut8->numintabents, lut8->numouttabents); + | ~~~~~~~~~~~~~~~~~~~ + | | + | jas_iccuint16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut16_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1567:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1567 | fprintf(out, "numintabents=%d, numouttabents=%d\n", + | ~^ + | | + | int + | %ld + 1568 | lut16->numintabents, lut16->numouttabents); + | ~~~~~~~~~~~~~~~~~~~ + | | + | jas_iccuint16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1567:48: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1567 | fprintf(out, "numintabents=%d, numouttabents=%d\n", + | ~^ + | | + | int + | %ld + 1568 | lut16->numintabents, lut16->numouttabents); + | ~~~~~~~~~~~~~~~~~~~~ + | | + | jas_iccuint16_t {aka long unsigned int} +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pdapl.obj -c ../H5Pdapl.c +In file included from ../H5Pdapl.c:35: +../H5Pdapl.c: In function ‘H5Pget_efile_prefix’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Pdapl.c:1280:13: note: in expansion of macro ‘HDstrncpy’ + 1280 | HDstrncpy(prefix, my_prefix, MIN(len + 1, size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Pdapl.c:1278:15: note: in expansion of macro ‘HDstrlen’ + 1278 | len = HDstrlen(my_prefix); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c: In function ‘jas_image_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:824:45: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘jas_image_cmpttype_t’ {aka ‘long int’} [-Wformat=] + 824 | fprintf(out, "prec=%d, sgnd=%d, cmpttype=%d\n", cmpt->prec_, + | ~^ + | | + | int + | %ld + 825 | cmpt->sgnd_, cmpt->type_); + | ~~~~~~~~~~~ + | | + | jas_image_cmpttype_t {aka long int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c: In function ‘jas_image_chclrspc’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1289:6: warning: variable ‘numoutchans’ set but not used [-Wunused-but-set-variable] + 1289 | int numoutchans; + | ^~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1282:6: warning: variable ‘numinauxchans’ set but not used [-Wunused-but-set-variable] + 1282 | int numinauxchans; + | ^~~~~~~~~~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c: In function ‘jas_seq2d_output’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:426:17: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 426 | fprintf(out, "%d %d\n", jas_seq2d_xstart(matrix), + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:426:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 426 | fprintf(out, "%d %d\n", jas_seq2d_xstart(matrix), + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:428:17: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 428 | fprintf(out, "%d %d\n", jas_matrix_numcols(matrix), + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:428:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 428 | fprintf(out, "%d %d\n", jas_matrix_numcols(matrix), + | ~^ + | | + | int + | %ld +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c: In function ‘jas_stream_tmpfile’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c:368:2: warning: ignoring return value of ‘tmpnam’, declared with attribute warn_unused_result [-Wunused-result] + 368 | tmpnam(obj->pathname); + | ^~~~~~~~~~~~~~~~~~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pdcpl.obj -c ../H5Pdcpl.c +../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] + 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:84:36: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ + 84 | #define H5D_CRT_LAYOUT_DEF H5D_DEF_LAYOUT_CONTIG + | ^~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:209:46: note: in expansion of macro ‘H5D_CRT_LAYOUT_DEF’ + 209 | static const H5O_layout_t H5D_def_layout_g = H5D_CRT_LAYOUT_DEF; /* Default storage layout */ + | ^~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] + 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:84:36: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ + 84 | #define H5D_CRT_LAYOUT_DEF H5D_DEF_LAYOUT_CONTIG + | ^~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:209:46: note: in expansion of macro ‘H5D_CRT_LAYOUT_DEF’ + 209 | static const H5O_layout_t H5D_def_layout_g = H5D_CRT_LAYOUT_DEF; /* Default storage layout */ + | ^~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] + 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:84:36: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ + 84 | #define H5D_CRT_LAYOUT_DEF H5D_DEF_LAYOUT_CONTIG + | ^~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:209:46: note: in expansion of macro ‘H5D_CRT_LAYOUT_DEF’ + 209 | static const H5O_layout_t H5D_def_layout_g = H5D_CRT_LAYOUT_DEF; /* Default storage layout */ + | ^~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:75:33: warning: missing braces around initializer [-Wmissing-braces] + 75 | #define H5D_DEF_LAYOUT_COMPACT {H5D_COMPACT, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:221:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_COMPACT’ + 221 | static H5O_layout_t H5D_def_layout_compact_g = H5D_DEF_LAYOUT_COMPACT; + | ^~~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:75:33: warning: missing braces around initializer [-Wmissing-braces] + 75 | #define H5D_DEF_LAYOUT_COMPACT {H5D_COMPACT, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:221:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_COMPACT’ + 221 | static H5O_layout_t H5D_def_layout_compact_g = H5D_DEF_LAYOUT_COMPACT; + | ^~~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:75:33: warning: missing braces around initializer [-Wmissing-braces] + 75 | #define H5D_DEF_LAYOUT_COMPACT {H5D_COMPACT, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:221:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_COMPACT’ + 221 | static H5O_layout_t H5D_def_layout_compact_g = H5D_DEF_LAYOUT_COMPACT; + | ^~~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] + 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:222:47: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ + 222 | static H5O_layout_t H5D_def_layout_contig_g = H5D_DEF_LAYOUT_CONTIG; + | ^~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] + 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:222:47: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ + 222 | static H5O_layout_t H5D_def_layout_contig_g = H5D_DEF_LAYOUT_CONTIG; + | ^~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] + 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:222:47: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ + 222 | static H5O_layout_t H5D_def_layout_contig_g = H5D_DEF_LAYOUT_CONTIG; + | ^~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:77:33: warning: missing braces around initializer [-Wmissing-braces] + 77 | #define H5D_DEF_LAYOUT_CHUNK {H5D_CHUNKED, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:223:46: note: in expansion of macro ‘H5D_DEF_LAYOUT_CHUNK’ + 223 | static H5O_layout_t H5D_def_layout_chunk_g = H5D_DEF_LAYOUT_CHUNK; + | ^~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:77:33: warning: missing braces around initializer [-Wmissing-braces] + 77 | #define H5D_DEF_LAYOUT_CHUNK {H5D_CHUNKED, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:223:46: note: in expansion of macro ‘H5D_DEF_LAYOUT_CHUNK’ + 223 | static H5O_layout_t H5D_def_layout_chunk_g = H5D_DEF_LAYOUT_CHUNK; + | ^~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:77:33: warning: missing braces around initializer [-Wmissing-braces] + 77 | #define H5D_DEF_LAYOUT_CHUNK {H5D_CHUNKED, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:223:46: note: in expansion of macro ‘H5D_DEF_LAYOUT_CHUNK’ + 223 | static H5O_layout_t H5D_def_layout_chunk_g = H5D_DEF_LAYOUT_CHUNK; + | ^~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:78:33: warning: missing braces around initializer [-Wmissing-braces] + 78 | #define H5D_DEF_LAYOUT_VIRTUAL {H5D_VIRTUAL, H5O_LAYOUT_VERSION_4, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:224:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_VIRTUAL’ + 224 | static H5O_layout_t H5D_def_layout_virtual_g = H5D_DEF_LAYOUT_VIRTUAL; + | ^~~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:78:33: warning: missing braces around initializer [-Wmissing-braces] + 78 | #define H5D_DEF_LAYOUT_VIRTUAL {H5D_VIRTUAL, H5O_LAYOUT_VERSION_4, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:224:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_VIRTUAL’ + 224 | static H5O_layout_t H5D_def_layout_virtual_g = H5D_DEF_LAYOUT_VIRTUAL; + | ^~~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c:78:33: warning: missing braces around initializer [-Wmissing-braces] + 78 | #define H5D_DEF_LAYOUT_VIRTUAL {H5D_VIRTUAL, H5O_LAYOUT_VERSION_4, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} + | ^ +../H5Pdcpl.c:224:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_VIRTUAL’ + 224 | static H5O_layout_t H5D_def_layout_virtual_g = H5D_DEF_LAYOUT_VIRTUAL; + | ^~~~~~~~~~~~~~~~~~~~~~ +../H5Pdcpl.c: In function ‘H5P_get_fill_value’: +../H5Pdcpl.c:3329:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 3329 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(type, H5T_COPY_TRANSIENT), FALSE)) < 0) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Pdcpl.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c: In function ‘jp2_box_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:323:34: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 323 | fprintf(out, "type=%c%s%c (0x%08x); length=%d\n", '"', boxinfo->name, + | ~~~^ + | | + | unsigned int + | %08lx + 324 | '"', box->type, box->len); + | ~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:323:46: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 323 | fprintf(out, "type=%c%s%c (0x%08x); length=%d\n", '"', boxinfo->name, + | ~^ + | | + | int + | %ld + 324 | '"', box->type, box->len); + | ~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c: In function ‘jp2_cdef_dumpdata’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:435:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 435 | fprintf(out, "channo=%d; type=%d; assoc=%d\n", + | ~^ + | | + | int + | %ld + 436 | cdef->ents[i].channo, cdef->ents[i].type, cdef->ents[i].assoc); + | ~~~~~~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:435:34: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 435 | fprintf(out, "channo=%d; type=%d; assoc=%d\n", + | ~^ + | | + | int + | %ld + 436 | cdef->ents[i].channo, cdef->ents[i].type, cdef->ents[i].assoc); + | ~~~~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:435:44: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 435 | fprintf(out, "channo=%d; type=%d; assoc=%d\n", + | ~^ + | | + | int + | %ld + 436 | cdef->ents[i].channo, cdef->ents[i].type, cdef->ents[i].assoc); + | ~~~~~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c: In function ‘jp2_pclr_dumpdata’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:874:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 874 | fprintf(out, "LUT[%d][%d]=%d\n", i, j, pclr->lutdata[i * pclr->numchans + j]); + | ~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + | | | + | int int_fast32_t {aka long int} + | %ld +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c: In function ‘jp2_decode’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c:107:14: warning: variable ‘cdefd’ set but not used [-Wunused-but-set-variable] + 107 | jp2_cdef_t *cdefd; + | ^~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pdeprec.obj -c ../H5Pdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_ms_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:407:28: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 407 | fprintf(out, "type = 0x%04x (%s);", ms->id, mstabent->name); + | ~~~^ ~~~~~~ + | | | + | | uint_fast16_t {aka long unsigned int} + | unsigned int + | %04lx +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:409:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 409 | fprintf(out, " len = %d;", ms->len + 2); + | ~^ ~~~~~~~~~~~ + | | | + | int uint_fast16_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_sot_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:462:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 462 | fprintf(out, "tileno = %d; len = %d; partno = %d; numparts = %d\n", + | ~^ + | | + | int + | %ld + 463 | sot->tileno, sot->len, sot->partno, sot->numparts); + | ~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:462:36: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 462 | fprintf(out, "tileno = %d; len = %d; partno = %d; numparts = %d\n", + | ~^ + | | + | int + | %ld + 463 | sot->tileno, sot->len, sot->partno, sot->numparts); + | ~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_siz_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:562:28: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 562 | fprintf(out, "caps = 0x%02x;\n", siz->caps); + | ~~~^ ~~~~~~~~~ + | | | + | | uint_fast16_t {aka long unsigned int} + | unsigned int + | %02lx +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", + | ~^ + | | + | int + | %ld + 564 | siz->width, siz->height, siz->xoff, siz->yoff); + | ~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", + | ~^ + | | + | int + | %ld + 564 | siz->width, siz->height, siz->xoff, siz->yoff); + | ~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:49: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", + | ~^ + | | + | int + | %ld + 564 | siz->width, siz->height, siz->xoff, siz->yoff); + | ~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:60: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", + | ~^ + | | + | int + | %ld + 564 | siz->width, siz->height, siz->xoff, siz->yoff); + | ~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " + | ~^ + | | + | int + | %ld + 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, + | ~~~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:46: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " + | ~^ + | | + | int + | %ld + 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, + | ~~~~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:61: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " + | ~^ + | | + | int + | %ld + 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, + | ~~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:15: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, + 567 | siz->tileyoff); + | ~~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:566:17: note: format string is defined here + 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_cod_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:634:37: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 634 | fprintf(out, "prg = %d; numlyrs = %d;\n", + | ~^ + | | + | int + | %ld + 635 | cod->prg, cod->numlyrs); + | ~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_coc_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:712:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 712 | fprintf(out, "compno = %d; csty = 0x%02x; numdlvls = %d;\n", + | ~^ + | | + | int + | %ld + 713 | coc->compno, coc->compparms.csty, coc->compparms.numdlvls); + | ~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_rgn_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:843:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 843 | fprintf(out, "compno = %d; roisty = %d; roishift = %d\n", + | ~^ + | | + | int + | %ld + 844 | rgn->compno, rgn->roisty, rgn->roishift); + | ~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_qcc_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:936:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 936 | fprintf(out, "compno = %d; qntsty = %d; numguard = %d; " + | ~^ + | | + | int + | %ld + 937 | "numstepsizes = %d\n", qcc->compno, qcc->compparms.qntsty, qcc->compparms.numguard, + | ~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_sop_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1060:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1060 | fprintf(out, "seqno = %d;\n", sop->seqno); + | ~^ ~~~~~~~~~~ + | | | + | int uint_fast16_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_ppm_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1126:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1126 | fprintf(out, "ind=%d; len = %d;\n", ppm->ind, ppm->len); + | ~^ ~~~~~~~~ + | | | + | int uint_fast16_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_ppt_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1198:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 1198 | fprintf(out, "ind=%d; len = %d;\n", ppt->ind, ppt->len); + | ~^ ~~~~~~~~ + | | | + | int uint_fast32_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_poc_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1304:27: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1304 | fprintf(out, "cs[%d] = %d; ce[%d] = %d; ", + | ~^ + | | + | int + | %ld + 1305 | pchgno, pchg->compnostart, pchgno, pchg->compnoend); + | ~~~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1304:40: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1304 | fprintf(out, "cs[%d] = %d; ce[%d] = %d; ", + | ~^ + | | + | int + | %ld + 1305 | pchgno, pchg->compnostart, pchgno, pchg->compnoend); + | ~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1308:27: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1308 | fprintf(out, "le[%d] = %d\n", pchgno, pchg->lyrnoend); + | ~^ ~~~~~~~~~~~~~~ + | | | + | int uint_fast16_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_crg_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1371:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1371 | fprintf(out, "hoff[%d] = %d; voff[%d] = %d\n", compno, + | ~^ + | | + | int + | %ld + 1372 | comp->hoff, compno, comp->voff); + | ~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1371:44: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1371 | fprintf(out, "hoff[%d] = %d; voff[%d] = %d\n", compno, + | ~^ + | | + | int + | %ld + 1372 | comp->hoff, compno, comp->voff); + | ~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_com_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1434:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1434 | fprintf(out, "regid = %d;\n", com->regid); + | ~^ ~~~~~~~~~~ + | | | + | int uint_fast16_t {aka long unsigned int} + | %ld +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pdxpl.obj -c ../H5Pdxpl.c +In file included from ../H5Pdxpl.c:35: +../H5Pdxpl.c: In function ‘H5Pget_data_transform’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Pdxpl.c:1129:2: note: in expansion of macro ‘HDstrncpy’ + 1129 | HDstrncpy(expression, pexp, MIN(len + 1, size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Pdxpl.c:1127:11: note: in expansion of macro ‘HDstrlen’ + 1127 | len = HDstrlen(pexp); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_process_crg’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:414:13: warning: variable ‘crg’ set but not used [-Wunused-but-set-variable] + 414 | jpc_crg_t *crg; + | ^~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_tileinit’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:659:16: warning: variable ‘brcbgyend’ set but not used [-Wunused-but-set-variable] + 659 | uint_fast32_t brcbgyend; + | ^~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - + | ~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - + | ~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - + | ~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - + | ~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - + | ~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} + 2007 | rlvl->xstart, rlvl->yend - rlvl->ystart); + | ~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - + 2007 | rlvl->xstart, rlvl->yend - rlvl->ystart); + | ~~~~~~~~~~~~~~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - + | ~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - + | ~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - + | ~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - + | ~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - + | ~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} + 2021 | prc->xstart, prc->yend - prc->ystart); + | ~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - + 2021 | prc->xstart, prc->yend - prc->ystart); + | ~~~~~~~~~~~~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pencdec.obj -c ../H5Pencdec.c +In file included from ../H5Pencdec.c:29: +In function ‘H5P__encode_cb’, + inlined from ‘H5P__encode_cb’ at ../H5Pencdec.c:332:1: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Pencdec.c:351:13: note: in expansion of macro ‘HDstrncpy’ + 351 | HDstrncpy((char *)*(udata->pp), prop->name, prop_name_len); + | ^~~~~~~~~ +../H5Pencdec.c: In function ‘H5P__encode_cb’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Pencdec.c:349:25: note: in expansion of macro ‘HDstrlen’ + 349 | prop_name_len = HDstrlen(prop->name) + 1; + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_calcssmant’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:870:6: warning: variable ‘e’ set but not used [-Wunused-but-set-variable] + 870 | int e; + | ^ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainhdr’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:901:12: warning: variable ‘mctsynweight’ set but not used [-Wunused-but-set-variable] + 901 | jpc_fix_t mctsynweight; + | ^~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainbody’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1115:7: warning: variable ‘numbytes’ set but not used [-Wunused-but-set-variable] + 1115 | long numbytes; + | ^~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1101:6: warning: variable ‘tiley’ set but not used [-Wunused-but-set-variable] + 1101 | int tiley; + | ^~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1100:6: warning: variable ‘tilex’ set but not used [-Wunused-but-set-variable] + 1100 | int tilex; + | ^~~~~ +At top level: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:883:12: warning: ‘jpc_calcssexp’ defined but not used [-Wunused-function] + 883 | static int jpc_calcssexp(jpc_fix_t stepsize) + | ^~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:867:12: warning: ‘jpc_calcssmant’ defined but not used [-Wunused-function] + 867 | static int jpc_calcssmant(jpc_fix_t stepsize) + | ^~~~~~~~~~~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c: In function ‘jpc_mqdec_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c:304:39: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 304 | fprintf(out, "IND %d, MPS %d, QEVAL %x\n", (int) (*mqdec->curctx - + | ~^ + | | + | unsigned int + | %lx + 305 | jpc_mqstates), (*mqdec->curctx)->mps, (*mqdec->curctx)->qeval); + | ~~~~~~~~~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c: In function ‘jpc_mqenc_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:386:26: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 386 | fprintf(out, "AREG = %08x, CREG = %08x, CTREG = %d\n", + | ~~~^ + | | + | unsigned int + | %08lx + 387 | mqenc->areg, mqenc->creg, mqenc->ctreg); + | ~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:386:39: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 386 | fprintf(out, "AREG = %08x, CREG = %08x, CTREG = %d\n", + | ~~~^ + | | + | unsigned int + | %08lx + 387 | mqenc->areg, mqenc->creg, mqenc->ctreg); + | ~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:386:51: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 386 | fprintf(out, "AREG = %08x, CREG = %08x, CTREG = %d\n", + | ~^ + | | + | int + | %ld + 387 | mqenc->areg, mqenc->creg, mqenc->ctreg); + | ~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:388:49: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 388 | fprintf(out, "IND = %02d, MPS = %d, QEVAL = %04x\n", + | ~~~^ + | | + | unsigned int + | %04lx + 389 | (int) (*mqenc->curctx - jpc_mqstates), (*mqenc->curctx)->mps, + 390 | (*mqenc->curctx)->qeval); + | ~~~~~~~~~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pfapl.obj -c ../H5Pfapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pfcpl.obj -c ../H5Pfcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pfmpl.obj -c ../H5Pfmpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:288:2: warning: initialization of ‘int (*)(int *, int, int, int, int, int)’ from incompatible pointer type ‘int (*)(jpc_fix_t *, int, int, int, int, int)’ {aka ‘int (*)(long int *, int, int, int, int, int)’} [-Wincompatible-pointer-types] + 288 | jpc_ft_analyze, + | ^~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:288:2: note: (near initialization for ‘jpc_ft_qmfb2d.analyze’) +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:295:2: warning: initialization of ‘int (*)(int *, int, int, int, int, int)’ from incompatible pointer type ‘int (*)(jpc_fix_t *, int, int, int, int, int)’ {aka ‘int (*)(long int *, int, int, int, int, int)’} [-Wincompatible-pointer-types] + 295 | jpc_ns_analyze, + | ^~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:295:2: note: (near initialization for ‘jpc_ns_qmfb2d.analyze’) +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:296:2: warning: initialization of ‘int (*)(int *, int, int, int, int, int)’ from incompatible pointer type ‘int (*)(jpc_fix_t *, int, int, int, int, int)’ {aka ‘int (*)(long int *, int, int, int, int, int)’} [-Wincompatible-pointer-types] + 296 | jpc_ns_synthesize, + | ^~~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:296:2: note: (near initialization for ‘jpc_ns_qmfb2d.synthesize’) +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c: In function ‘jpc_ft_synthesize’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:1607:11: warning: assignment to ‘jpc_fix_t *’ {aka ‘long int *’} from incompatible pointer type ‘int *’ [-Wincompatible-pointer-types] + 1607 | startptr = &a[0]; + | ^ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:1615:11: warning: assignment to ‘jpc_fix_t *’ {aka ‘long int *’} from incompatible pointer type ‘int *’ [-Wincompatible-pointer-types] + 1615 | startptr = &a[0]; + | ^ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pgcpl.obj -c ../H5Pgcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pint.obj -c ../H5Pint.c +../H5Pint.c: In function ‘H5P__iterate_pclass_cb’: +../H5Pint.c:4066:11: warning: unused variable ‘key’ [-Wunused-variable] + 4066 | char *key = (char *)_key; /* Pointer to the property's name */ + | ^~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c: In function ‘jpc_enc_enccblk’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:205:18: warning: variable ‘rlvl’ set but not used [-Wunused-but-set-variable] + 205 | jpc_enc_rlvl_t *rlvl; + | ^~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:200:6: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] + 200 | int ret; + | ^~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Plapl.obj -c ../H5Plapl.c +../H5Plapl.c: In function ‘H5P__lacc_elink_fapl_cmp’: +../H5Plapl.c:570:16: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] + 570 | herr_t status; + | ^~~~~~ +In file included from ../H5Plapl.c:35: +../H5Plapl.c: In function ‘H5Pget_elink_prefix’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5Plapl.c:1062:13: note: in expansion of macro ‘HDstrncpy’ + 1062 | HDstrncpy(prefix, my_prefix, MIN(len + 1, size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Plapl.c:1060:15: note: in expansion of macro ‘HDstrlen’ + 1060 | len = HDstrlen(my_prefix); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Plcpl.obj -c ../H5Plcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:77: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c: In function ‘jpc_tsfb_analyze’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:177:3: warning: passing argument 2 of ‘jpc_tsfb_analyze2’ from incompatible pointer type [-Wincompatible-pointer-types] + 177 | (&(matrix)->rows_[i][j]) + | ^ + | | + | jas_seqent_t * {aka long int *} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:259:3: note: in expansion of macro ‘jas_matrix_getref’ + 259 | (jas_matrix_getref(s, (y) - (s)->ystart_, (x) - (s)->xstart_)) + | ^~~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:130:55: note: in expansion of macro ‘jas_seq2d_getref’ + 130 | return (tsfb->numlvls > 0) ? jpc_tsfb_analyze2(tsfb, jas_seq2d_getref(a, + | ^~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:85:46: note: expected ‘int *’ but argument is of type ‘jas_seqent_t *’ {aka ‘long int *’} + 85 | int jpc_tsfb_analyze2(jpc_tsfb_t *tsfb, int *a, int xstart, int ystart, + | ~~~~~^ +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:77: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c: In function ‘jpc_tsfb_synthesize’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:177:3: warning: passing argument 2 of ‘jpc_tsfb_synthesize2’ from incompatible pointer type [-Wincompatible-pointer-types] + 177 | (&(matrix)->rows_[i][j]) + | ^ + | | + | jas_seqent_t * {aka long int *} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:259:3: note: in expansion of macro ‘jas_matrix_getref’ + 259 | (jas_matrix_getref(s, (y) - (s)->ystart_, (x) - (s)->xstart_)) + | ^~~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:158:4: note: in expansion of macro ‘jas_seq2d_getref’ + 158 | jas_seq2d_getref(a, jas_seq2d_xstart(a), jas_seq2d_ystart(a)), + | ^~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:88:49: note: expected ‘int *’ but argument is of type ‘jas_seqent_t *’ {aka ‘long int *’} + 88 | int jpc_tsfb_synthesize2(jpc_tsfb_t *tsfb, int *a, int xstart, int ystart, + | ~~~~~^ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c: In function ‘jpc_atoaf’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:11: warning: comparison between pointer and zero character constant [-Wpointer-compare] + 105 | if (cp != '\0') { + | ^~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:8: note: did you mean to dereference the pointer? + 105 | if (cp != '\0') { + | ^ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:12: warning: comparison between pointer and zero character constant [-Wpointer-compare] + 123 | if (cp != '\0') { + | ^~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:9: note: did you mean to dereference the pointer? + 123 | if (cp != '\0') { + | ^ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +/usr/bin/ar -rc libjp2.a jas_cm.o jas_debug.o jas_getopt.o jas_icc.o jas_iccdata.o jas_image.o jas_init.o jas_malloc.o jas_seq.o jas_stream.o jas_string.o jas_tmr.o jas_tvp.o jas_version.o jp2_cod.o jp2_dec.o jp2_enc.o jpc_bs.o jpc_cs.o jpc_dec.o jpc_enc.o jpc_math.o jpc_mct.o jpc_mqcod.o jpc_mqdec.o jpc_mqenc.o jpc_qmfb.o jpc_t1cod.o jpc_t1dec.o jpc_t1enc.o jpc_t2cod.o jpc_t2dec.o jpc_t2enc.o jpc_tagtree.o jpc_tsfb.o jpc_util.o +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +/usr/bin/ranlib libjp2.a +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +g++ -o libjp2.so -shared -fPIC -Wl,-hlibjp2.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jas_cm.o jas_debug.o jas_getopt.o jas_icc.o jas_iccdata.o jas_image.o jas_init.o jas_malloc.o jas_seq.o jas_stream.o jas_string.o jas_tmr.o jas_tvp.o jas_version.o jp2_cod.o jp2_dec.o jp2_enc.o jpc_bs.o jpc_cs.o jpc_dec.o jpc_enc.o jpc_math.o jpc_mct.o jpc_mqcod.o jpc_mqdec.o jpc_mqenc.o jpc_qmfb.o jpc_t1cod.o jpc_t1dec.o jpc_t1enc.o jpc_t2cod.o jpc_t2dec.o jpc_t2enc.o jpc_tagtree.o jpc_tsfb.o jpc_util.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +/usr/bin/ld: jas_stream.o: in function `jas_stream_tmpfile': +jas_stream.c:(.text+0x7e9): warning: the use of `tmpnam' is dangerous, better use `mkstemp' +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pocpl.obj -c ../H5Pocpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_util.d -MT jpc_util.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pocpypl.obj -c ../H5Pocpypl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tsfb.d -MT jpc_tsfb.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tagtree.d -MT jpc_tagtree.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pstrcpl.obj -c ../H5Pstrcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2enc.d -MT jpc_t2enc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ptest.obj -c ../H5Ptest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2dec.d -MT jpc_t2dec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2cod.d -MT jpc_t2cod.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5PB.obj -c ../H5PB.c +../H5PB.c: In function ‘H5PB_dest’: +../H5PB.c:487:7: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 487 | f = fio_info->f; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1enc.d -MT jpc_t1enc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1dec.d -MT jpc_t1dec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5PL.obj -c ../H5PL.c +In file included from ../H5PL.c:23: +../H5PL.c: In function ‘H5PLget’: +../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5PL.c:623:9: note: in expansion of macro ‘HDstrncpy’ + 623 | HDstrncpy(pathname, dl_path, MIN((size_t)(len + 1), size)); + | ^~~~~~~~~ +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5PL.c:621:11: note: in expansion of macro ‘HDstrlen’ + 621 | len = HDstrlen(dl_path); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1cod.d -MT jpc_t1cod.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_qmfb.d -MT jpc_qmfb.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5R.obj -c ../H5R.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqenc.d -MT jpc_mqenc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Rdeprec.obj -c ../H5Rdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqdec.d -MT jpc_mqdec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5UC.obj -c ../H5UC.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqcod.d -MT jpc_mqcod.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mct.d -MT jpc_mct.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_math.d -MT jpc_math.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5RS.obj -c ../H5RS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_enc.d -MT jpc_enc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_dec.d -MT jpc_dec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5S.obj -c ../H5S.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_cs.d -MT jpc_cs.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_bs.d -MT jpc_bs.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Sall.obj -c ../H5Sall.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_enc.d -MT jp2_enc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Sdbg.obj -c ../H5Sdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_dec.d -MT jp2_dec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_cod.d -MT jp2_cod.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_version.d -MT jas_version.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tvp.d -MT jas_tvp.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tmr.d -MT jas_tmr.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_string.d -MT jas_string.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_stream.d -MT jas_stream.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_seq.d -MT jas_seq.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_malloc.d -MT jas_malloc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_init.d -MT jas_init.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_image.d -MT jas_image.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_iccdata.d -MT jas_iccdata.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_icc.d -MT jas_icc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_getopt.d -MT jas_getopt.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_debug.d -MT jas_debug.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_cm.d -MT jas_cm.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Shyper.obj -c ../H5Shyper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Snone.obj -c ../H5Snone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Spoint.obj -c ../H5Spoint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_cm.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c:68: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_debug.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c:69: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Sselect.obj -c ../H5Sselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Stest.obj -c ../H5Stest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_getopt.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_getopt.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c:77: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_icc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:63: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icctxtdesc_copy’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1072:20: warning: variable ‘txtdesc’ set but not used [-Wunused-but-set-variable] + 1072 | jas_icctxtdesc_t *txtdesc = &attrval->data.txtdesc; + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut8_copy’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1259:17: warning: variable ‘lut8’ set but not used [-Wunused-but-set-variable] + 1259 | jas_icclut8_t *lut8 = &attrval->data.lut8; + | ^~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SL.obj -c ../H5SL.c +../H5SL.c: In function ‘H5SL_term_package’: +../H5SL.c:655:21: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] + 655 | herr_t ret; + | ^~~ +In file included from ../H5SL.c:64: +../H5SL.c: In function ‘H5SL_search’: +../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 2267 | return(ret_value); \ + | ^ +../H5SL.c:1397:11: note: ‘ret_value’ was declared here + 1397 | void *ret_value; /* Return value */ + | ^~~~~~~~~ +In file included from ../H5SL.c:64: +../H5SL.c: In function ‘H5SL_find’: +../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 2267 | return(ret_value); \ + | ^ +../H5SL.c:1698:18: note: ‘ret_value’ was declared here + 1698 | H5SL_node_t *ret_value; /* Return value */ + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_iccdata.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c:62: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SM.obj -c ../H5SM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_image.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_math.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:80: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c: In function ‘jas_image_chclrspc’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1289:6: warning: variable ‘numoutchans’ set but not used [-Wunused-but-set-variable] + 1289 | int numoutchans; + | ^~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1282:6: warning: variable ‘numinauxchans’ set but not used [-Wunused-but-set-variable] + 1282 | int numinauxchans; + | ^~~~~~~~~~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SMbtree2.obj -c ../H5SMbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_init.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c:66: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_malloc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c:80: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SMcache.obj -c ../H5SMcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SMmessage.obj -c ../H5SMmessage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_seq.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:78: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SMtest.obj -c ../H5SMtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5ST.obj -c ../H5ST.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_stream.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c:89: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_string.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c:76: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_tmr.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_tmr.h:66, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c:76: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_tvp.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c:77: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_version.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_version.h:71, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c:62: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jp2_cod.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_stream.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:77: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5T.obj -c ../H5T.c +../H5T.c: In function ‘H5T_path_find’: +../H5T.c:4499:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 4499 | if(NULL == (path->src = H5T_copy(src, H5T_COPY_ALL))) + | ^~~ +../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) + | ~~~~~~~^~~~~~ +../H5T.c:4501:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 4501 | if(NULL == (path->dst = H5T_copy(dst, H5T_COPY_ALL))) + | ^~~ +../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) + | ~~~~~~~^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jp2_dec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_image.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c:74: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c: In function ‘jp2_decode’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c:107:14: warning: variable ‘cdefd’ set but not used [-Wunused-but-set-variable] + 107 | jp2_cdef_t *cdefd; + | ^~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tarray.obj -c ../H5Tarray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jp2_enc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c:75: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tbit.obj -c ../H5Tbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_bs.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c:78: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tcommit.obj -c ../H5Tcommit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tcompound.obj -c ../H5Tcompound.c +../H5Tcompound.c: In function ‘H5T__insert’: +../H5Tcompound.c:459:56: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 459 | parent->shared->u.compnd.memb[idx].type = H5T_copy(member, H5T_COPY_ALL); + | ^~~~~~ +In file included from ../H5Tpkg.h:37, + from ../H5Tcompound.c:33: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_cs.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:78: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_qcd_getparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:972:22: warning: ‘tmp’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 972 | compparms->numguard = (tmp >> 5) & 7; + | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:961:15: note: ‘tmp’ was declared here + 961 | uint_fast8_t tmp; + | ^~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_qcc_getparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:972:22: warning: ‘tmp’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 972 | compparms->numguard = (tmp >> 5) & 7; + | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:961:15: note: ‘tmp’ was declared here + 961 | uint_fast8_t tmp; + | ^~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:902:15: warning: ‘tmp’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 902 | qcc->compno = tmp; + | ~~~~~~~~~~~~^~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_dec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:76: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_process_crg’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:414:13: warning: variable ‘crg’ set but not used [-Wunused-but-set-variable] + 414 | jpc_crg_t *crg; + | ^~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_tileinit’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:659:16: warning: variable ‘brcbgyend’ set but not used [-Wunused-but-set-variable] + 659 | uint_fast32_t brcbgyend; + | ^~~~~~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_enc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:78: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_calcssmant’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:870:6: warning: variable ‘e’ set but not used [-Wunused-but-set-variable] + 870 | int e; + | ^ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainhdr’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:901:12: warning: variable ‘mctsynweight’ set but not used [-Wunused-but-set-variable] + 901 | jpc_fix_t mctsynweight; + | ^~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainbody’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1115:7: warning: variable ‘numbytes’ set but not used [-Wunused-but-set-variable] + 1115 | long numbytes; + | ^~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1101:6: warning: variable ‘tiley’ set but not used [-Wunused-but-set-variable] + 1101 | int tiley; + | ^~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1100:6: warning: variable ‘tilex’ set but not used [-Wunused-but-set-variable] + 1100 | int tilex; + | ^~~~~ +At top level: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:883:12: warning: ‘jpc_calcssexp’ defined but not used [-Wunused-function] + 883 | static int jpc_calcssexp(jpc_fix_t stepsize) + | ^~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:867:12: warning: ‘jpc_calcssmant’ defined but not used [-Wunused-function] + 867 | static int jpc_calcssmant(jpc_fix_t stepsize) + | ^~~~~~~~~~~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_math.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_mct.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c:76: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_mqcod.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c:74: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_mqdec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c:78: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_mqenc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_stream.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:77: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_qmfb.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_fix.h:81, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:82: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t1cod.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c:77: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t1dec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_fix.h:81, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c:78: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t1enc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_fix.h:81, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:78: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c: In function ‘jpc_enc_enccblk’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:205:18: warning: variable ‘rlvl’ set but not used [-Wunused-but-set-variable] + 205 | jpc_enc_rlvl_t *rlvl; + | ^~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:200:6: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] + 200 | int ret; + | ^~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t2cod.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_math.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c:70: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t2dec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c:78: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tconv.obj -c ../H5Tconv.c +../H5Tconv.c: In function ‘H5T_conv_struct_free’: +../H5Tconv.c:1876:17: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] + 1876 | int status; + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t2enc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_fix.h:81, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c:78: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tcset.obj -c ../H5Tcset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tdbg.obj -c ../H5Tdbg.c +../H5Tdbg.c: In function ‘H5T_debug’: +../H5Tdbg.c:428:4: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 428 | (unsigned long)(dt->shared->u.enumer.value + (i * base_size) + k)); + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_tagtree.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c:79: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tdeprec.obj -c ../H5Tdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tenum.obj -c ../H5Tenum.c +../H5Tenum.c: In function ‘H5T__enum_create’: +../H5Tenum.c:110:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 110 | ret_value->shared->parent = H5T_copy(parent, H5T_COPY_ALL); + | ^~~~~~ +In file included from ../H5Tpkg.h:37, + from ../H5Tenum.c:26: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Tenum.c: In function ‘H5T_enum_nameof’: +../H5Tenum.c:411:38: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 411 | if(NULL == (copied_dt = H5T_copy(dt, H5T_COPY_ALL))) + | ^~ +In file included from ../H5Tpkg.h:37, + from ../H5Tenum.c:26: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Tenum.c: In function ‘H5T_enum_valueof’: +../H5Tenum.c:550:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 550 | if (NULL==(copied_dt=H5T_copy(dt, H5T_COPY_ALL))) + | ^~ +In file included from ../H5Tpkg.h:37, + from ../H5Tenum.c:26: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_tsfb.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:76: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tfields.obj -c ../H5Tfields.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_util.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_math.h:77, + from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:79: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export + 20 | # pragma message( "JAS compiling as DLL export" ) + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c: In function ‘jpc_atoaf’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:11: warning: comparison between pointer and zero character constant [-Wpointer-compare] + 105 | if (cp != '\0') { + | ^~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:8: note: did you mean to dereference the pointer? + 105 | if (cp != '\0') { + | ^ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:12: warning: comparison between pointer and zero character constant [-Wpointer-compare] + 123 | if (cp != '\0') { + | ^~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:9: note: did you mean to dereference the pointer? + 123 | if (cp != '\0') { + | ^ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-windres -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jp2.rc jp2.coff +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o jp2.dll -shared -Wl,--out-implib,libjp2.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ jas_cm.obj jas_debug.obj jas_getopt.obj jas_icc.obj jas_iccdata.obj jas_image.obj jas_init.obj jas_malloc.obj jas_seq.obj jas_stream.obj jas_string.obj jas_tmr.obj jas_tvp.obj jas_version.obj jp2_cod.obj jp2_dec.obj jp2_enc.obj jpc_bs.obj jpc_cs.obj jpc_dec.obj jpc_enc.obj jpc_math.obj jpc_mct.obj jpc_mqcod.obj jpc_mqdec.obj jpc_mqenc.obj jpc_qmfb.obj jpc_t1cod.obj jpc_t1dec.obj jpc_t1enc.obj jpc_t2cod.obj jpc_t2dec.obj jpc_t2enc.obj jpc_tagtree.obj jpc_tsfb.obj jpc_util.obj jp2.coff -lws2_32 +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' +make -C ./jbig install +make -C ./libjbig install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tfixed.obj -c ../H5Tfixed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' +mkdir -p O.Common +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig_tab.d ../jbig_tab.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig.d ../jbig.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tfloat.obj -c ../H5Tfloat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tnative.obj -c ../H5Tnative.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Toffset.obj -c ../H5Toffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../jbig.c +../jbig.c: In function ‘jbg_dec_merge_planes’: +../jbig.c:3041:7: warning: variable ‘bpp’ set but not used [-Wunused-but-set-variable] + 3041 | int bpp; + | ^~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../jbig_tab.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +/usr/bin/ar -rc libjbig.a jbig.o jbig_tab.o +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +/usr/bin/ranlib libjbig.a +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +g++ -o libjbig.so -shared -fPIC -Wl,-hlibjbig.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jbig.o jbig_tab.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ + T_A=windows-x64-mingw install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig_tab.d -MT jbig_tab.obj ../jbig_tab.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Toh.obj -c ../H5Toh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig.d -MT jbig.obj ../jbig.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Topaque.obj -c ../H5Topaque.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Torder.obj -c ../H5Torder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tpad.obj -c ../H5Tpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o jbig.obj -c ../jbig.c +In file included from ../jbig.c:52: +../jbig.h:255: warning: ignoring #pragma warning [-Wunknown-pragmas] + 255 | # pragma warning( disable : 4273 ) + | +../jbig.h:267: warning: ignoring #pragma warning [-Wunknown-pragmas] + 267 | # pragma warning( disable : 4018 ) + | +../jbig.h:268: warning: ignoring #pragma warning [-Wunknown-pragmas] + 268 | # pragma warning( disable : 4244 ) + | +../jbig.h:269: warning: ignoring #pragma warning [-Wunknown-pragmas] + 269 | # pragma warning( disable : 4142 ) + | +../jbig.c:704:15: warning: ‘jbg_ceil_half’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 704 | unsigned long jbg_ceil_half(unsigned long x, int n) + | ^~~~~~~~~~~~~ +../jbig.c:744:6: warning: ‘jbg_enc_init’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 744 | void jbg_enc_init(struct jbg_enc_state *s, unsigned long x, unsigned long y, + | ^~~~~~~~~~~~ +../jbig.c:810:5: warning: ‘jbg_enc_lrlmax’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 810 | int jbg_enc_lrlmax(struct jbg_enc_state *s, unsigned long x, + | ^~~~~~~~~~~~~~ +../jbig.c:828:6: warning: ‘jbg_enc_layers’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 828 | void jbg_enc_layers(struct jbg_enc_state *s, int d) + | ^~~~~~~~~~~~~~ +../jbig.c:847:5: warning: ‘jbg_enc_lrange’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 847 | int jbg_enc_lrange(struct jbg_enc_state *s, int dl, int dh) + | ^~~~~~~~~~~~~~ +../jbig.c:861:6: warning: ‘jbg_enc_options’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 861 | void jbg_enc_options(struct jbg_enc_state *s, int order, int options, + | ^~~~~~~~~~~~~~~ +../jbig.c:1682:6: warning: ‘jbg_int2dppriv’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 1682 | void jbg_int2dppriv(unsigned char *dptable, const char *internal) + | ^~~~~~~~~~~~~~ +../jbig.c:1715:6: warning: ‘jbg_dppriv2int’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 1715 | void jbg_dppriv2int(char *internal, const unsigned char *dptable) + | ^~~~~~~~~~~~~~ +../jbig.c:1745:6: warning: ‘jbg_enc_out’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 1745 | void jbg_enc_out(struct jbg_enc_state *s) + | ^~~~~~~~~~~ +../jbig.c:1923:6: warning: ‘jbg_enc_free’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 1923 | void jbg_enc_free(struct jbg_enc_state *s) + | ^~~~~~~~~~~~ +../jbig.c:1977:13: warning: ‘jbg_strerror’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 1977 | const char *jbg_strerror(int errnum, int language) + | ^~~~~~~~~~~~ +../jbig.c:1991:6: warning: ‘jbg_dec_init’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 1991 | void jbg_dec_init(struct jbg_dec_state *s) + | ^~~~~~~~~~~~ +../jbig.c:2014:6: warning: ‘jbg_dec_maxsize’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 2014 | void jbg_dec_maxsize(struct jbg_dec_state *s, unsigned long xmax, + | ^~~~~~~~~~~~~~~ +../jbig.c:2503:5: warning: ‘jbg_dec_in’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 2503 | int jbg_dec_in(struct jbg_dec_state *s, unsigned char *data, size_t len, + | ^~~~~~~~~~ +../jbig.c:2830:6: warning: ‘jbg_dec_getwidth’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 2830 | long jbg_dec_getwidth(const struct jbg_dec_state *s) + | ^~~~~~~~~~~~~~~~ +../jbig.c:2849:6: warning: ‘jbg_dec_getheight’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 2849 | long jbg_dec_getheight(const struct jbg_dec_state *s) + | ^~~~~~~~~~~~~~~~~ +../jbig.c:2868:16: warning: ‘jbg_dec_getimage’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 2868 | unsigned char *jbg_dec_getimage(const struct jbg_dec_state *s, int plane) + | ^~~~~~~~~~~~~~~~ +../jbig.c:2888:6: warning: ‘jbg_dec_getsize’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 2888 | long jbg_dec_getsize(const struct jbg_dec_state *s) + | ^~~~~~~~~~~~~~~ +../jbig.c:2910:6: warning: ‘jbg_dec_getsize_merged’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 2910 | long jbg_dec_getsize_merged(const struct jbg_dec_state *s) + | ^~~~~~~~~~~~~~~~~~~~~~ +../jbig.c:2932:6: warning: ‘jbg_dec_free’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 2932 | void jbg_dec_free(struct jbg_dec_state *s) + | ^~~~~~~~~~~~ +../jbig.c:2975:6: warning: ‘jbg_split_planes’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 2975 | void jbg_split_planes(unsigned long x, unsigned long y, int has_planes, + | ^~~~~~~~~~~~~~~~ +../jbig.c:3036:6: warning: ‘jbg_dec_merge_planes’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 3036 | void jbg_dec_merge_planes(const struct jbg_dec_state *s, int use_graycode, + | ^~~~~~~~~~~~~~~~~~~~ +../jbig.c: In function ‘jbg_dec_merge_planes’: +../jbig.c:3041:7: warning: variable ‘bpp’ set but not used [-Wunused-but-set-variable] + 3041 | int bpp; + | ^~~ +../jbig.c: At top level: +../jbig.c:3165:5: warning: ‘jbg_newlen’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] + 3165 | int jbg_newlen(unsigned char *bie, size_t len) + | ^~~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o jbig_tab.obj -c ../jbig_tab.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-windres -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc ../jbig.rc jbig.coff +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tprecis.obj -c ../H5Tprecis.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o jbig.dll -shared -Wl,--out-implib,libjbig.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ jbig.obj jbig_tab.obj jbig.coff -lws2_32 +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' +make -C ./magick install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' +mkdir -p O.Common +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF analyze_Linux.d ../analyze_Linux.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF xwindow.d ../xwindow.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF widget.d ../widget.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tstrpad.obj -c ../H5Tstrpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF version.d ../version.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF utility.d ../utility.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF unix_port.d ../unix_port.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type.d ../type.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tsd.d ../tsd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF transform.d ../transform.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF timer.d ../timer.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF texture.d ../texture.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tempfile.d ../tempfile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF statistics.d ../statistics.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tvisit.obj -c ../H5Tvisit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF signature.d ../signature.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF shear.d ../shear.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF semaphore.d ../semaphore.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF segment.d ../segment.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resource.d ../resource.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resize.d ../resize.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF render.d ../render.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF registry.d ../registry.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF random.d ../random.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF quantize.d ../quantize.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF profile.d ../profile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF PreRvIcccm.d ../PreRvIcccm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF plasma.d ../plasma.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_iterator.d ../pixel_iterator.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_cache.d ../pixel_cache.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tvlen.obj -c ../H5Tvlen.c +../H5Tvlen.c: In function ‘H5T__vlen_create’: +../H5Tvlen.c:142:47: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 142 | if(NULL == (dt->shared->parent = H5T_copy(base, H5T_COPY_ALL))) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Tvlen.c:23: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF paint.d ../paint.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF operator.d ../operator.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF omp_data_view.d ../omp_data_view.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_feature.d ../nt_feature.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_base.d ../nt_base.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF montage.d ../montage.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF monitor.d ../monitor.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF module.d ../module.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF memory.d ../memory.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5TS.obj -c ../H5TS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF map.d ../map.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick_endian.d ../magick_endian.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick.d ../magick.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magic.d ../magic.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF log.d ../log.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF locale.d ../locale.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF list.d ../list.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF import.d ../import.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF image.d ../image.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF hclut.d ../hclut.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gradient.d ../gradient.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gem.d ../gem.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fx.d ../fx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF floats.d ../floats.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF export.d ../export.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF error.d ../error.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enum_strings.d ../enum_strings.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5VM.obj -c ../H5VM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enhance.d ../enhance.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF effect.d ../effect.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF draw.d ../draw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF display.d ../display.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF describe.d ../describe.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF deprecate.d ../deprecate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF delegate.d ../delegate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF decorate.d ../decorate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF constitute.d ../constitute.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5WB.obj -c ../H5WB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF confirm_access.d ../confirm_access.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compress.d ../compress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF composite.d ../composite.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compare.d ../compare.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF command.d ../command.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color_lookup.d ../color_lookup.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colorspace.d ../colorspace.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colormap.d ../colormap.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color.d ../color.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF channel.d ../channel.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cdl.d ../cdl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF blob.d ../blob.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bit_stream.d ../bit_stream.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF average.d ../average.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF attribute.d ../attribute.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF annotate.d ../annotate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF animate.d ../animate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Z.obj -c ../H5Z.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +mkdir ../../../../include/magick +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zdeflate.obj -c ../H5Zdeflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zfletcher32.obj -c ../H5Zfletcher32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Znbit.obj -c ../H5Znbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../animate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../annotate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../attribute.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../average.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../bit_stream.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zscaleoffset.obj -c ../H5Zscaleoffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zshuffle.obj -c ../H5Zshuffle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../blob.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../cdl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zszip.obj -c ../H5Zszip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../channel.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../color.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../colormap.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../colorspace.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../color_lookup.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ztrans.obj -c ../H5Ztrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tinit.obj -c ../os/WIN32/H5Tinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5lib_settings.obj -c ../H5lib_settings.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosc_filter.obj -c ../blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jpeg_h5filter.obj -c ../jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5detect.obj -c ../H5detect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o hdf5.dll -shared -Wl,--out-implib,libhdf5.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ H5.obj H5checksum.obj H5dbg.obj H5system.obj H5timer.obj H5trace.obj H5A.obj H5Abtree2.obj H5Adense.obj H5Adeprec.obj H5Aint.obj H5Atest.obj H5AC.obj H5AClog.obj H5ACdbg.obj H5ACproxy_entry.obj H5B.obj H5Bcache.obj H5Bdbg.obj H5B2.obj H5B2cache.obj H5B2dbg.obj H5B2hdr.obj H5B2int.obj H5B2internal.obj H5B2leaf.obj H5B2stat.obj H5B2test.obj H5C.obj H5Cdbg.obj H5Cepoch.obj H5Cimage.obj H5Clog.obj H5Cprefetched.obj H5Cquery.obj H5Ctag.obj H5Ctest.obj H5CS.obj H5D.obj H5Dbtree.obj H5Dbtree2.obj H5Dchunk.obj H5Dcompact.obj H5Dcontig.obj H5Ddbg.obj H5Ddeprec.obj H5Dearray.obj H5Defl.obj H5Dfarray.obj H5Dfill.obj H5Dint.obj H5Dio.obj H5Dlayout.obj H5Dnone.obj H5Doh.obj H5Dscatgath.obj H5Dselect.obj H5Dsingle.obj H5Dtest.obj H5Dvirtual.obj H5E.obj H5Edeprec.obj H5Eint.obj H5EA.obj H5EAcache.obj H5EAdbg.obj H5EAdblkpage.obj H5EAdblock.obj H5EAhdr.obj H5EAiblock.obj H5EAint.obj H5EAsblock.obj H5EAstat.obj H5EAtest.obj H5F.obj H5Faccum.obj H5Fcwfs.obj H5Fdbg.obj H5Fdeprec.obj H5Fefc.obj H5Ffake.obj H5Fint.obj H5Fio.obj H5Fmount.obj H5Fquery.obj H5Fsfile.obj H5Fspace.obj H5Fsuper.obj H5Fsuper_cache.obj H5Ftest.obj H5FA.obj H5FAcache.obj H5FAdbg.obj H5FAdblock.obj H5FAdblkpage.obj H5FAhdr.obj H5FAint.obj H5FAstat.obj H5FAtest.obj H5FD.obj H5FDcore.obj H5FDfamily.obj H5FDint.obj H5FDlog.obj H5FDmulti.obj H5FDsec2.obj H5FDspace.obj H5FDstdio.obj H5FDtest.obj H5FL.obj H5FO.obj H5FS.obj H5FScache.obj H5FSdbg.obj H5FSint.obj H5FSsection.obj H5FSstat.obj H5FStest.obj H5G.obj H5Gbtree2.obj H5Gcache.obj H5Gcompact.obj H5Gdense.obj H5Gdeprec.obj H5Gent.obj H5Gint.obj H5Glink.obj H5Gloc.obj H5Gname.obj H5Gnode.obj H5Gobj.obj H5Goh.obj H5Groot.obj H5Gstab.obj H5Gtest.obj H5Gtraverse.obj H5HF.obj H5HFbtree2.obj H5HFcache.obj H5HFdbg.obj H5HFdblock.obj H5HFdtable.obj H5HFhdr.obj H5HFhuge.obj H5HFiblock.obj H5HFiter.obj H5HFman.obj H5HFsection.obj H5HFspace.obj H5HFstat.obj H5HFtest.obj H5HFtiny.obj H5HG.obj H5HGcache.obj H5HGdbg.obj H5HGquery.obj H5HL.obj H5HLcache.obj H5HLdbg.obj H5HLint.obj H5HLprfx.obj H5HLdblk.obj H5HP.obj H5I.obj H5Itest.obj H5L.obj H5Lexternal.obj H5MF.obj H5MFaggr.obj H5MFdbg.obj H5MFsection.obj H5MM.obj H5MP.obj H5MPtest.obj H5O.obj H5Oainfo.obj H5Oalloc.obj H5Oattr.obj H5Oattribute.obj H5Obogus.obj H5Obtreek.obj H5Ocache.obj H5Ocache_image.obj H5Ochunk.obj H5Ocont.obj H5Ocopy.obj H5Odbg.obj H5Odrvinfo.obj H5Odtype.obj H5Oefl.obj H5Ofill.obj H5Oflush.obj H5Ofsinfo.obj H5Oginfo.obj H5Olayout.obj H5Olinfo.obj H5Olink.obj H5Omessage.obj H5Omtime.obj H5Oname.obj H5Onull.obj H5Opline.obj H5Orefcount.obj H5Osdspace.obj H5Oshared.obj H5Oshmesg.obj H5Ostab.obj H5Otest.obj H5Ounknown.obj H5P.obj H5Pacpl.obj H5Pdapl.obj H5Pdcpl.obj H5Pdeprec.obj H5Pdxpl.obj H5Pencdec.obj H5Pfapl.obj H5Pfcpl.obj H5Pfmpl.obj H5Pgcpl.obj H5Pint.obj H5Plapl.obj H5Plcpl.obj H5Pocpl.obj H5Pocpypl.obj H5Pstrcpl.obj H5Ptest.obj H5PB.obj H5PL.obj H5R.obj H5Rdeprec.obj H5UC.obj H5RS.obj H5S.obj H5Sall.obj H5Sdbg.obj H5Shyper.obj H5Snone.obj H5Spoint.obj H5Sselect.obj H5Stest.obj H5SL.obj H5SM.obj H5SMbtree2.obj H5SMcache.obj H5SMmessage.obj H5SMtest.obj H5ST.obj H5T.obj H5Tarray.obj H5Tbit.obj H5Tcommit.obj H5Tcompound.obj H5Tconv.obj H5Tcset.obj H5Tdbg.obj H5Tdeprec.obj H5Tenum.obj H5Tfields.obj H5Tfixed.obj H5Tfloat.obj H5Tnative.obj H5Toffset.obj H5Toh.obj H5Topaque.obj H5Torder.obj H5Tpad.obj H5Tprecis.obj H5Tstrpad.obj H5Tvisit.obj H5Tvlen.obj H5TS.obj H5VM.obj H5WB.obj H5Z.obj H5Zdeflate.obj H5Zfletcher32.obj H5Znbit.obj H5Zscaleoffset.obj H5Zshuffle.obj H5Zszip.obj H5Ztrans.obj H5Tinit.obj H5lib_settings.obj blosc_filter.obj jpeg_h5filter.obj -lszip -lzlib -lblosc -ljpeg -lws2_32 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o H5detect.exe -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ H5detect.obj -lnetapi32 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../compare.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../command.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../compress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../confirm_access.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../composite.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../constitute.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../decorate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../deprecate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../delegate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../describe.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../draw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../effect.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../enhance.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make -C ./hdf5_hlSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5TB.d ../H5TB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../display.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5PT.d ../H5PT.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTparse.d ../H5LTparse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTanalyze.d ../H5LTanalyze.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LT.d ../H5LT.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LD.d ../H5LD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5IM.d ../H5IM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DS.d ../H5DS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DO.d ../H5DO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../enum_strings.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../error.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5DO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5DS.c +../H5DS.c: In function ‘H5DSset_label’: +../H5DS.c:1436:7: warning: ‘u.buf’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1436 | } u; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5IM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LT.c +In file included from /usr/include/string.h:495, + from ../H5LT.c:17: +In function ‘strncat’, + inlined from ‘realloc_and_append’ at ../H5LT.c:2296:4, + inlined from ‘indentation’ at ../H5LT.c:2337:16: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output may be truncated copying between 0 and 255 bytes from a string of length 255 [-Wstringop-truncation] + 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LTanalyze.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LTparse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5PT.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5TB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +/usr/bin/ar -rc libhdf5_hl.a H5DO.o H5DS.o H5IM.o H5LD.o H5LT.o H5LTanalyze.o H5LTparse.o H5PT.o H5TB.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +/usr/bin/ranlib libhdf5_hl.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +g++ -o libhdf5_hl.so -shared -fPIC -Wl,-hlibhdf5_hl.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 H5DO.o H5DS.o H5IM.o H5LD.o H5LT.o H5LTanalyze.o H5LTparse.o H5PT.o H5TB.o -lhdf5 -lszip -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5TB.d -MT H5TB.obj ../H5TB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5PT.d -MT H5PT.obj ../H5PT.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTparse.d -MT H5LTparse.obj ../H5LTparse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTanalyze.d -MT H5LTanalyze.obj ../H5LTanalyze.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LT.d -MT H5LT.obj ../H5LT.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LD.d -MT H5LD.obj ../H5LD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5IM.d -MT H5IM.obj ../H5IM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DS.d -MT H5DS.obj ../H5DS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DO.d -MT H5DO.obj ../H5DO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5DO.obj -c ../H5DO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5DS.obj -c ../H5DS.c +../H5DS.c: In function ‘H5DSset_label’: +../H5DS.c:1436:7: warning: ‘u.buf’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1436 | } u; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5IM.obj -c ../H5IM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5LD.obj -c ../H5LD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5LT.obj -c ../H5LT.c +In file included from ../H5HLprivate2.h:24, + from ../H5LTprivate.h:18, + from ../H5LT.c:19: +In function ‘realloc_and_append’, + inlined from ‘indentation’ at ../H5LT.c:2337:16: +../../hdf5Src/H5private.h:1358:31: warning: ‘strncat’ output may be truncated copying between 0 and 255 bytes from a string of length 255 [-Wstringop-truncation] + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5LT.c:2296:4: note: in expansion of macro ‘HDstrncat’ + 2296 | HDstrncat(buf, str_to_add, size_str_to_add); + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5LTanalyze.obj -c ../H5LTanalyze.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5LTparse.obj -c ../H5LTparse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5PT.obj -c ../H5PT.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5TB.obj -c ../H5TB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o hdf5_hl.dll -shared -Wl,--out-implib,libhdf5_hl.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ H5DO.obj H5DS.obj H5IM.obj H5LD.obj H5LT.obj H5LTanalyze.obj H5LTparse.obj H5PT.obj H5TB.obj -lhdf5 -lszip -lzlib -lws2_32 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' +make -C ./hdf5PluginSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5plugin.d ../jpeg_h5plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d ../../../supportApp/hdf5Src/jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_plugin.d ../blosc_plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../export.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d ../../../supportApp/hdf5Src/blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../floats.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/hdf5Src/blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../blosc_plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/hdf5Src/jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jpeg_h5plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +g++ -o libHDF5_blosc_plugin.so -shared -fPIC -Wl,-hlibHDF5_blosc_plugin.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 blosc_filter.o blosc_plugin.o -lhdf5 -lblosc -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +g++ -o libHDF5_jpeg_plugin.so -shared -fPIC -Wl,-hlibHDF5_jpeg_plugin.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jpeg_h5filter.o jpeg_h5plugin.o -lhdf5 -ljpeg -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5plugin.d -MT jpeg_h5plugin.obj ../jpeg_h5plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../fx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d -MT jpeg_h5filter.obj ../../../supportApp/hdf5Src/jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_plugin.d -MT blosc_plugin.obj ../blosc_plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d -MT blosc_filter.obj ../../../supportApp/hdf5Src/blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosc_filter.obj -c ../../../supportApp/hdf5Src/blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../gem.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosc_plugin.obj -c ../blosc_plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jpeg_h5filter.obj -c ../../../supportApp/hdf5Src/jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../gradient.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jpeg_h5plugin.obj -c ../jpeg_h5plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o HDF5_blosc_plugin.dll -shared -Wl,--out-implib,libHDF5_blosc_plugin.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ blosc_filter.obj blosc_plugin.obj -lhdf5 -lblosc -lws2_32 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../hclut.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o HDF5_jpeg_plugin.dll -shared -Wl,--out-implib,libHDF5_jpeg_plugin.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ jpeg_h5filter.obj jpeg_h5plugin.obj -lhdf5 -ljpeg -lws2_32 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' +make -C ./netCDFSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_initialize.d ../../../supportApp/netCDFSrc/liblib/nc_initialize.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF utf8proc.d ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutil.d ../../../supportApp/netCDFSrc/libdispatch/dutil.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dwinpath.d ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF doffsets.d ../../../supportApp/netCDFSrc/libdispatch/doffsets.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dauth.d ../../../supportApp/netCDFSrc/libdispatch/dauth.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF drc.d ../../../supportApp/netCDFSrc/libdispatch/drc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclistmgr.d ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc.d ../../../supportApp/netCDFSrc/libdispatch/nc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nctime.d ../../../supportApp/netCDFSrc/libdispatch/nctime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nchashmap.d ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncbytes.d ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclist.d ../../../supportApp/netCDFSrc/libdispatch/nclist.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncuri.d ../../../supportApp/netCDFSrc/libdispatch/ncuri.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dstring.d ../../../supportApp/netCDFSrc/libdispatch/dstring.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclog.d ../../../supportApp/netCDFSrc/libdispatch/nclog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutf8.d ../../../supportApp/netCDFSrc/libdispatch/dutf8.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddispatch.d ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dinternal.d ../../../supportApp/netCDFSrc/libdispatch/dinternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarinq.d ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarput.d ../../../supportApp/netCDFSrc/libdispatch/dvarput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarget.d ../../../supportApp/netCDFSrc/libdispatch/dvarget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvar.d ../../../supportApp/netCDFSrc/libdispatch/dvar.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF derror.d ../../../supportApp/netCDFSrc/libdispatch/derror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../image.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattget.d ../../../supportApp/netCDFSrc/libdispatch/dattget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattput.d ../../../supportApp/netCDFSrc/libdispatch/dattput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattinq.d ../../../supportApp/netCDFSrc/libdispatch/dattinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF datt.d ../../../supportApp/netCDFSrc/libdispatch/datt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddim.d ../../../supportApp/netCDFSrc/libdispatch/ddim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dfile.d ../../../supportApp/netCDFSrc/libdispatch/dfile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dcopy.d ../../../supportApp/netCDFSrc/libdispatch/dcopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dparallel.d ../../../supportApp/netCDFSrc/libdispatch/dparallel.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF posixio.d ../../../supportApp/netCDFSrc/libsrc/posixio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF memio.d ../../../supportApp/netCDFSrc/libsrc/memio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncio.d ../../../supportApp/netCDFSrc/libsrc/ncio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lookup3.d ../../../supportApp/netCDFSrc/libsrc/lookup3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_hashmap.d ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncx.d ../../../supportApp/netCDFSrc/libsrc/ncx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dim.d ../../../supportApp/netCDFSrc/libsrc/dim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF var.d ../../../supportApp/netCDFSrc/libsrc/var.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3internal.d ../../../supportApp/netCDFSrc/libsrc/nc3internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3dispatch.d ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF attr.d ../../../supportApp/netCDFSrc/libsrc/attr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF putget.d ../../../supportApp/netCDFSrc/libsrc/putget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF v1hpg.d ../../../supportApp/netCDFSrc/libsrc/v1hpg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/v1hpg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../import.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/putget.c +putget.m4: In function ‘putNCvx_char_char’: +putget.m4:754:15: warning: unused variable ‘fillp’ [-Wunused-variable] +At top level: +putget.m4:912:1: warning: ‘getNCvx_char_char’ defined but not used [-Wunused-function] +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../list.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../locale.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/attr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../log.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../magic.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/nc3internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../magick.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/var.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../magick_endian.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/dim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../map.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../memory.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../module.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../monitor.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../montage.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../nt_base.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../nt_feature.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../omp_data_view.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../operator.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../paint.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/ncx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../pixel_cache.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/lookup3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../pixel_iterator.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/ncio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/memio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../plasma.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../PreRvIcccm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/posixio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../profile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dparallel.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dcopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dfile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ddim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/datt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dattinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dattput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../quantize.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dattget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/derror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../random.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvar.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../registry.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvarget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvarput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dinternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dutf8.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nclog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dstring.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ncuri.c +In file included from /usr/include/string.h:495, + from ../../../supportApp/netCDFSrc/libdispatch/ncuri.c:8: +In function ‘strncpy’, + inlined from ‘ncuriparse’ at ../../../supportApp/netCDFSrc/libdispatch/ncuri.c:153:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/ncuri.c: In function ‘ncuriparse’: +../../../supportApp/netCDFSrc/libdispatch/ncuri.c:137:12: note: length computed here + 137 | len0 = strlen(uri0); + | ^~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nclist.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nctime.c +../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdParseRelunits’: +../../../supportApp/netCDFSrc/libdispatch/nctime.c:384:25: warning: ‘%s’ directive writing up to 47 bytes into a region of size between 0 and 47 [-Wformat-overflow=] + 384 | sprintf(basetime,"%s %s",basetime_1,basetime_2); + | ^~ ~~~~~~~~~~ +In file included from /usr/include/stdio.h:867, + from ../../../supportApp/netCDFSrc/libdispatch/nctime.c:20: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output between 2 and 96 bytes into a destination of size 48 + 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 37 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdComp2Rel.constprop’: +../../../supportApp/netCDFSrc/libdispatch/nctime.c:877:15: warning: ‘ndel’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 877 | *reltime = (double)ndel; + | ^~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c:871:19: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 871 | *reltime = delta/168.0; + | ~~~~~^~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdRel2Comp’: +../../../supportApp/netCDFSrc/libdispatch/nctime.c:1073:3: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1073 | Cde2h(base_etm+delta, old_timetype, 1970, &humantime); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdRel2Iso’: +../../../supportApp/netCDFSrc/libdispatch/nctime.c:1073:3: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1073 | Cde2h(base_etm+delta, old_timetype, 1970, &humantime); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c:983:9: note: ‘delta’ was declared here + 983 | double delta; + | ^~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/drc.c +In file included from /usr/include/string.h:495, + from ../../../supportApp/netCDFSrc/libdispatch/drc.c:15: +In function ‘strncpy’, + inlined from ‘rcsearch’ at ../../../supportApp/netCDFSrc/libdispatch/drc.c:403:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/drc.c: In function ‘rcsearch’: +../../../supportApp/netCDFSrc/libdispatch/drc.c:396:16: note: length computed here + 396 | int plen = strlen(prefix); + | ^~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dauth.c +In file included from /usr/include/string.h:495, + from ../../../supportApp/netCDFSrc/libdispatch/dauth.c:10: +In function ‘strncpy’, + inlined from ‘NC_combinehostport’ at ../../../supportApp/netCDFSrc/libdispatch/dauth.c:82:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/doffsets.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dutil.c +In file included from /usr/include/string.h:495, + from ../../../supportApp/netCDFSrc/libdispatch/dutil.c:8: +In function ‘strncpy’, + inlined from ‘NC_mktmp’ at ../../../supportApp/netCDFSrc/libdispatch/dutil.c:210:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 4096 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../render.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/liblib/nc_initialize.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../test_big_classic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../resize.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +/usr/bin/ar -rc libnetCDF.a v1hpg.o putget.o attr.o nc3dispatch.o nc3internal.o var.o dim.o ncx.o nc_hashmap.o lookup3.o ncio.o memio.o posixio.o dparallel.o dcopy.o dfile.o ddim.o datt.o dattinq.o dattput.o dattget.o derror.o dvar.o dvarget.o dvarput.o dvarinq.o dinternal.o ddispatch.o dutf8.o nclog.o dstring.o ncuri.o nclist.o ncbytes.o nchashmap.o nctime.o nc.o nclistmgr.o drc.o dauth.o doffsets.o dwinpath.o dutil.o utf8proc.o nc_initialize.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +/usr/bin/ranlib libnetCDF.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +g++ -o libnetCDF.so -shared -fPIC -Wl,-hlibnetCDF.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 v1hpg.o putget.o attr.o nc3dispatch.o nc3internal.o var.o dim.o ncx.o nc_hashmap.o lookup3.o ncio.o memio.o posixio.o dparallel.o dcopy.o dfile.o ddim.o datt.o dattinq.o dattput.o dattget.o derror.o dvar.o dvarget.o dvarput.o dvarinq.o dinternal.o ddispatch.o dutf8.o nclog.o dstring.o ncuri.o nclist.o ncbytes.o nchashmap.o nctime.o nc.o nclistmgr.o drc.o dauth.o doffsets.o dwinpath.o dutil.o utf8proc.o nc_initialize.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../resource.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +g++ -o test_big_classic -Wl,-Bstatic -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 test_big_classic.o -lnetCDF -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_initialize.d -MT nc_initialize.obj ../../../supportApp/netCDFSrc/liblib/nc_initialize.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF utf8proc.d -MT utf8proc.obj ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutil.d -MT dutil.obj ../../../supportApp/netCDFSrc/libdispatch/dutil.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dwinpath.d -MT dwinpath.obj ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF doffsets.d -MT doffsets.obj ../../../supportApp/netCDFSrc/libdispatch/doffsets.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dauth.d -MT dauth.obj ../../../supportApp/netCDFSrc/libdispatch/dauth.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF drc.d -MT drc.obj ../../../supportApp/netCDFSrc/libdispatch/drc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclistmgr.d -MT nclistmgr.obj ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc.d -MT nc.obj ../../../supportApp/netCDFSrc/libdispatch/nc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nctime.d -MT nctime.obj ../../../supportApp/netCDFSrc/libdispatch/nctime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nchashmap.d -MT nchashmap.obj ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncbytes.d -MT ncbytes.obj ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclist.d -MT nclist.obj ../../../supportApp/netCDFSrc/libdispatch/nclist.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncuri.d -MT ncuri.obj ../../../supportApp/netCDFSrc/libdispatch/ncuri.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dstring.d -MT dstring.obj ../../../supportApp/netCDFSrc/libdispatch/dstring.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclog.d -MT nclog.obj ../../../supportApp/netCDFSrc/libdispatch/nclog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutf8.d -MT dutf8.obj ../../../supportApp/netCDFSrc/libdispatch/dutf8.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddispatch.d -MT ddispatch.obj ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dinternal.d -MT dinternal.obj ../../../supportApp/netCDFSrc/libdispatch/dinternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarinq.d -MT dvarinq.obj ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarput.d -MT dvarput.obj ../../../supportApp/netCDFSrc/libdispatch/dvarput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarget.d -MT dvarget.obj ../../../supportApp/netCDFSrc/libdispatch/dvarget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvar.d -MT dvar.obj ../../../supportApp/netCDFSrc/libdispatch/dvar.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../segment.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF derror.d -MT derror.obj ../../../supportApp/netCDFSrc/libdispatch/derror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattget.d -MT dattget.obj ../../../supportApp/netCDFSrc/libdispatch/dattget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattput.d -MT dattput.obj ../../../supportApp/netCDFSrc/libdispatch/dattput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattinq.d -MT dattinq.obj ../../../supportApp/netCDFSrc/libdispatch/dattinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF datt.d -MT datt.obj ../../../supportApp/netCDFSrc/libdispatch/datt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddim.d -MT ddim.obj ../../../supportApp/netCDFSrc/libdispatch/ddim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dfile.d -MT dfile.obj ../../../supportApp/netCDFSrc/libdispatch/dfile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../semaphore.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dcopy.d -MT dcopy.obj ../../../supportApp/netCDFSrc/libdispatch/dcopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dparallel.d -MT dparallel.obj ../../../supportApp/netCDFSrc/libdispatch/dparallel.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF posixio.d -MT posixio.obj ../../../supportApp/netCDFSrc/libsrc/posixio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../shear.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF memio.d -MT memio.obj ../../../supportApp/netCDFSrc/libsrc/memio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncio.d -MT ncio.obj ../../../supportApp/netCDFSrc/libsrc/ncio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lookup3.d -MT lookup3.obj ../../../supportApp/netCDFSrc/libsrc/lookup3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_hashmap.d -MT nc_hashmap.obj ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../signature.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncx.d -MT ncx.obj ../../../supportApp/netCDFSrc/libsrc/ncx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dim.d -MT dim.obj ../../../supportApp/netCDFSrc/libsrc/dim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF var.d -MT var.obj ../../../supportApp/netCDFSrc/libsrc/var.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3internal.d -MT nc3internal.obj ../../../supportApp/netCDFSrc/libsrc/nc3internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3dispatch.d -MT nc3dispatch.obj ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF attr.d -MT attr.obj ../../../supportApp/netCDFSrc/libsrc/attr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF putget.d -MT putget.obj ../../../supportApp/netCDFSrc/libsrc/putget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../statistics.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF v1hpg.d -MT v1hpg.obj ../../../supportApp/netCDFSrc/libsrc/v1hpg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../tempfile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../texture.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../timer.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o v1hpg.obj -c ../../../supportApp/netCDFSrc/libsrc/v1hpg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../transform.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../tsd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../type.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../unix_port.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../utility.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o putget.obj -c ../../../supportApp/netCDFSrc/libsrc/putget.c +putget.m4: In function ‘putNCvx_char_char’: +putget.m4:754:15: warning: unused variable ‘fillp’ [-Wunused-variable] +At top level: +putget.m4:912:1: warning: ‘getNCvx_char_char’ defined but not used [-Wunused-function] +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../version.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o attr.obj -c ../../../supportApp/netCDFSrc/libsrc/attr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc3dispatch.obj -c ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc3internal.obj -c ../../../supportApp/netCDFSrc/libsrc/nc3internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o var.obj -c ../../../supportApp/netCDFSrc/libsrc/var.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dim.obj -c ../../../supportApp/netCDFSrc/libsrc/dim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../widget.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ncx.obj -c ../../../supportApp/netCDFSrc/libsrc/ncx.c +ncx.m4: In function ‘ncx_put_off_t’: +ncx.m4:2299:51: warning: right shift count >= width of type [-Wshift-count-overflow] +ncx.m4: In function ‘ncx_get_off_t’: +ncx.m4:2356:26: warning: left shift count >= width of type [-Wshift-count-overflow] +ncx.m4:2357:26: warning: left shift count >= width of type [-Wshift-count-overflow] +ncx.m4:2358:26: warning: left shift count >= width of type [-Wshift-count-overflow] +ncx.m4:2359:26: warning: left shift count >= width of type [-Wshift-count-overflow] +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc_hashmap.obj -c ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o lookup3.obj -c ../../../supportApp/netCDFSrc/libsrc/lookup3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ncio.obj -c ../../../supportApp/netCDFSrc/libsrc/ncio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o memio.obj -c ../../../supportApp/netCDFSrc/libsrc/memio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../xwindow.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o posixio.obj -c ../../../supportApp/netCDFSrc/libsrc/posixio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dparallel.obj -c ../../../supportApp/netCDFSrc/libdispatch/dparallel.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../analyze_Linux.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dcopy.obj -c ../../../supportApp/netCDFSrc/libdispatch/dcopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +/usr/bin/ar -rc libMagick.a animate.o annotate.o attribute.o average.o bit_stream.o blob.o cdl.o channel.o color.o colormap.o colorspace.o color_lookup.o command.o compare.o composite.o compress.o confirm_access.o constitute.o decorate.o delegate.o deprecate.o describe.o display.o draw.o effect.o enhance.o enum_strings.o error.o export.o floats.o fx.o gem.o gradient.o hclut.o image.o import.o list.o locale.o log.o magic.o magick.o magick_endian.o map.o memory.o module.o monitor.o montage.o nt_base.o nt_feature.o omp_data_view.o operator.o paint.o pixel_cache.o pixel_iterator.o plasma.o PreRvIcccm.o profile.o quantize.o random.o registry.o render.o resize.o resource.o segment.o semaphore.o shear.o signature.o statistics.o tempfile.o texture.o timer.o transform.o tsd.o type.o unix_port.o utility.o version.o widget.o xwindow.o analyze_Linux.o +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +/usr/bin/ranlib libMagick.a +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +g++ -o libMagick.so -shared -fPIC -Wl,-hlibMagick.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 animate.o annotate.o attribute.o average.o bit_stream.o blob.o cdl.o channel.o color.o colormap.o colorspace.o color_lookup.o command.o compare.o composite.o compress.o confirm_access.o constitute.o decorate.o delegate.o deprecate.o describe.o display.o draw.o effect.o enhance.o enum_strings.o error.o export.o floats.o fx.o gem.o gradient.o hclut.o image.o import.o list.o locale.o log.o magic.o magick.o magick_endian.o map.o memory.o module.o monitor.o montage.o nt_base.o nt_feature.o omp_data_view.o operator.o paint.o pixel_cache.o pixel_iterator.o plasma.o PreRvIcccm.o profile.o quantize.o random.o registry.o render.o resize.o resource.o segment.o semaphore.o shear.o signature.o statistics.o tempfile.o texture.o timer.o transform.o tsd.o type.o unix_port.o utility.o version.o widget.o xwindow.o analyze_Linux.o -lbzlib -llcms -lttf -lzlib -Wl,-Bdynamic -lXext -lpthread -lm -lrt -ldl -lgcc +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dfile.obj -c ../../../supportApp/netCDFSrc/libdispatch/dfile.c +../../../supportApp/netCDFSrc/libdispatch/dfile.c: In function ‘nc__pseudofd’: +../../../supportApp/netCDFSrc/libdispatch/dfile.c:2172:13: warning: unused variable ‘maxfd’ [-Wunused-variable] + 2172 | int maxfd = 32767; /* default */ + | ^~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ddim.obj -c ../../../supportApp/netCDFSrc/libdispatch/ddim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF analyze_Win32.d -MT analyze_Win32.obj ../analyze_Win32.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o datt.obj -c ../../../supportApp/netCDFSrc/libdispatch/datt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dattinq.obj -c ../../../supportApp/netCDFSrc/libdispatch/dattinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF xwindow.d -MT xwindow.obj ../xwindow.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dattput.obj -c ../../../supportApp/netCDFSrc/libdispatch/dattput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF widget.d -MT widget.obj ../widget.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dattget.obj -c ../../../supportApp/netCDFSrc/libdispatch/dattget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o derror.obj -c ../../../supportApp/netCDFSrc/libdispatch/derror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF version.d -MT version.obj ../version.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dvar.obj -c ../../../supportApp/netCDFSrc/libdispatch/dvar.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF utility.d -MT utility.obj ../utility.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF unix_port.d -MT unix_port.obj ../unix_port.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type.d -MT type.obj ../type.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dvarget.obj -c ../../../supportApp/netCDFSrc/libdispatch/dvarget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tsd.d -MT tsd.obj ../tsd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF transform.d -MT transform.obj ../transform.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF timer.d -MT timer.obj ../timer.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF texture.d -MT texture.obj ../texture.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tempfile.d -MT tempfile.obj ../tempfile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dvarput.obj -c ../../../supportApp/netCDFSrc/libdispatch/dvarput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF statistics.d -MT statistics.obj ../statistics.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dvarinq.obj -c ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dinternal.obj -c ../../../supportApp/netCDFSrc/libdispatch/dinternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF signature.d -MT signature.obj ../signature.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ddispatch.obj -c ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dutf8.obj -c ../../../supportApp/netCDFSrc/libdispatch/dutf8.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF shear.d -MT shear.obj ../shear.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nclog.obj -c ../../../supportApp/netCDFSrc/libdispatch/nclog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF semaphore.d -MT semaphore.obj ../semaphore.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dstring.obj -c ../../../supportApp/netCDFSrc/libdispatch/dstring.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF segment.d -MT segment.obj ../segment.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resource.d -MT resource.obj ../resource.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ncuri.obj -c ../../../supportApp/netCDFSrc/libdispatch/ncuri.c +../../../supportApp/netCDFSrc/libdispatch/ncuri.c: In function ‘ncuriparse’: +../../../supportApp/netCDFSrc/libdispatch/ncuri.c:153:5: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 153 | strncpy(uri,uri0,len0+1); + | ^~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/ncuri.c:137:12: note: length computed here + 137 | len0 = strlen(uri0); + | ^~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resize.d -MT resize.obj ../resize.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nclist.obj -c ../../../supportApp/netCDFSrc/libdispatch/nclist.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF render.d -MT render.obj ../render.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ncbytes.obj -c ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF registry.d -MT registry.obj ../registry.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nchashmap.obj -c ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c +../../../supportApp/netCDFSrc/libdispatch/nchashmap.c: In function ‘printhstring’: +../../../supportApp/netCDFSrc/libdispatch/nchashmap.c:1948:37: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] + 1948 | fprintf(stderr,"%lx %ld |%s|\n",(unsigned long)s,(unsigned long)n,ss); + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF random.d -MT random.obj ../random.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF quantize.d -MT quantize.obj ../quantize.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF profile.d -MT profile.obj ../profile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nctime.obj -c ../../../supportApp/netCDFSrc/libdispatch/nctime.c +../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdParseRelunits’: +../../../supportApp/netCDFSrc/libdispatch/nctime.c:384:25: warning: ‘%s’ directive writing up to 47 bytes into a region of size between 0 and 47 [-Wformat-overflow=] + 384 | sprintf(basetime,"%s %s",basetime_1,basetime_2); + | ^~ ~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c:384:4: note: ‘sprintf’ output between 2 and 96 bytes into a destination of size 48 + 384 | sprintf(basetime,"%s %s",basetime_1,basetime_2); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdComp2Rel.constprop’: +../../../supportApp/netCDFSrc/libdispatch/nctime.c:877:15: warning: ‘ndel’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 877 | *reltime = (double)ndel; + | ^~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c:871:19: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 871 | *reltime = delta/168.0; + | ~~~~~^~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdRel2Comp’: +../../../supportApp/netCDFSrc/libdispatch/nctime.c:1073:3: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1073 | Cde2h(base_etm+delta, old_timetype, 1970, &humantime); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc.obj -c ../../../supportApp/netCDFSrc/libdispatch/nc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF PreRvIcccm.d -MT PreRvIcccm.obj ../PreRvIcccm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nclistmgr.obj -c ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF plasma.d -MT plasma.obj ../plasma.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o drc.obj -c ../../../supportApp/netCDFSrc/libdispatch/drc.c +../../../supportApp/netCDFSrc/libdispatch/drc.c: In function ‘rcsearch’: +../../../supportApp/netCDFSrc/libdispatch/drc.c:403:5: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 403 | strncpy(path,prefix,pathlen); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/drc.c:396:16: note: length computed here + 396 | int plen = strlen(prefix); + | ^~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_iterator.d -MT pixel_iterator.obj ../pixel_iterator.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dauth.obj -c ../../../supportApp/netCDFSrc/libdispatch/dauth.c +../../../supportApp/netCDFSrc/libdispatch/dauth.c: In function ‘NC_combinehostport’: +../../../supportApp/netCDFSrc/libdispatch/dauth.c:82:5: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 82 | strncpy(hp,host,len); + | ^~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_cache.d -MT pixel_cache.obj ../pixel_cache.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o doffsets.obj -c ../../../supportApp/netCDFSrc/libdispatch/doffsets.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dwinpath.obj -c ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF paint.d -MT paint.obj ../paint.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dutil.obj -c ../../../supportApp/netCDFSrc/libdispatch/dutil.c +../../../supportApp/netCDFSrc/libdispatch/dutil.c: In function ‘NC_mktmp’: +../../../supportApp/netCDFSrc/libdispatch/dutil.c:210:5: warning: ‘strncpy’ specified bound 4096 equals destination size [-Wstringop-truncation] + 210 | strncpy(tmp,cvtpath,sizeof(tmp)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF operator.d -MT operator.obj ../operator.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF omp_data_view.d -MT omp_data_view.obj ../omp_data_view.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_feature.d -MT nt_feature.obj ../nt_feature.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_base.d -MT nt_base.obj ../nt_base.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF montage.d -MT montage.obj ../montage.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF monitor.d -MT monitor.obj ../monitor.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF module.d -MT module.obj ../module.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o utf8proc.obj -c ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc_initialize.obj -c ../../../supportApp/netCDFSrc/liblib/nc_initialize.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF memory.d -MT memory.obj ../memory.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o test_big_classic.obj -c ../test_big_classic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF map.d -MT map.obj ../map.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o netCDF.dll -shared -Wl,--out-implib,libnetCDF.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ v1hpg.obj putget.obj attr.obj nc3dispatch.obj nc3internal.obj var.obj dim.obj ncx.obj nc_hashmap.obj lookup3.obj ncio.obj memio.obj posixio.obj dparallel.obj dcopy.obj dfile.obj ddim.obj datt.obj dattinq.obj dattput.obj dattget.obj derror.obj dvar.obj dvarget.obj dvarput.obj dvarinq.obj dinternal.obj ddispatch.obj dutf8.obj nclog.obj dstring.obj ncuri.obj nclist.obj ncbytes.obj nchashmap.obj nctime.obj nc.obj nclistmgr.obj drc.obj dauth.obj doffsets.obj dwinpath.obj dutil.obj utf8proc.obj nc_initialize.obj -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick_endian.d -MT magick_endian.obj ../magick_endian.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o test_big_classic.exe -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ test_big_classic.obj -lnetCDF -lnetapi32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' +make -C ./nexusSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick.d -MT magick.obj ../magick.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF stptok.d ../stptok.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxxml.d ../nxxml.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxstack.d ../nxstack.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxio.d ../nxio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxdataset.d ../nxdataset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napiu.d ../napiu.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi5.d ../napi5.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magic.d -MT magic.obj ../magic.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi.d ../napi.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF log.d -MT log.obj ../log.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF locale.d -MT locale.obj ../locale.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF list.d -MT list.obj ../list.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF import.d -MT import.obj ../import.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF image.d -MT image.obj ../image.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../napi.c +In file included from /usr/include/string.h:495, + from ../napi.c:29: +In function ‘strncpy’, + inlined from ‘nxigetdata_’ at ../napi.c:1252:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi.c: In function ‘nxigetdata_’: +../napi.c:1252:3: note: length computed here + 1252 | strncpy((char *)data, pPtr2, strlen(pPtr2)); /* not NULL terminated by default */ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF hclut.d -MT hclut.obj ../hclut.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gradient.d -MT gradient.obj ../gradient.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gem.d -MT gem.obj ../gem.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fx.d -MT fx.obj ../fx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF floats.d -MT floats.obj ../floats.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../napi5.c +../napi5.c: In function ‘NX5makegroup’: +../napi5.c:506:8: warning: variable ‘iRet’ set but not used [-Wunused-but-set-variable] + 506 | hid_t iRet; + | ^~~~ +../napi5.c: In function ‘NX5getinfo64’: +../napi5.c:1919:31: warning: unused variable ‘vlen_bytes’ [-Wunused-variable] + 1919 | hsize_t myDim[H5S_MAX_RANK], vlen_bytes = 0, total_dims_size = 1; + | ^~~~~~~~~~ +../napi5.c: In function ‘NX5compmakedata64’: +../napi5.c:879:5: warning: ‘dID’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 879 | if (dID < 0) { + | ^ +In file included from /usr/include/string.h:495, + from ../napi5.c:34: +In function ‘strncpy’, + inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, + inlined from ‘NX5getgroupinfo’ at ../napi5.c:1555:4: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5makegroup’: +../napi5.c:516:29: warning: ‘%s’ directive output may be truncated writing up to 1023 bytes into a region of size 1022 [-Wformat-truncation=] + 516 | snprintf(pBuffer, 1023, "/%s/%s", pFile->name_ref, name); + | ^~ +In file included from /usr/include/stdio.h:867, + from ../../../include/os/Linux/H5Epublic.h:20, + from ../../../include/os/Linux/hdf5.h:26, + from ../napi5.h:9, + from ../napi5.c:39: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output 3 or more bytes (assuming 1026) into a destination of size 1023 + 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 68 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5opengroup’: +../napi5.c:571:26: warning: ‘__builtin___sprintf_chk’ may write a terminating nul past the end of the destination [-Wformat-overflow=] + 571 | sprintf(pBuffer, "%s/%s", pFile->name_tmp, name); + | ^ +In file included from /usr/include/stdio.h:867, + from ../../../include/os/Linux/H5Epublic.h:20, + from ../../../include/os/Linux/hdf5.h:26, + from ../napi5.h:9, + from ../napi5.c:39: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output 2 or more bytes (assuming 1025) into a destination of size 1024 + 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 37 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c:575:34: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 1011 [-Wformat-overflow=] + 575 | sprintf(pBuffer, "ERROR: group %s does not exist", + | ^~ +In file included from /usr/include/stdio.h:867, + from ../../../include/os/Linux/H5Epublic.h:20, + from ../../../include/os/Linux/hdf5.h:26, + from ../napi5.h:9, + from ../napi5.c:39: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output between 29 and 1052 bytes into a destination of size 1024 + 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 37 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from ../napi5.c:34: +In function ‘strncpy’, + inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, + inlined from ‘NX5opengroup’ at ../napi5.c:611:10: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘NX5getattra’ at ../napi5.c:2540:4: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5getattra’: +../napi5.c:2540:4: note: length computed here + 2540 | strncpy(data, strdata, strlen(strdata)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from ../napi5.c:34: +In function ‘strncpy’, + inlined from ‘NX5getdata’ at ../napi5.c:1859:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5getdata’: +../napi5.c:1859:5: note: length computed here + 1859 | strncpy(data, strdata, strlen(strdata)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5getnextentry’: +../napi5.c:1766:20: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 243 [-Wformat-overflow=] + 1766 | "ERROR: group %s does not exist", + | ^~ + 1767 | ph_name); + | ~~~~~~~ +In file included from /usr/include/stdio.h:867, + from ../../../include/os/Linux/H5Epublic.h:20, + from ../../../include/os/Linux/hdf5.h:26, + from ../napi5.h:9, + from ../napi5.c:39: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output between 29 and 1052 bytes into a destination of size 256 + 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 37 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from ../napi5.c:34: +In function ‘strncpy’, + inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, + inlined from ‘NX5getnextentry’ at ../napi5.c:1781:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, + inlined from ‘NX5getgroupinfo_recurse’ at ../napi5.c:1496:4: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF export.d -MT export.obj ../export.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../napiu.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF error.d -MT error.obj ../error.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxdataset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxstack.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxxml.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enum_strings.d -MT enum_strings.obj ../enum_strings.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../stptok.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +/usr/bin/ar -rc libNeXus.a napi.o napi5.o napiu.o nxdataset.o nxio.o nxstack.o nxxml.o stptok.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +/usr/bin/ranlib libNeXus.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enhance.d -MT enhance.obj ../enhance.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +g++ -o libNeXus.so -shared -fPIC -Wl,-hlibNeXus.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 napi.o napi5.o napiu.o nxdataset.o nxio.o nxstack.o nxxml.o stptok.o -lhdf5 -lszip -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF stptok.d -MT stptok.obj ../stptok.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxxml.d -MT nxxml.obj ../nxxml.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxstack.d -MT nxstack.obj ../nxstack.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxio.d -MT nxio.obj ../nxio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF effect.d -MT effect.obj ../effect.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF draw.d -MT draw.obj ../draw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF display.d -MT display.obj ../display.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxdataset.d -MT nxdataset.obj ../nxdataset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF describe.d -MT describe.obj ../describe.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napiu.d -MT napiu.obj ../napiu.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi5.d -MT napi5.obj ../napi5.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF deprecate.d -MT deprecate.obj ../deprecate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF delegate.d -MT delegate.obj ../delegate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF decorate.d -MT decorate.obj ../decorate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi.d -MT napi.obj ../napi.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF constitute.d -MT constitute.obj ../constitute.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF confirm_access.d -MT confirm_access.obj ../confirm_access.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compress.d -MT compress.obj ../compress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF composite.d -MT composite.obj ../composite.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compare.d -MT compare.obj ../compare.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF command.d -MT command.obj ../command.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color_lookup.d -MT color_lookup.obj ../color_lookup.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colorspace.d -MT colorspace.obj ../colorspace.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colormap.d -MT colormap.obj ../colormap.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color.d -MT color.obj ../color.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF channel.d -MT channel.obj ../channel.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cdl.d -MT cdl.obj ../cdl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o napi.obj -c ../napi.c +../napi.c: In function ‘nxigetdata_’: +../napi.c:1252:3: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1252 | strncpy((char *)data, pPtr2, strlen(pPtr2)); /* not NULL terminated by default */ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF blob.d -MT blob.obj ../blob.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bit_stream.d -MT bit_stream.obj ../bit_stream.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF average.d -MT average.obj ../average.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF attribute.d -MT attribute.obj ../attribute.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF annotate.d -MT annotate.obj ../annotate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o napi5.obj -c ../napi5.c +../napi5.c: In function ‘NX5makegroup’: +../napi5.c:506:8: warning: variable ‘iRet’ set but not used [-Wunused-but-set-variable] + 506 | hid_t iRet; + | ^~~~ +../napi5.c: In function ‘NX5getinfo64’: +../napi5.c:1919:31: warning: unused variable ‘vlen_bytes’ [-Wunused-variable] + 1919 | hsize_t myDim[H5S_MAX_RANK], vlen_bytes = 0, total_dims_size = 1; + | ^~~~~~~~~~ +../napi5.c: In function ‘NX5compmakedata64’: +../napi5.c:879:5: warning: ‘dID’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 879 | if (dID < 0) { + | ^ +In function ‘readStringAttributeN’, + inlined from ‘NX5getgroupinfo’ at ../napi5.c:1555:4: +../napi5.c:171:3: warning: ‘strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] + 171 | strncpy(data, vdat, maxlen); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5opengroup’: +../napi5.c:571:26: warning: ‘sprintf’ may write a terminating nul past the end of the destination [-Wformat-overflow=] + 571 | sprintf(pBuffer, "%s/%s", pFile->name_tmp, name); + | ^ +../napi5.c:571:3: note: ‘sprintf’ output 2 or more bytes (assuming 1025) into a destination of size 1024 + 571 | sprintf(pBuffer, "%s/%s", pFile->name_tmp, name); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c:575:34: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 1011 [-Wformat-overflow=] + 575 | sprintf(pBuffer, "ERROR: group %s does not exist", + | ^~ +../napi5.c:575:3: note: ‘sprintf’ output between 29 and 1052 bytes into a destination of size 1024 + 575 | sprintf(pBuffer, "ERROR: group %s does not exist", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 576 | pFile->name_tmp); + | ~~~~~~~~~~~~~~~~ +In function ‘readStringAttributeN’, + inlined from ‘NX5opengroup’ at ../napi5.c:611:10: +../napi5.c:171:3: warning: ‘strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] + 171 | strncpy(data, vdat, maxlen); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5getattra’: +../napi5.c:2540:4: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 2540 | strncpy(data, strdata, strlen(strdata)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5getdata’: +../napi5.c:1859:5: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 1859 | strncpy(data, strdata, strlen(strdata)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5getnextentry’: +../napi5.c:1766:20: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 243 [-Wformat-overflow=] + 1766 | "ERROR: group %s does not exist", + | ^~ + 1767 | ph_name); + | ~~~~~~~ +../napi5.c:1765:5: note: ‘sprintf’ output between 29 and 1052 bytes into a destination of size 256 + 1765 | sprintf(pBuffer, + | ^~~~~~~~~~~~~~~~ + 1766 | "ERROR: group %s does not exist", + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 1767 | ph_name); + | ~~~~~~~~ +In function ‘readStringAttributeN’, + inlined from ‘NX5getnextentry’ at ../napi5.c:1781:9: +../napi5.c:171:3: warning: ‘strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] + 171 | strncpy(data, vdat, maxlen); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘readStringAttributeN’, + inlined from ‘NX5getgroupinfo_recurse’ at ../napi5.c:1496:4: +../napi5.c:171:3: warning: ‘strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] + 171 | strncpy(data, vdat, maxlen); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF animate.d -MT animate.obj ../animate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o napiu.obj -c ../napiu.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o animate.obj -c ../animate.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../animate.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nxdataset.obj -c ../nxdataset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nxio.obj -c ../nxio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nxstack.obj -c ../nxstack.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nxxml.obj -c ../nxxml.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o stptok.obj -c ../stptok.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o NeXus.dll -shared -Wl,--out-implib,libNeXus.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ napi.obj napi5.obj napiu.obj nxdataset.obj nxio.obj nxstack.obj nxxml.obj stptok.obj -lhdf5 -lszip -lzlib -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o annotate.obj -c ../annotate.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../annotate.c:41: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, + from ../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, + from ../annotate.c:64: +../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] + 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ + | +../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] + 310 | # pragma warning( disable : 4018 ) + | +../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] + 311 | # pragma warning( disable : 4244 ) + | +../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] + 312 | # pragma warning( disable : 4142 ) + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o average.obj -c ../average.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../average.c:17: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o attribute.obj -c ../attribute.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../attribute.c:40: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o bit_stream.obj -c ../bit_stream.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../bit_stream.c:13: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o cdl.obj -c ../cdl.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../cdl.c:14: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o blob.obj -c ../blob.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../blob.c:40: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../blob.c:64: +/builds/DATAnet/adurl/.cache/adsupport-master/include/bzlib.h:81:14: note: #pragma message: BZIP compiling as DLL import + 81 | # pragma message( "BZIP compiling as DLL import" ) + | ^~~~~~~ +../blob.c: In function ‘GmBlobReserveSize’: +../blob.c:502:27: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 502 | "Request to reserve %" MAGICK_OFF_F "u output bytes %s", + | ^~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../blob.c:40: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../blob.c:502:27: warning: format ‘%s’ expects argument of type ‘char *’, but argument 6 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] + 502 | "Request to reserve %" MAGICK_OFF_F "u output bytes %s", + | ^~~~~~~~~~~~~~~~~~~~~~ + 503 | size, + | ~~~~ + | | + | magick_off_t {aka long long int} +../blob.c:502:80: note: format string is defined here + 502 | "Request to reserve %" MAGICK_OFF_F "u output bytes %s", + | ~^ + | | + | char * + | %I64d +../blob.c:502:27: warning: too many arguments for format [-Wformat-extra-args] + 502 | "Request to reserve %" MAGICK_OFF_F "u output bytes %s", + | ^~~~~~~~~~~~~~~~~~~~~~ +../blob.c: In function ‘GmMapBlob’: +../blob.c:2337:8: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2337 | "Failed to mmap fd %d using %s mode at offset %" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../blob.c:40: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../blob.c:2337:8: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2337 | "Failed to mmap fd %d using %s mode at offset %" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../blob.c:40: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../blob.c:2337:8: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] + 2337 | "Failed to mmap fd %d using %s mode at offset %" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 2338 | MAGICK_OFF_F "u and length %" MAGICK_OFF_F + 2339 | "u (%d=\"%s\").",file,MapModeToString(mode),offset, + | ~~~~~~ + | | + | magick_off_t {aka long long int} +../blob.c:2339:13: note: format string is defined here + 2339 | "u (%d=\"%s\").",file,MapModeToString(mode),offset, + | ~^ + | | + | int + | %I64d +../blob.c:2337:8: warning: format ‘%s’ expects argument of type ‘char *’, but argument 9 has type ‘long long int’ [-Wformat=] + 2337 | "Failed to mmap fd %d using %s mode at offset %" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +...... + 2340 | (magick_off_t) length,errno,strerror(errno)); + | ~~~~~~~~~~~~~~~~~~~~~ + | | + | long long int +../blob.c:2339:18: note: format string is defined here + 2339 | "u (%d=\"%s\").",file,MapModeToString(mode),offset, + | ~^ + | | + | char * + | %I64d +../blob.c:2337:8: warning: too many arguments for format [-Wformat-extra-args] + 2337 | "Failed to mmap fd %d using %s mode at offset %" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../blob.c:2344:4: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2344 | "Mmapped fd %d using %s mode at offset %" MAGICK_OFF_F + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../blob.c:40: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../blob.c:2344:4: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2344 | "Mmapped fd %d using %s mode at offset %" MAGICK_OFF_F + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../blob.c:40: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../blob.c:2344:4: warning: format ‘%p’ expects argument of type ‘void *’, but argument 8 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] + 2344 | "Mmapped fd %d using %s mode at offset %" MAGICK_OFF_F + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 2345 | "u and length %" MAGICK_OFF_F "u to address %p", + 2346 | file,MapModeToString(mode),offset,(magick_off_t) length, + | ~~~~~~ + | | + | magick_off_t {aka long long int} +../blob.c:2345:49: note: format string is defined here + 2345 | "u and length %" MAGICK_OFF_F "u to address %p", + | ~^ + | | + | void * + | %I64d +../blob.c:2344:4: warning: too many arguments for format [-Wformat-extra-args] + 2344 | "Mmapped fd %d using %s mode at offset %" MAGICK_OFF_F + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o channel.obj -c ../channel.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../channel.c:37: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o color.obj -c ../color.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../color.c:36: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o colormap.obj -c ../colormap.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../colormap.c:17: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o colorspace.obj -c ../colorspace.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../colorspace.c:32: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o color_lookup.obj -c ../color_lookup.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../color_lookup.c:16: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o compare.obj -c ../compare.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../compare.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o composite.obj -c ../composite.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../composite.c:41: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o compress.obj -c ../compress.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../compress.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o confirm_access.obj -c ../confirm_access.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../confirm_access.c:13: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o command.obj -c ../command.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../command.c:40: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o constitute.obj -c ../constitute.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../constitute.c:45: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o delegate.obj -c ../delegate.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../delegate.c:43: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o decorate.obj -c ../decorate.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../decorate.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o deprecate.obj -c ../deprecate.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../deprecate.c:37: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o describe.obj -c ../describe.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../describe.c:17: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o display.obj -c ../display.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../display.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o draw.obj -c ../draw.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../draw.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../draw.c: In function ‘GmDrawComposite’: +../draw.c:2411:27: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 3 has type ‘size_t’ {aka ‘long long unsigned int’} [-Wformat=] + 2411 | FormatString(buffer,"%" MAGICK_SIZE_T_F "d bytes", (4L*blob_length/3L+4L)); + | ^~~ ~~~~~~~~~~~~~~~~~~~~~~ + | | + | size_t {aka long long unsigned int} +../draw.c:2411:48: note: format string is defined here + 2411 | FormatString(buffer,"%" MAGICK_SIZE_T_F "d bytes", (4L*blob_length/3L+4L)); + | ~~~~~~~~~~~~~~~~~~~~^ + | | + | long int +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o enhance.obj -c ../enhance.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../enhance.c:42: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o effect.obj -c ../effect.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../effect.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o enum_strings.obj -c ../enum_strings.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../enum_strings.c:14: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o error.obj -c ../error.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../error.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o floats.obj -c ../floats.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../floats.c:17: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o fx.obj -c ../fx.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../fx.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o gem.obj -c ../gem.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../gem.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o gradient.obj -c ../gradient.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../gradient.c:17: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o hclut.obj -c ../hclut.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../hclut.c:14: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o image.obj -c ../image.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../image.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o import.obj -c ../import.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../import.c:16: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o list.obj -c ../list.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../list.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o locale.obj -c ../locale.c +In file included from ../studio.h:196, + from ../locale.c:35: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o log.obj -c ../log.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../log.c:37: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o magic.obj -c ../magic.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../magic.c:36: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o magick.obj -c ../magick.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../magick.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o magick_endian.obj -c ../magick_endian.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../magick_endian.c:25: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o map.obj -c ../map.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../map.c:13: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o memory.obj -c ../memory.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../memory.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o module.obj -c ../module.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../module.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o export.obj -c ../export.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../export.c:16: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o monitor.obj -c ../monitor.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../monitor.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o montage.obj -c ../montage.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../montage.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o nt_base.obj -c ../nt_base.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../nt_base.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../nt_base.c: In function ‘NTdlopen’: +../nt_base.c:817:10: warning: unused variable ‘Err’ [-Wunused-variable] + 817 | DWORD Err = GetLastError(); + | ^~~ +../nt_base.c:805:8: warning: variable ‘Err’ set but not used [-Wunused-but-set-variable] + 805 | DWORD Err = GetLastError(); + | ^~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o nt_feature.obj -c ../nt_feature.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../nt_feature.c:35: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o omp_data_view.obj -c ../omp_data_view.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../omp_data_view.c:31: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o paint.obj -c ../paint.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../paint.c:37: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o operator.obj -c ../operator.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../operator.c:16: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o pixel_iterator.obj -c ../pixel_iterator.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pixel_iterator.c:15: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o pixel_cache.obj -c ../pixel_cache.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pixel_cache.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../pixel_cache.c: In function ‘GmCheckImagePixelLimits’: +../pixel_cache.c:1331:28: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 1331 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../pixel_cache.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../pixel_cache.c:1331:28: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘magick_int64_t’ {aka ‘long long int’} [-Wformat=] + 1331 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~~~~~~~ +../pixel_cache.c:1331:64: note: format string is defined here + 1331 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", + | ~~~~~~^ + | | + | char * + | %.1024I64d +../pixel_cache.c:1331:28: warning: too many arguments for format [-Wformat-extra-args] + 1331 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~~~~~~~ +../pixel_cache.c:1347:28: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 1347 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../pixel_cache.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../pixel_cache.c:1347:28: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘magick_int64_t’ {aka ‘long long int’} [-Wformat=] + 1347 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~~~~~~~ +../pixel_cache.c:1347:64: note: format string is defined here + 1347 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", + | ~~~~~~^ + | | + | char * + | %.1024I64d +../pixel_cache.c:1347:28: warning: too many arguments for format [-Wformat-extra-args] + 1347 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~~~~~~~ +../pixel_cache.c:1368:22: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../pixel_cache.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../pixel_cache.c:1368:22: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../pixel_cache.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../pixel_cache.c:1368:22: warning: format ‘%s’ expects argument of type ‘char *’, but argument 3 has type ‘magick_int64_t’ {aka ‘long long int’} [-Wformat=] + 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~ + 1369 | total_pixels, + | ~~~~~~~~~~~~ + | | + | magick_int64_t {aka long long int} +../pixel_cache.c:1368:75: note: format string is defined here + 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", + | ~~~~~~^ + | | + | char * + | %.1024I64d +../pixel_cache.c:1368:22: warning: too many arguments for format [-Wformat-extra-args] + 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", + | ^~~ +../pixel_cache.c: In function ‘SetNexus’: +../pixel_cache.c:4240:8: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 4240 | "Failed to allocate %" MAGICK_SIZE_T_F + | ^~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../pixel_cache.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../pixel_cache.c:4240:8: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘magick_uint64_t’ {aka ‘long long unsigned int’} [-Wformat=] + 4240 | "Failed to allocate %" MAGICK_SIZE_T_F + | ^~~~~~~~~~~~~~~~~~~~~~ +...... + 4245 | number_pixels, + | ~~~~~~~~~~~~~ + | | + | magick_uint64_t {aka long long unsigned int} +../pixel_cache.c:4242:59: note: format string is defined here + 4242 | "(number pixels=%" MAGICK_OFF_F "u, region width=%lu, " + | ~~^ + | | + | long unsigned int + | %I64u +../pixel_cache.c:4240:8: warning: too many arguments for format [-Wformat-extra-args] + 4240 | "Failed to allocate %" MAGICK_SIZE_T_F + | ^~~~~~~~~~~~~~~~~~~~~~ +../pixel_cache.c: In function ‘WriteCacheIndexes’: +../pixel_cache.c:4591:11: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 4591 | "Failed to write row %ld at file offset %" MAGICK_OFF_F + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../pixel_cache.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../pixel_cache.c:4591:11: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 7 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] + 4591 | "Failed to write row %ld at file offset %" MAGICK_OFF_F + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +...... + 4595 | row_offset, + | ~~~~~~~~~~ + | | + | magick_off_t {aka long long int} +../pixel_cache.c:4592:43: note: format string is defined here + 4592 | "d. Wrote %" MAGICK_SSIZE_T_F "d rather than %" + | ~~~~~~~~~~~~~~~~~~~~~^ + | | + | long int +../pixel_cache.c:4591:11: warning: format ‘%s’ expects argument of type ‘char *’, but argument 9 has type ‘long unsigned int’ [-Wformat=] + 4591 | "Failed to write row %ld at file offset %" MAGICK_OFF_F + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +...... + 4597 | (MAGICK_SIZE_T) length, + | ~~~~~~~~~~~~~~~~~~~~~~ + | | + | long unsigned int +../pixel_cache.c:4593:66: note: format string is defined here + 4593 | MAGICK_SIZE_T_F "u bytes (%s).", + | ~^ + | | + | char * + | %ld +../pixel_cache.c:4591:11: warning: too many arguments for format [-Wformat-extra-args] + 4591 | "Failed to write row %ld at file offset %" MAGICK_OFF_F + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../pixel_cache.c: In function ‘WriteCachePixels’: +../pixel_cache.c:4754:11: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 4754 | "Failed to write row %ld at file offset %" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../pixel_cache.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../pixel_cache.c:4754:11: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 7 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] + 4754 | "Failed to write row %ld at file offset %" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +...... + 4759 | row_offset, + | ~~~~~~~~~~ + | | + | magick_off_t {aka long long int} +../pixel_cache.c:4756:57: note: format string is defined here + 4755 | MAGICK_OFF_F "d. Wrote %" + | ~~ + 4756 | MAGICK_SSIZE_T_F "d rather than %" + | ~~~~~~~~~~~~~~~~~~^ + | | + | long int +../pixel_cache.c:4754:11: warning: format ‘%s’ expects argument of type ‘char *’, but argument 9 has type ‘long unsigned int’ [-Wformat=] + 4754 | "Failed to write row %ld at file offset %" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +...... + 4761 | (MAGICK_SIZE_T) length, + | ~~~~~~~~~~~~~~~~~~~~~~ + | | + | long unsigned int +../pixel_cache.c:4757:66: note: format string is defined here + 4757 | MAGICK_SIZE_T_F "u bytes (%s).", + | ~^ + | | + | char * + | %ld +../pixel_cache.c:4754:11: warning: too many arguments for format [-Wformat-extra-args] + 4754 | "Failed to write row %ld at file offset %" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o plasma.obj -c ../plasma.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../plasma.c:17: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o PreRvIcccm.obj -c ../PreRvIcccm.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../PreRvIcccm.c:35: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o profile.obj -c ../profile.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../profile.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o random.obj -c ../random.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../random.c:15: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o quantize.obj -c ../quantize.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../quantize.c:174: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o registry.obj -c ../registry.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../registry.c:37: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o resize.obj -c ../resize.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../resize.c:35: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o resource.obj -c ../resource.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../resource.c:41: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o segment.obj -c ../segment.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../segment.c:80: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o render.obj -c ../render.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../render.c:43: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../render.c: In function ‘GmDrawImage’: +../render.c:2462:49: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2462 | FormatString(resource_str,"%" MAGICK_INT64_F "d", width_resource_limit); + | ^~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../render.c:43: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../render.c:2462:49: warning: too many arguments for format [-Wformat-extra-args] + 2462 | FormatString(resource_str,"%" MAGICK_INT64_F "d", width_resource_limit); + | ^~~ +../render.c:2470:49: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2470 | FormatString(resource_str,"%" MAGICK_INT64_F "d", hight_resource_limit); + | ^~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../render.c:43: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../render.c:2470:49: warning: too many arguments for format [-Wformat-extra-args] + 2470 | FormatString(resource_str,"%" MAGICK_INT64_F "d", hight_resource_limit); + | ^~~ +../render.c:2478:49: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2478 | FormatString(resource_str,"%" MAGICK_INT64_F "d", pixels_resource_limit); + | ^~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../render.c:43: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../render.c:2478:49: warning: too many arguments for format [-Wformat-extra-args] + 2478 | FormatString(resource_str,"%" MAGICK_INT64_F "d", pixels_resource_limit); + | ^~~ +../render.c:2494:52: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2494 | FormatString(gradient_size_str,"%" MAGICK_INT64_F "dx%" MAGICK_INT64_F "d", + | ^~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../render.c:43: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../render.c:2494:52: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 2494 | FormatString(gradient_size_str,"%" MAGICK_INT64_F "dx%" MAGICK_INT64_F "d", + | ^~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../render.c:43: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../render.c:2494:52: warning: too many arguments for format [-Wformat-extra-args] + 2494 | FormatString(gradient_size_str,"%" MAGICK_INT64_F "dx%" MAGICK_INT64_F "d", + | ^~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o semaphore.obj -c ../semaphore.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../semaphore.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o signature.obj -c ../signature.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../signature.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o shear.obj -c ../shear.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../shear.c:44: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o statistics.obj -c ../statistics.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../statistics.c:17: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o tempfile.obj -c ../tempfile.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../tempfile.c:12: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o texture.obj -c ../texture.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../texture.c:16: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o timer.obj -c ../timer.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../timer.c:38: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o tsd.obj -c ../tsd.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../tsd.c:15: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o transform.obj -c ../transform.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../transform.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o type.obj -c ../type.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../type.c:37: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o unix_port.obj -c ../unix_port.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../unix_port.c:36: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o version.obj -c ../version.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../version.c:34: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o widget.obj -c ../widget.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../widget.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o xwindow.obj -c ../xwindow.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../xwindow.c:37: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o utility.obj -c ../utility.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../utility.c:39: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../utility.c: In function ‘GmMagickSpawnVP’: +../utility.c:4046:37: warning: passing argument 3 of ‘spawnvp’ from incompatible pointer type [-Wincompatible-pointer-types] + 4046 | status = spawnvp(_P_WAIT, file, (const char * const *) argv); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ + | | + | const char * const* +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/nt_base.h:26, + from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:222, + from ../utility.c:39: +/usr/share/mingw-w64/include/process.h:198:74: note: expected ‘char * const*’ but argument is of type ‘const char * const*’ + 198 | _CRTIMP intptr_t __cdecl spawnvp(int,const char *_Filename,char *const _ArgList[]) __MINGW_ATTRIB_DEPRECATED_MSVC2005; + | ~~~~~~~~~~~~^~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o analyze_Win32.obj -c ../analyze_Win32.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../analyze_Win32.c:17: +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o Magick.dll -shared -Wl,--out-implib,libMagick.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ animate.obj annotate.obj attribute.obj average.obj bit_stream.obj blob.obj cdl.obj channel.obj color.obj colormap.obj colorspace.obj color_lookup.obj command.obj compare.obj composite.obj compress.obj confirm_access.obj constitute.obj decorate.obj delegate.obj deprecate.obj describe.obj display.obj draw.obj effect.obj enhance.obj enum_strings.obj error.obj export.obj floats.obj fx.obj gem.obj gradient.obj hclut.obj image.obj import.obj list.obj locale.obj log.obj magic.obj magick.obj magick_endian.obj map.obj memory.obj module.obj monitor.obj montage.obj nt_base.obj nt_feature.obj omp_data_view.obj operator.obj paint.obj pixel_cache.obj pixel_iterator.obj plasma.obj PreRvIcccm.obj profile.obj quantize.obj random.obj registry.obj render.obj resize.obj resource.obj segment.obj semaphore.obj shear.obj signature.obj statistics.obj tempfile.obj texture.obj timer.obj transform.obj tsd.obj type.obj unix_port.obj utility.obj version.obj widget.obj xwindow.obj analyze_Win32.obj -lbzlib -llcms -lttf -lzlib -ladvapi32 -luser32 -lgdi32 -lws2_32 +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' +make -C ./filters install +make -C ./coders install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' +mkdir -p O.Common +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' +mkdir -p O.Common +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF static.d ../static.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -MM -MF analyze.d ../analyze.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF yuv.d ../yuv.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xwd.d ../xwd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xtrn.d ../xtrn.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xpm.d ../xpm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xcf.d ../xcf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -c ../analyze.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xc.d ../xc.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xbm.d ../xbm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +/usr/bin/ar -rc libfilters.a analyze.o +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +/usr/bin/ranlib libfilters.a +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF x.d ../x.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +g++ -o libfilters.so -shared -fPIC -Wl,-hlibfilters.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 analyze.o -lMagick -lttf -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wpg.d ../wpg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ + T_A=windows-x64-mingw install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wmf.d ../wmf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF webp.d ../webp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wbmp.d ../wbmp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF viff.d ../viff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -MM -MF analyze.d -MT analyze.obj ../analyze.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vid.d ../vid.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vicar.d ../vicar.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uyvy.d ../uyvy.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF url.d ../url.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uil.d ../uil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF txt.d ../txt.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ttf.d ../ttf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF topol.d ../topol.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tim.d ../tim.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tile.d ../tile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tiff.d ../tiff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tga.d ../tga.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -o analyze.obj -c ../analyze.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../analyze.c:30: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF svg.d ../svg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sun.d ../sun.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o filters.dll -shared -Wl,--out-implib,libfilters.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ analyze.obj -lMagick -lttf -lws2_32 +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF stegano.d ../stegano.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sgi.d ../sgi.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sfw.d ../sfw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sct.d ../sct.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rle.d ../rle.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rla.d ../rla.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rgb.d ../rgb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pwp.d ../pwp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF psd.d ../psd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps3.d ../ps3.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps2.d ../ps2.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps.d ../ps.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF preview.d ../preview.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pnm.d ../pnm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF png.d ../png.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF plasma.d ../plasma.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pix.d ../pix.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pict.d ../pict.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdf.d ../pdf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdb.d ../pdb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcx.d ../pcx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcl.d ../pcl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcd.d ../pcd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF palm.d ../palm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF otb.d ../otb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF null.d ../null.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mvg.d ../mvg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mtv.d ../mtv.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF msl.d ../msl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpr.d ../mpr.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpeg.d ../mpeg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpc.d ../mpc.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mono.d ../mono.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF miff.d ../miff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF meta.d ../meta.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF matte.d ../matte.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mat.d ../mat.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF map.d ../map.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mac.d ../mac.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF logo.d ../logo.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF locale.d ../locale.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF label.d ../label.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jpeg.d ../jpeg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jp2.d ../jp2.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jnx.d ../jnx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jbig.d ../jbig.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF info.d ../info.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF identity.d ../identity.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF icon.d ../icon.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF html.d ../html.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hrz.d ../hrz.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF histogram.d ../histogram.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hdf.d ../hdf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gray.d ../gray.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gradient.d ../gradient.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gif.d ../gif.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fpx.d ../fpx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fits.d ../fits.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fax.d ../fax.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ept.d ../ept.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF emf.d ../emf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dpx.d ../dpx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dps.d ../dps.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dib.d ../dib.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcraw.d ../dcraw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcm.d ../dcm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cut.d ../cut.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cmyk.d ../cmyk.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF clipboard.d ../clipboard.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cineon.d ../cineon.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF caption.d ../caption.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cals.d ../cals.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF bmp.d ../bmp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avs.d ../avs.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avi.d ../avi.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF art.d ../art.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../art.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../avs.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../avi.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cals.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../caption.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cineon.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../clipboard.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cmyk.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../bmp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cut.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dcraw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dcm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dib.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dps.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../emf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ept.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../fax.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../fits.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../fpx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../gif.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../gradient.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dpx.c +In file included from /usr/include/string.h:495, + from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:126, + from ../dpx.c:123: +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3865:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3865:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3866:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3866:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3891:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3891:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3895:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3895:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3896:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3896:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3897:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3897:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3910:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3910:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3911:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3911:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3912:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3912:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3913:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3913:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3914:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3914:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3915:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3915:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3921:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3921:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3922:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3922:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../hdf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../gray.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../hrz.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../histogram.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../html.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../icon.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../identity.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../info.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jbig.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jnx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jp2.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../label.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jpeg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../locale.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mac.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../logo.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../map.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../matte.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mat.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../meta.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mono.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mpc.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../miff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mpr.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mpeg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mtv.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mvg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../null.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../otb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../palm.c +../palm.c:395:3: warning: ‘PalmPalette’ defined but not used [-Wunused-const-variable=] + 395 | PalmPalette[256][3] = + | ^~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../msl.c +In file included from /usr/include/string.h:495, + from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:126, + from ../msl.c:39: +In function ‘strncpy’, + inlined from ‘MSLStartElement’ at ../msl.c:3262:36: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin___strncpy_chk’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../msl.c: In function ‘MSLStartElement’: +../msl.c:3258:41: note: length computed here + 3258 | len = (int) strlen( value ); + | ^~~~~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pcl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pcd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pdb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pcx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pdf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pix.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pict.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:67, + from ../pict.c:38: +../pict.c: In function ‘WritePICTImage’: +../../../../include/magick/symbols.h:552:22: warning: argument 1 value ‘18446744073709551488’ exceeds maximum object size 9223372036854775807 [-Walloc-size-larger-than=] + 552 | #define MagickMalloc GmMagickMalloc +../../../../include/magick/memory.h:47:12: note: in expansion of macro ‘MagickMalloc’ + 47 | ((type) MagickMalloc((size_t) (size)))) + | ^~~~~~~~~~~~ +../pict.c:1654:12: note: in expansion of macro ‘MagickAllocateMemory’ + 1654 | scanline=MagickAllocateMemory(unsigned char *,row_bytes); + | ^~~~~~~~~~~~~~~~~~~~ +../../../../include/magick/symbols.h:552:22: note: in a call to allocation function ‘GmMagickMalloc’ declared here + 552 | #define MagickMalloc GmMagickMalloc + | ^~~~~~~~~~~~~~ +../../../../include/magick/memory.h:24:4: note: in expansion of macro ‘MagickMalloc’ + 24 | *MagickMalloc(const size_t size) MAGICK_FUNC_MALLOC MAGICK_FUNC_ALLOC_SIZE_1ARG(1), + | ^~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../plasma.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pnm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../preview.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ps.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ps2.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ps3.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../psd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pwp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../png.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../rla.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../rgb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sct.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sfw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../rle.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../stegano.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sgi.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sun.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tga.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../svg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tim.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../topol.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ttf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../txt.c +../txt.c: In function ‘ReadTXTImage’: +../txt.c:940:25: warning: comparison between pointer and zero character constant [-Wpointer-compare] + 940 | if (draw_info->text != '\0') + | ^~ +../txt.c:940:9: note: did you mean to dereference the pointer? + 940 | if (draw_info->text != '\0') + | ^ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tiff.c +In file included from ../../../../include/os/Linux/jpeglib.h:27, + from ../tiff.c:78: +../../../../include/os/Linux/jmorecfg.h:248: warning: "EXTERN" redefined + 248 | #define EXTERN(type) extern type + | +In file included from ../tiff.c:64: +../../../../include/os/Linux/tiffio.h:91: note: this is the location of the previous definition + 91 | # define EXTERN extern + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../url.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../uil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../uyvy.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../vicar.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../vid.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../wbmp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../viff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../wmf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../webp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../x.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../wpg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xbm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xc.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xcf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xtrn.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xpm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xwd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../yuv.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../static.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +/usr/bin/ar -rc libcoders.a art.o avi.o avs.o bmp.o cals.o caption.o cineon.o clipboard.o cmyk.o cut.o dcm.o dcraw.o dib.o dps.o dpx.o emf.o ept.o fax.o fits.o fpx.o gif.o gradient.o gray.o hdf.o histogram.o hrz.o html.o icon.o identity.o info.o jbig.o jnx.o jp2.o jpeg.o label.o locale.o logo.o mac.o map.o mat.o matte.o meta.o miff.o mono.o mpc.o mpeg.o mpr.o msl.o mtv.o mvg.o null.o otb.o palm.o pcd.o pcl.o pcx.o pdb.o pdf.o pict.o pix.o plasma.o png.o pnm.o preview.o ps.o ps2.o ps3.o psd.o pwp.o rgb.o rla.o rle.o sct.o sfw.o sgi.o stegano.o sun.o svg.o tga.o tiff.o tile.o tim.o topol.o ttf.o txt.o uil.o url.o uyvy.o vicar.o vid.o viff.o wbmp.o webp.o wmf.o wpg.o x.o xbm.o xc.o xcf.o xpm.o xtrn.o xwd.o yuv.o static.o +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +/usr/bin/ranlib libcoders.a +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +g++ -o libcoders.so -shared -fPIC -Wl,-hlibcoders.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 art.o avi.o avs.o bmp.o cals.o caption.o cineon.o clipboard.o cmyk.o cut.o dcm.o dcraw.o dib.o dps.o dpx.o emf.o ept.o fax.o fits.o fpx.o gif.o gradient.o gray.o hdf.o histogram.o hrz.o html.o icon.o identity.o info.o jbig.o jnx.o jp2.o jpeg.o label.o locale.o logo.o mac.o map.o mat.o matte.o meta.o miff.o mono.o mpc.o mpeg.o mpr.o msl.o mtv.o mvg.o null.o otb.o palm.o pcd.o pcl.o pcx.o pdb.o pdf.o pict.o pix.o plasma.o png.o pnm.o preview.o ps.o ps2.o ps3.o psd.o pwp.o rgb.o rla.o rle.o sct.o sfw.o sgi.o stegano.o sun.o svg.o tga.o tiff.o tile.o tim.o topol.o ttf.o txt.o uil.o url.o uyvy.o vicar.o vid.o viff.o wbmp.o webp.o wmf.o wpg.o x.o xbm.o xc.o xcf.o xpm.o xtrn.o xwd.o yuv.o static.o -lbzlib -ljbig -ljp2 -lMagick -lpng -lttf -lwebp -lwmf -ltiff -ljpeg -lxml2 -lnanohttp_stream -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ + T_A=windows-x64-mingw install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF static.d -MT static.obj ../static.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF yuv.d -MT yuv.obj ../yuv.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xwd.d -MT xwd.obj ../xwd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xpm.d -MT xpm.obj ../xpm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xtrn.d -MT xtrn.obj ../xtrn.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xcf.d -MT xcf.obj ../xcf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xc.d -MT xc.obj ../xc.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xbm.d -MT xbm.obj ../xbm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF x.d -MT x.obj ../x.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wpg.d -MT wpg.obj ../wpg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wmf.d -MT wmf.obj ../wmf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF webp.d -MT webp.obj ../webp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wbmp.d -MT wbmp.obj ../wbmp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF viff.d -MT viff.obj ../viff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vid.d -MT vid.obj ../vid.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vicar.d -MT vicar.obj ../vicar.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uyvy.d -MT uyvy.obj ../uyvy.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uil.d -MT uil.obj ../uil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF url.d -MT url.obj ../url.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF txt.d -MT txt.obj ../txt.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ttf.d -MT ttf.obj ../ttf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF topol.d -MT topol.obj ../topol.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tim.d -MT tim.obj ../tim.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tile.d -MT tile.obj ../tile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tiff.d -MT tiff.obj ../tiff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tga.d -MT tga.obj ../tga.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF svg.d -MT svg.obj ../svg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sun.d -MT sun.obj ../sun.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF stegano.d -MT stegano.obj ../stegano.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sgi.d -MT sgi.obj ../sgi.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sfw.d -MT sfw.obj ../sfw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sct.d -MT sct.obj ../sct.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rle.d -MT rle.obj ../rle.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rla.d -MT rla.obj ../rla.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rgb.d -MT rgb.obj ../rgb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pwp.d -MT pwp.obj ../pwp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF psd.d -MT psd.obj ../psd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps3.d -MT ps3.obj ../ps3.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps2.d -MT ps2.obj ../ps2.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps.d -MT ps.obj ../ps.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF preview.d -MT preview.obj ../preview.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pnm.d -MT pnm.obj ../pnm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF png.d -MT png.obj ../png.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF plasma.d -MT plasma.obj ../plasma.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pix.d -MT pix.obj ../pix.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pict.d -MT pict.obj ../pict.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdf.d -MT pdf.obj ../pdf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdb.d -MT pdb.obj ../pdb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcx.d -MT pcx.obj ../pcx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcl.d -MT pcl.obj ../pcl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcd.d -MT pcd.obj ../pcd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF palm.d -MT palm.obj ../palm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF otb.d -MT otb.obj ../otb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF null.d -MT null.obj ../null.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mvg.d -MT mvg.obj ../mvg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mtv.d -MT mtv.obj ../mtv.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF msl.d -MT msl.obj ../msl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpr.d -MT mpr.obj ../mpr.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpeg.d -MT mpeg.obj ../mpeg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpc.d -MT mpc.obj ../mpc.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mono.d -MT mono.obj ../mono.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF miff.d -MT miff.obj ../miff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF meta.d -MT meta.obj ../meta.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF matte.d -MT matte.obj ../matte.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mat.d -MT mat.obj ../mat.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF map.d -MT map.obj ../map.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mac.d -MT mac.obj ../mac.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF logo.d -MT logo.obj ../logo.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF locale.d -MT locale.obj ../locale.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF label.d -MT label.obj ../label.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jpeg.d -MT jpeg.obj ../jpeg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jp2.d -MT jp2.obj ../jp2.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jnx.d -MT jnx.obj ../jnx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jbig.d -MT jbig.obj ../jbig.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF info.d -MT info.obj ../info.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF identity.d -MT identity.obj ../identity.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF icon.d -MT icon.obj ../icon.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF html.d -MT html.obj ../html.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hrz.d -MT hrz.obj ../hrz.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF histogram.d -MT histogram.obj ../histogram.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hdf.d -MT hdf.obj ../hdf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gray.d -MT gray.obj ../gray.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gradient.d -MT gradient.obj ../gradient.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gif.d -MT gif.obj ../gif.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fpx.d -MT fpx.obj ../fpx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fits.d -MT fits.obj ../fits.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fax.d -MT fax.obj ../fax.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ept.d -MT ept.obj ../ept.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF emf.d -MT emf.obj ../emf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dpx.d -MT dpx.obj ../dpx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dps.d -MT dps.obj ../dps.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dib.d -MT dib.obj ../dib.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcraw.d -MT dcraw.obj ../dcraw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcm.d -MT dcm.obj ../dcm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cut.d -MT cut.obj ../cut.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cmyk.d -MT cmyk.obj ../cmyk.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF clipboard.d -MT clipboard.obj ../clipboard.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cineon.d -MT cineon.obj ../cineon.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF caption.d -MT caption.obj ../caption.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cals.d -MT cals.obj ../cals.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF bmp.d -MT bmp.obj ../bmp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avs.d -MT avs.obj ../avs.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avi.d -MT avi.obj ../avi.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF art.d -MT art.obj ../art.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o art.obj -c ../art.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../art.c:36: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o avi.obj -c ../avi.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../avi.c:37: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o avs.obj -c ../avs.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../avs.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o cals.obj -c ../cals.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../cals.c:35: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o caption.obj -c ../caption.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../caption.c:37: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o cineon.obj -c ../cineon.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../cineon.c:40: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o clipboard.obj -c ../clipboard.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../clipboard.c:33: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o cmyk.obj -c ../cmyk.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../cmyk.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o bmp.obj -c ../bmp.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../bmp.c:39: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../bmp.c: In function ‘ReadBMPImage’: +../bmp.c:610:9: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 610 | " BMP size: %lu, File size: %" MAGICK_OFF_F "u", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../bmp.c:39: +../../../../include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../bmp.c:610:9: warning: too many arguments for format [-Wformat-extra-args] + 610 | " BMP size: %lu, File size: %" MAGICK_OFF_F "u", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../bmp.c:843:29: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 843 | "File size: Claimed=%lu, Actual=%" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../bmp.c:39: +../../../../include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../bmp.c:843:29: warning: too many arguments for format [-Wformat-extra-args] + 843 | "File size: Claimed=%lu, Actual=%" + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o cut.obj -c ../cut.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../cut.c:36: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dcraw.obj -c ../dcraw.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../dcraw.c:27: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dcm.obj -c ../dcm.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../dcm.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dps.obj -c ../dps.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../dps.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dib.obj -c ../dib.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../dib.c:37: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o emf.obj -c ../emf.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../emf.c:35: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ept.obj -c ../ept.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../ept.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o fax.obj -c ../fax.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../fax.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dpx.obj -c ../dpx.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../dpx.c:123: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../dpx.c: In function ‘WriteDPXImage’: +../dpx.c:4067:28: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 4067 | (void) fprintf(stderr,"### Descriptor %u offset %u, TellBlob says %" MAGICK_OFF_F "d\n", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../dpx.c:123: +../../../../include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../dpx.c:4067:28: warning: too many arguments for format [-Wformat-extra-args] + 4067 | (void) fprintf(stderr,"### Descriptor %u offset %u, TellBlob says %" MAGICK_OFF_F "d\n", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:4067:28: warning: unknown conversion type character ‘l’ in format [-Wformat=] +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../dpx.c:123: +../../../../include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../dpx.c:4067:28: warning: too many arguments for format [-Wformat-extra-args] + 4067 | (void) fprintf(stderr,"### Descriptor %u offset %u, TellBlob says %" MAGICK_OFF_F "d\n", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:4391:24: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 4391 | (void) fprintf(stderr,"### File length %u, TellBlob says %" MAGICK_OFF_F "d\n", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../dpx.c:123: +../../../../include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../dpx.c:4391:24: warning: too many arguments for format [-Wformat-extra-args] + 4391 | (void) fprintf(stderr,"### File length %u, TellBlob says %" MAGICK_OFF_F "d\n", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:4391:24: warning: unknown conversion type character ‘l’ in format [-Wformat=] +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, + from ../dpx.c:123: +../../../../include/magick/magick_types.h:116:28: note: format string is defined here + 116 | # define MAGICK_INT64_F "ll" + | ^ +../dpx.c:4391:24: warning: too many arguments for format [-Wformat-extra-args] + 4391 | (void) fprintf(stderr,"### File length %u, TellBlob says %" MAGICK_OFF_F "d\n", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3865:3: note: in expansion of macro ‘AttributeToString’ + 3865 | AttributeToString(image_info,image,"DPX:file.project.name",dpx_file_info.project_name); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3865:3: note: in expansion of macro ‘AttributeToString’ + 3865 | AttributeToString(image_info,image,"DPX:file.project.name",dpx_file_info.project_name); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3866:3: note: in expansion of macro ‘AttributeToString’ + 3866 | AttributeToString(image_info,image,"DPX:file.copyright",dpx_file_info.copyright); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3866:3: note: in expansion of macro ‘AttributeToString’ + 3866 | AttributeToString(image_info,image,"DPX:file.copyright",dpx_file_info.copyright); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3891:3: note: in expansion of macro ‘AttributeToString’ + 3891 | AttributeToString(image_info,image,"DPX:source.filename",dpx_source_info.source_image_filename); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3891:3: note: in expansion of macro ‘AttributeToString’ + 3891 | AttributeToString(image_info,image,"DPX:source.filename",dpx_source_info.source_image_filename); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3895:3: note: in expansion of macro ‘AttributeToString’ + 3895 | AttributeToString(image_info,image,"DPX:source.creation.datetime",dpx_source_info.source_image_datetime); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3895:3: note: in expansion of macro ‘AttributeToString’ + 3895 | AttributeToString(image_info,image,"DPX:source.creation.datetime",dpx_source_info.source_image_datetime); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3896:3: note: in expansion of macro ‘AttributeToString’ + 3896 | AttributeToString(image_info,image,"DPX:source.device.name",dpx_source_info.input_device_name); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3896:3: note: in expansion of macro ‘AttributeToString’ + 3896 | AttributeToString(image_info,image,"DPX:source.device.name",dpx_source_info.input_device_name); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3897:3: note: in expansion of macro ‘AttributeToString’ + 3897 | AttributeToString(image_info,image,"DPX:source.device.serialnumber",dpx_source_info.input_device_serialnumber); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3897:3: note: in expansion of macro ‘AttributeToString’ + 3897 | AttributeToString(image_info,image,"DPX:source.device.serialnumber",dpx_source_info.input_device_serialnumber); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3910:3: note: in expansion of macro ‘AttributeToString’ + 3910 | AttributeToString(image_info,image,"DPX:mp.film.manufacturer.id",dpx_mp_info.film_mfg_id_code); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3910:3: note: in expansion of macro ‘AttributeToString’ + 3910 | AttributeToString(image_info,image,"DPX:mp.film.manufacturer.id",dpx_mp_info.film_mfg_id_code); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3911:3: note: in expansion of macro ‘AttributeToString’ + 3911 | AttributeToString(image_info,image,"DPX:mp.film.type",dpx_mp_info.film_type); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3911:3: note: in expansion of macro ‘AttributeToString’ + 3911 | AttributeToString(image_info,image,"DPX:mp.film.type",dpx_mp_info.film_type); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3912:3: note: in expansion of macro ‘AttributeToString’ + 3912 | AttributeToString(image_info,image,"DPX:mp.perfs.offset",dpx_mp_info.perfs_offset); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3912:3: note: in expansion of macro ‘AttributeToString’ + 3912 | AttributeToString(image_info,image,"DPX:mp.perfs.offset",dpx_mp_info.perfs_offset); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3913:3: note: in expansion of macro ‘AttributeToString’ + 3913 | AttributeToString(image_info,image,"DPX:mp.prefix",dpx_mp_info.prefix); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3913:3: note: in expansion of macro ‘AttributeToString’ + 3913 | AttributeToString(image_info,image,"DPX:mp.prefix",dpx_mp_info.prefix); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3914:3: note: in expansion of macro ‘AttributeToString’ + 3914 | AttributeToString(image_info,image,"DPX:mp.count",dpx_mp_info.count); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3914:3: note: in expansion of macro ‘AttributeToString’ + 3914 | AttributeToString(image_info,image,"DPX:mp.count",dpx_mp_info.count); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3915:3: note: in expansion of macro ‘AttributeToString’ + 3915 | AttributeToString(image_info,image,"DPX:mp.format",dpx_mp_info.format); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3915:3: note: in expansion of macro ‘AttributeToString’ + 3915 | AttributeToString(image_info,image,"DPX:mp.format",dpx_mp_info.format); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3921:3: note: in expansion of macro ‘AttributeToString’ + 3921 | AttributeToString(image_info,image,"DPX:mp.frame.id",dpx_mp_info.frame_id); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3921:3: note: in expansion of macro ‘AttributeToString’ + 3921 | AttributeToString(image_info,image,"DPX:mp.frame.id",dpx_mp_info.frame_id); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3265:12: warning: ‘strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3922:3: note: in expansion of macro ‘AttributeToString’ + 3922 | AttributeToString(image_info,image,"DPX:mp.slate.info",dpx_mp_info.slate_info); + | ^~~~~~~~~~~~~~~~~ +../dpx.c:3263:12: warning: ‘strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../dpx.c:3922:3: note: in expansion of macro ‘AttributeToString’ + 3922 | AttributeToString(image_info,image,"DPX:mp.slate.info",dpx_mp_info.slate_info); + | ^~~~~~~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o fits.obj -c ../fits.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../fits.c:40: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ output truncated before terminating nul copying 30 bytes from a string of the same length [-Wstringop-truncation] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ output truncated before terminating nul copying 30 bytes from a string of the same length [-Wstringop-truncation] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ output truncated before terminating nul copying 3 bytes from a string of the same length [-Wstringop-truncation] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../fits.c: In function ‘WriteFITSImage’: +../fits.c:670:9: note: length computed here + 670 | len = strlen(data); + | ^~~~~~~~~~~~ +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../fits.c: In function ‘WriteFITSImage’: +../fits.c:670:9: note: length computed here + 670 | len = strlen(data); + | ^~~~~~~~~~~~ +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../fits.c: In function ‘WriteFITSImage’: +../fits.c:670:9: note: length computed here + 670 | len = strlen(data); + | ^~~~~~~~~~~~ +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../fits.c: In function ‘WriteFITSImage’: +../fits.c:670:9: note: length computed here + 670 | len = strlen(data); + | ^~~~~~~~~~~~ +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../fits.c: In function ‘WriteFITSImage’: +../fits.c:670:9: note: length computed here + 670 | len = strlen(data); + | ^~~~~~~~~~~~ +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../fits.c: In function ‘WriteFITSImage’: +../fits.c:670:9: note: length computed here + 670 | len = strlen(data); + | ^~~~~~~~~~~~ +In function ‘GmInsertRowHDU’, + inlined from ‘WriteFITSImage’ at ../fits.c:663:5: +../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 676 | (void) strncpy(buffer+offset,data,len); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../fits.c: In function ‘WriteFITSImage’: +../fits.c:670:9: note: length computed here + 670 | len = strlen(data); + | ^~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o fpx.obj -c ../fpx.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../fpx.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o gradient.obj -c ../gradient.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../gradient.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o gif.obj -c ../gif.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../gif.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o gray.obj -c ../gray.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../gray.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o hdf.obj -c ../hdf.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../hdf.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o histogram.obj -c ../histogram.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../histogram.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o hrz.obj -c ../hrz.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../hrz.c:34: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o html.obj -c ../html.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../html.c:39: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o icon.obj -c ../icon.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../icon.c:42: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o identity.obj -c ../identity.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../identity.c:13: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o info.obj -c ../info.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../info.c:13: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o jbig.obj -c ../jbig.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../jbig.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../jbig.c:56: +../../../../supportApp/GraphicsMagickSrc/jbig/libjbig/jbig.h:255: warning: ignoring #pragma warning [-Wunknown-pragmas] + 255 | # pragma warning( disable : 4273 ) + | +../../../../supportApp/GraphicsMagickSrc/jbig/libjbig/jbig.h:267: warning: ignoring #pragma warning [-Wunknown-pragmas] + 267 | # pragma warning( disable : 4018 ) + | +../../../../supportApp/GraphicsMagickSrc/jbig/libjbig/jbig.h:268: warning: ignoring #pragma warning [-Wunknown-pragmas] + 268 | # pragma warning( disable : 4244 ) + | +../../../../supportApp/GraphicsMagickSrc/jbig/libjbig/jbig.h:269: warning: ignoring #pragma warning [-Wunknown-pragmas] + 269 | # pragma warning( disable : 4142 ) + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o jnx.obj -c ../jnx.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../jnx.c:35: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o jp2.obj -c ../jp2.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../jp2.c:39: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jasper.h:65, + from ../jp2.c:74: +../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:17:14: note: #pragma message: JAS compiling as DLL import + 17 | # pragma message( "JAS compiling as DLL import" ) + | ^~~~~~~ +../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] + 38 | # pragma warning(disable : 4013) + | +../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] + 39 | # pragma warning(disable : 4018) + | +../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] + 40 | # pragma warning(disable : 4244) + | +../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] + 41 | # pragma warning(disable : 4715) + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o label.obj -c ../label.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../label.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o jpeg.obj -c ../jpeg.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../jpeg.c:42: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o logo.obj -c ../logo.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../logo.c:42: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o locale.obj -c ../locale.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../locale.c:37: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mac.obj -c ../mac.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../mac.c:35: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o map.obj -c ../map.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../map.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o matte.obj -c ../matte.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../matte.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mat.obj -c ../mat.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../mat.c:39: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o meta.obj -c ../meta.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../meta.c:37: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mono.obj -c ../mono.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../mono.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o miff.obj -c ../miff.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../miff.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../miff.c:57: +../../../../include/bzlib.h:81:14: note: #pragma message: BZIP compiling as DLL import + 81 | # pragma message( "BZIP compiling as DLL import" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mpeg.obj -c ../mpeg.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../mpeg.c:36: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mpc.obj -c ../mpc.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../mpc.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mpr.obj -c ../mpr.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../mpr.c:37: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mtv.obj -c ../mtv.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../mtv.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mvg.obj -c ../mvg.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../mvg.c:36: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o msl.obj -c ../msl.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../msl.c:39: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../msl.c: In function ‘MSLStartElement’: +../msl.c:3262:36: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 3262 | (void) strncpy(tmp, value, (size_t) (len-1)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../msl.c:3258:41: note: length computed here + 3258 | len = (int) strlen( value ); + | ^~~~~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o null.obj -c ../null.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../null.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o otb.obj -c ../otb.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../otb.c:36: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o palm.obj -c ../palm.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../palm.c:51: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../palm.c:395:3: warning: ‘PalmPalette’ defined but not used [-Wunused-const-variable=] + 395 | PalmPalette[256][3] = + | ^~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pcl.obj -c ../pcl.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pcl.c:43: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pcd.obj -c ../pcd.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pcd.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pcx.obj -c ../pcx.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pcx.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pdb.obj -c ../pdb.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pdb.c:37: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pdf.obj -c ../pdf.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pdf.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pix.obj -c ../pix.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pix.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pict.obj -c ../pict.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pict.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o plasma.obj -c ../plasma.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../plasma.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pnm.obj -c ../pnm.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pnm.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o preview.obj -c ../preview.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../preview.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ps.obj -c ../ps.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../ps.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o png.obj -c ../png.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../png.c:58: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ps2.obj -c ../ps2.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../ps2.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o psd.obj -c ../psd.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../psd.c:39: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ps3.obj -c ../ps3.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../ps3.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pwp.obj -c ../pwp.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../pwp.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o rgb.obj -c ../rgb.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../rgb.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o rla.obj -c ../rla.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../rla.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o sct.obj -c ../sct.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../sct.c:49: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o rle.obj -c ../rle.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../rle.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o sfw.obj -c ../sfw.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../sfw.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o stegano.obj -c ../stegano.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../stegano.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o sgi.obj -c ../sgi.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../sgi.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o sun.obj -c ../sun.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../sun.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o tga.obj -c ../tga.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../tga.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o svg.obj -c ../svg.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../svg.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o tile.obj -c ../tile.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../tile.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o tim.obj -c ../tim.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../tim.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o topol.obj -c ../topol.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../topol.c:35: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o tiff.obj -c ../tiff.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../tiff.c:41: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ttf.obj -c ../ttf.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../ttf.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o uil.obj -c ../uil.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../uil.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o txt.obj -c ../txt.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../txt.c:45: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../txt.c: In function ‘ReadTXTImage’: +../txt.c:940:25: warning: comparison between pointer and zero character constant [-Wpointer-compare] + 940 | if (draw_info->text != '\0') + | ^~ +../txt.c:940:9: note: did you mean to dereference the pointer? + 940 | if (draw_info->text != '\0') + | ^ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o url.obj -c ../url.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../url.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o uyvy.obj -c ../uyvy.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../uyvy.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o vicar.obj -c ../vicar.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../vicar.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o vid.obj -c ../vid.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../vid.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o wbmp.obj -c ../wbmp.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../wbmp.c:37: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o viff.obj -c ../viff.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../viff.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o webp.obj -c ../webp.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../webp.c:39: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../supportApp/GraphicsMagickSrc/webp/src/webp/decode.h:17, + from ../webp.c:60: +../../../../supportApp/GraphicsMagickSrc/webp/src/webp/./types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] + 45 | # pragma warning( disable : 4273 ) + | +../../../../supportApp/GraphicsMagickSrc/webp/src/webp/./types.h:49:16: note: #pragma message: libwebp compiling as DLL import + 49 | # pragma message( "libwebp compiling as DLL import" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o wmf.obj -c ../wmf.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../wmf.c:40: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, + from ../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, + from ../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, + from ../wmf.c:74: +../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] + 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ + | +../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] + 310 | # pragma warning( disable : 4018 ) + | +../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] + 311 | # pragma warning( disable : 4244 ) + | +../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] + 312 | # pragma warning( disable : 4142 ) + | +In file included from ../wmf.c:75: +../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:31:14: note: #pragma message: WMF compiling as DLL import + 31 | # pragma message( "WMF compiling as DLL import" ) + | ^~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o wpg.obj -c ../wpg.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../wpg.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o x.obj -c ../x.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../x.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../x.c:48:3: warning: ‘WriteXImage’ declared ‘static’ but never defined [-Wunused-function] + 48 | WriteXImage(const ImageInfo *,Image *); + | ^~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xc.obj -c ../xc.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../xc.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xbm.obj -c ../xbm.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../xbm.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xpm.obj -c ../xpm.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../xpm.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xcf.obj -c ../xcf.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../xcf.c:37: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xwd.obj -c ../xwd.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../xwd.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../xwd.c:52:3: warning: ‘WriteXWDImage’ declared ‘static’ but never defined [-Wunused-function] + 52 | WriteXWDImage(const ImageInfo *,Image *); + | ^~~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xtrn.obj -c ../xtrn.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../xtrn.c:53: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +../xtrn.c: In function ‘ReadXTRNImage’: +../xtrn.c:165:42: warning: format ‘%s’ expects argument of type ‘char *’, but argument 5 has type ‘char (*)[2053]’ [-Wformat=] + 165 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); + | ^~~ ~~~~~~~~~ + | | + | char (*)[2053] +../xtrn.c:165:88: note: format string is defined here + 165 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); + | ~^ + | | + | char * +../xtrn.c:165:42: warning: format ‘%s’ expects argument of type ‘char *’, but argument 5 has type ‘char (*)[2053]’ [-Wformat=] + 165 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); + | ^~~ ~~~~~~~~~ + | | + | char (*)[2053] +../xtrn.c:165:88: note: format string is defined here + 165 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); + | ~^ + | | + | char * +../xtrn.c:195:42: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[2053]’ [-Wformat=] + 195 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1,&filename); + | ^~~ ~~~~~~~~~ + | | + | char (*)[2053] +../xtrn.c:195:66: note: format string is defined here + 195 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1,&filename); + | ~^ + | | + | char * +../xtrn.c:195:42: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[2053]’ [-Wformat=] + 195 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1,&filename); + | ^~~ ~~~~~~~~~ + | | + | char (*)[2053] +../xtrn.c:195:66: note: format string is defined here + 195 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1,&filename); + | ~^ + | | + | char * +../xtrn.c: In function ‘WriteXTRNImage’: +../xtrn.c:460:46: warning: format ‘%s’ expects argument of type ‘char *’, but argument 5 has type ‘char (*)[2053]’ [-Wformat=] + 460 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", + | ^~~ + 461 | (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); + | ~~~~~~~~~ + | | + | char (*)[2053] +../xtrn.c:460:92: note: format string is defined here + 460 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", + | ~^ + | | + | char * +../xtrn.c:460:46: warning: format ‘%s’ expects argument of type ‘char *’, but argument 5 has type ‘char (*)[2053]’ [-Wformat=] + 460 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", + | ^~~ + 461 | (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); + | ~~~~~~~~~ + | | + | char (*)[2053] +../xtrn.c:460:92: note: format string is defined here + 460 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", + | ~^ + | | + | char * +../xtrn.c:503:46: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[2053]’ [-Wformat=] + 503 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", + | ^~~ + 504 | (MAGICK_SIZE_T *)¶m1,&filename); + | ~~~~~~~~~ + | | + | char (*)[2053] +../xtrn.c:503:70: note: format string is defined here + 503 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", + | ~^ + | | + | char * +../xtrn.c:503:46: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[2053]’ [-Wformat=] + 503 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", + | ^~~ + 504 | (MAGICK_SIZE_T *)¶m1,&filename); + | ~~~~~~~~~ + | | + | char (*)[2053] +../xtrn.c:503:70: note: format string is defined here + 503 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", + | ~^ + | | + | char * +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o static.obj -c ../static.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../static.c:39: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface + 44 | # pragma message( "Magick lib DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o yuv.obj -c ../yuv.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, + from ../yuv.c:38: +../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^~~~~~~ +../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o coders.dll -shared -Wl,--out-implib,libcoders.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ art.obj avi.obj avs.obj bmp.obj cals.obj caption.obj cineon.obj clipboard.obj cmyk.obj cut.obj dcm.obj dcraw.obj dib.obj dps.obj dpx.obj emf.obj ept.obj fax.obj fits.obj fpx.obj gif.obj gradient.obj gray.obj hdf.obj histogram.obj hrz.obj html.obj icon.obj identity.obj info.obj jbig.obj jnx.obj jp2.obj jpeg.obj label.obj locale.obj logo.obj mac.obj map.obj mat.obj matte.obj meta.obj miff.obj mono.obj mpc.obj mpeg.obj mpr.obj msl.obj mtv.obj mvg.obj null.obj otb.obj palm.obj pcd.obj pcl.obj pcx.obj pdb.obj pdf.obj pict.obj pix.obj plasma.obj png.obj pnm.obj preview.obj ps.obj ps2.obj ps3.obj psd.obj pwp.obj rgb.obj rla.obj rle.obj sct.obj sfw.obj sgi.obj stegano.obj sun.obj svg.obj tga.obj tiff.obj tile.obj tim.obj topol.obj ttf.obj txt.obj uil.obj url.obj uyvy.obj vicar.obj vid.obj viff.obj wbmp.obj webp.obj wmf.obj wpg.obj x.obj xbm.obj xc.obj xcf.obj xpm.obj xtrn.obj xwd.obj yuv.obj static.obj -lbzlib -ljbig -ljp2 -lMagick -lpng -lttf -lwebp -lwmf -ltiff -ljpeg -lxml2 -lnanohttp_stream -lzlib -luser32 -lgdi32 -loleaut32 -lws2_32 +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' +make -C ./Magick++ install +make -C ./lib install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' +mkdir -p O.Common +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF TypeMetric.d ../TypeMetric.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Thread.d ../Thread.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Pixels.d ../Pixels.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Options.d ../Options.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF STL.d ../STL.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Montage.d ../Montage.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF ImageRef.d ../ImageRef.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Geometry.d ../Geometry.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Image.d ../Image.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Functions.d ../Functions.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Exception.d ../Exception.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Color.d ../Color.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Drawable.d ../Drawable.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF CoderInfo.d ../CoderInfo.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF BlobRef.d ../BlobRef.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Blob.d ../Blob.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +mkdir ../../../../../include/Magick++ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../BlobRef.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Blob.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../CoderInfo.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Color.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Exception.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Functions.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Geometry.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Drawable.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../ImageRef.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Montage.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Options.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Image.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Pixels.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Thread.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../TypeMetric.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../STL.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +/usr/bin/ar -rc libMagick++.a Blob.o BlobRef.o CoderInfo.o Color.o Drawable.o Exception.o Functions.o Geometry.o Image.o ImageRef.o Montage.o Options.o Pixels.o STL.o Thread.o TypeMetric.o +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +/usr/bin/ranlib libMagick++.a +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -o libMagick++.so -shared -fPIC -Wl,-hlibMagick++.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 Blob.o BlobRef.o CoderInfo.o Color.o Drawable.o Exception.o Functions.o Geometry.o Image.o ImageRef.o Montage.o Options.o Pixels.o STL.o Thread.o TypeMetric.o -lMagick -lcoders -Wl,-Bdynamic -lXext -lpthread -lm -lrt -ldl -lgcc +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ + T_A=windows-x64-mingw install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF TypeMetric.d -MT TypeMetric.obj ../TypeMetric.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF STL.d -MT STL.obj ../STL.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Thread.d -MT Thread.obj ../Thread.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Options.d -MT Options.obj ../Options.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Pixels.d -MT Pixels.obj ../Pixels.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Montage.d -MT Montage.obj ../Montage.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF ImageRef.d -MT ImageRef.obj ../ImageRef.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Image.d -MT Image.obj ../Image.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Geometry.d -MT Geometry.obj ../Geometry.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Functions.d -MT Functions.obj ../Functions.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Exception.d -MT Exception.obj ../Exception.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Drawable.d -MT Drawable.obj ../Drawable.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Color.d -MT Color.obj ../Color.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF CoderInfo.d -MT CoderInfo.obj ../CoderInfo.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF BlobRef.d -MT BlobRef.obj ../BlobRef.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Blob.d -MT Blob.obj ../Blob.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o BlobRef.obj -c ../BlobRef.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../BlobRef.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../BlobRef.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../BlobRef.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Blob.obj -c ../Blob.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Blob.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Blob.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Blob.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o CoderInfo.obj -c ../CoderInfo.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../CoderInfo.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../CoderInfo.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../CoderInfo.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Color.obj -c ../Color.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Color.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Color.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Color.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Exception.obj -c ../Exception.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Exception.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Exception.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Exception.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Functions.obj -c ../Functions.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Functions.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Functions.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Functions.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Geometry.obj -c ../Geometry.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Geometry.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Geometry.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Geometry.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Drawable.obj -c ../Drawable.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Drawable.cpp:12: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Drawable.cpp:12: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Drawable.cpp:12: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o ImageRef.obj -c ../ImageRef.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Magick++/ImageRef.h:14, + from ../ImageRef.cpp:13: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Magick++/ImageRef.h:14, + from ../ImageRef.cpp:13: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Magick++/ImageRef.h:14, + from ../ImageRef.cpp:13: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Montage.obj -c ../Montage.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Montage.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Montage.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Montage.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Options.obj -c ../Options.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Options.cpp:13: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Options.cpp:13: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Options.cpp:13: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Image.obj -c ../Image.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Image.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Image.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Image.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Pixels.obj -c ../Pixels.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Pixels.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Pixels.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Pixels.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o STL.obj -c ../STL.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Magick++/Image.h:11, + from ../STL.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Magick++/Image.h:11, + from ../STL.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Magick++/Image.h:11, + from ../STL.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o TypeMetric.obj -c ../TypeMetric.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Magick++/TypeMetric.h:13, + from ../TypeMetric.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Magick++/TypeMetric.h:13, + from ../TypeMetric.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Magick++/TypeMetric.h:13, + from ../TypeMetric.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Thread.obj -c ../Thread.cpp +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Magick++/Thread.h:13, + from ../Thread.cpp:11: +../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] + 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ + | +../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] + 66 | # pragma warning(disable : 4018) + | +../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] + 67 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] + 68 | # pragma warning(disable : 4244) + | +../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] + 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ + | +../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] + 70 | # pragma warning(disable : 4800) + | +../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] + 71 | # pragma warning(disable : 4786) + | +../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] + 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../Magick++/Thread.h:13, + from ../Thread.cpp:11: +../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] + 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ + | +In file included from ../../../../../include/magick/api.h:53, + from ../Magick++/Include.h:39, + from ../Magick++/Thread.h:13, + from ../Thread.cpp:11: +../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface + 39 | # pragma message( "Magick lib DLL import interface" ) + | ^ +../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface + 56 | # pragma message( "Magick module DLL export interface" ) + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o Magick++.dll -shared -Wl,--out-implib,libMagick++.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ Blob.obj BlobRef.obj CoderInfo.obj Color.obj Drawable.obj Exception.obj Functions.obj Geometry.obj Image.obj ImageRef.obj Montage.obj Options.obj Pixels.obj STL.obj Thread.obj TypeMetric.obj -lMagick -lcoders -lws2_32 +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' +make -C /builds/DATAnet/adurl/.cache/adcore-R3-11 install +make -C ./configure install +make -C ./ADApp install +make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/configure' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../.. +make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/configure' +make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/configure' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../.. +make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/configure' +make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/configure' +mkdir -p O.Common +make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/configure' +make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ + T_A=linux-x86_64 install +make -C ./Db install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/Db' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/Db' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/Db' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/Db' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/Db' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/Db' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease +make -C O.windows-x64-mingw -f ../Makefile TOP=../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/Db/O.linux-x86_64' +mkdir ../../../db +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/Db/O.linux-x86_64' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease +make -C ./ADSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myAttributeFunctions.d ../myAttributeFunctions.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myTimeStampSource.d ../myTimeStampSource.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DUSE_TYPED_RSET -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parseAreaPrefixes.d ../parseAreaPrefixes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF functAttribute.d ../functAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF PVAttribute.d ../PVAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF CCDMultiTrack.d ../CCDMultiTrack.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF paramAttribute.d ../paramAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ADDriver.d ../ADDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF asynNDArrayDriver.d ../asynNDArrayDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArray.d ../NDArray.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayPool.d ../NDArrayPool.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttributeList.d ../NDAttributeList.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttribute.d ../NDAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +Installing CFG file ../../../cfg/commonLibraryMakefile +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +mkdir ../../../cfg +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +Installing CFG file ../../../cfg/commonDriverMakefile +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +mkdir ../../../dbd +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +mkdir ../../../include +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Nothing to be done for 'install'. +make -C ./op install +make[3]: Nothing to be done for 'install'. +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDAttributeList.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDArray.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../asynNDArrayDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../ADDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../paramAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../CCDMultiTrack.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../PVAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDArrayPool.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../functAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../myTimeStampSource.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DUSE_TYPED_RSET -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../parseAreaPrefixes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../myAttributeFunctions.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +/usr/bin/ar -rc libADBase.a NDAttribute.o NDAttributeList.o NDArrayPool.o NDArray.o asynNDArrayDriver.o ADDriver.o paramAttribute.o CCDMultiTrack.o PVAttribute.o functAttribute.o parseAreaPrefixes.o myTimeStampSource.o myAttributeFunctions.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +/usr/bin/ranlib libADBase.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +g++ -o libADBase.so -shared -fPIC -Wl,-hlibADBase.so -L/builds/DATAnet/adurl/.cache/adcore-R3-11/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-11/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 NDAttribute.o NDAttributeList.o NDArrayPool.o NDArray.o asynNDArrayDriver.o ADDriver.o paramAttribute.o CCDMultiTrack.o PVAttribute.o functAttribute.o parseAreaPrefixes.o myTimeStampSource.o myAttributeFunctions.o -lasyn -ldbRecStd -ldbCore -lca -lCom -lxml2 -Wl,-Bdynamic -lpthread -lreadline -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myTimeStampSource.d -MT myTimeStampSource.obj ../myTimeStampSource.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -DUSE_TYPED_RSET -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parseAreaPrefixes.d -MT parseAreaPrefixes.obj ../parseAreaPrefixes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myAttributeFunctions.d -MT myAttributeFunctions.obj ../myAttributeFunctions.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF functAttribute.d -MT functAttribute.obj ../functAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF PVAttribute.d -MT PVAttribute.obj ../PVAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF CCDMultiTrack.d -MT CCDMultiTrack.obj ../CCDMultiTrack.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF paramAttribute.d -MT paramAttribute.obj ../paramAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ADDriver.d -MT ADDriver.obj ../ADDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArray.d -MT NDArray.obj ../NDArray.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF asynNDArrayDriver.d -MT asynNDArrayDriver.obj ../asynNDArrayDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayPool.d -MT NDArrayPool.obj ../NDArrayPool.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttributeList.d -MT NDAttributeList.obj ../NDAttributeList.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttribute.d -MT NDAttribute.obj ../NDAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDAttributeList.obj -c ../NDAttributeList.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDAttribute.obj -c ../NDAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDArray.obj -c ../NDArray.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o asynNDArrayDriver.obj -c ../asynNDArrayDriver.cpp +../asynNDArrayDriver.cpp: In member function ‘virtual asynStatus asynNDArrayDriver::createFilePath(const char*, int)’: +../asynNDArrayDriver.cpp:134:11: warning: unused variable ‘saveptr’ [-Wunused-variable] + 134 | char* saveptr; + | ^~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ADDriver.obj -c ../ADDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o paramAttribute.obj -c ../paramAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o CCDMultiTrack.obj -c ../CCDMultiTrack.cpp +../CCDMultiTrack.cpp: In member function ‘void CCDMultiTrack::storeTrackAttributes(NDAttributeList*)’: +../CCDMultiTrack.cpp:44:38: warning: unknown conversion type character ‘z’ in format [-Wformat=] + 44 | epicsSnprintf(Buf, 10, "%zd", TrackNum + 1); + | ^ +../CCDMultiTrack.cpp:44:36: warning: too many arguments for format [-Wformat-extra-args] + 44 | epicsSnprintf(Buf, 10, "%zd", TrackNum + 1); + | ^~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o PVAttribute.obj -c ../PVAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDArrayPool.obj -c ../NDArrayPool.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -DUSE_TYPED_RSET -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o parseAreaPrefixes.obj -c ../parseAreaPrefixes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o functAttribute.obj -c ../functAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o myTimeStampSource.obj -c ../myTimeStampSource.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o myAttributeFunctions.obj -c ../myAttributeFunctions.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o ADBase.dll -shared -Wl,--out-implib,libADBase.dll.a -L/builds/DATAnet/adurl/.cache/adcore-R3-11/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ NDAttribute.obj NDAttributeList.obj NDArrayPool.obj NDArray.obj asynNDArrayDriver.obj ADDriver.obj paramAttribute.obj CCDMultiTrack.obj PVAttribute.obj functAttribute.obj parseAreaPrefixes.obj myTimeStampSource.obj myAttributeFunctions.obj -lasyn -ldbRecStd -ldbCore -lca -lCom -lxml2 -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +mkdir ../../../bin +mkdir ../../../bin/windows-x64-mingw +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' +make -C ./ntndArrayConverterSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ntndArrayConverter_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ntndArrayConverter.d ../ntndArrayConverter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ntndArrayConverter_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../ntndArrayConverter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +/usr/bin/ar -rc libntndArrayConverter.a ntndArrayConverter.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +/usr/bin/ranlib libntndArrayConverter.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +g++ -o libntndArrayConverter.so -shared -fPIC -Wl,-hlibntndArrayConverter.so -L/builds/DATAnet/adurl/.cache/adcore-R3-11/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-11/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 ntndArrayConverter.o -lADBase -lpvData -lnt -lasyn -ldbRecStd -ldbCore -lca -lCom -Wl,-Bdynamic -lpthread -lreadline -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ntndArrayConverter_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ntndArrayConverter.d -MT ntndArrayConverter.obj ../ntndArrayConverter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ntndArrayConverter_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ntndArrayConverter.obj -c ../ntndArrayConverter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o ntndArrayConverter.dll -shared -Wl,--out-implib,libntndArrayConverter.dll.a -L/builds/DATAnet/adurl/.cache/adcore-R3-11/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ ntndArrayConverter.obj -lADBase -lpvData -lnt -lasyn -ldbRecStd -ldbCore -lca -lCom -lws2_32 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' +make -C ./pluginSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileTIFF.d ../NDFileTIFF.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNexus.d ../NDFileNexus.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginPva.d ../NDPluginPva.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNetCDF.d ../NDFileNetCDF.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileJPEG.d ../NDFileJPEG.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Layout.d ../NDFileHDF5Layout.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5LayoutXML.d ../NDFileHDF5LayoutXML.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5AttributeDataset.d ../NDFileHDF5AttributeDataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Dataset.d ../NDFileHDF5Dataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5.d ../NDFileHDF5.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNull.d ../NDFileNull.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileMagick.d ../NDFileMagick.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFile.d ../NDPluginFile.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPluginFileReader.d ../NDPosPluginFileReader.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPlugin.d ../NDPosPlugin.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCodec.d ../NDPluginCodec.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttrPlot.d ../NDPluginAttrPlot.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTransform.d ../NDPluginTransform.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStdArrays.d ../NDPluginStdArrays.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTimeSeries.d ../NDPluginTimeSeries.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginScatter.d ../NDPluginScatter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStats.d ../NDPluginStats.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROIStat.d ../NDPluginROIStat.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROI.d ../NDPluginROI.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlayTextFont.d ../NDPluginOverlayTextFont.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginProcess.d ../NDPluginProcess.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlay.d ../NDPluginOverlay.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fft.d ../fft.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginGather.d ../NDPluginGather.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFFT.d ../NDPluginFFT.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginColorConvert.d ../NDPluginColorConvert.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayRing.d ../NDArrayRing.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCircularBuff.d ../NDPluginCircularBuff.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF throttler.d ../throttler.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttribute.d ../NDPluginAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginDriver.d ../NDPluginDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/dbdExpand.pl -I. -I.. -I../O.Common -I../../../dbd -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/dbd -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/dbd -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/dbd -I/builds/DATAnet/adurl/.cache/asyn-R4-41/dbd -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/dbd -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/dbd -I/builds/DATAnet/adurl/.cache/adcore-R3-11/dbd -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/dbd -o NDPluginSupport.dbd NDPluginAttribute.dbd NDPluginCircularBuff.dbd NDPluginColorConvert.dbd NDPluginFFT.dbd NDPluginGather.dbd NDPluginOverlay.dbd NDPluginProcess.dbd NDPluginROI.dbd NDPluginROIStat.dbd NDPluginScatter.dbd NDPluginStats.dbd NDPluginStdArrays.dbd NDPluginTimeSeries.dbd NDPluginTransform.dbd NDPluginAttrPlot.dbd NDPluginCodec.dbd +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../throttler.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDArrayRing.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginCircularBuff.cpp +In file included from /usr/include/string.h:495, + from ../NDPluginCircularBuff.cpp:11: +In function ‘char* strncpy(char*, const char*, size_t)’, + inlined from ‘virtual asynStatus NDPluginCircularBuff::writeOctet(asynUser*, const char*, size_t, size_t*)’ at ../NDPluginCircularBuff.cpp:343:14: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:34: warning: ‘char* __builtin_strncpy(char*, const char*, long unsigned int)’ specified bound 100 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginFFT.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../fft.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginGather.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginColorConvert.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginOverlayTextFont.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginProcess.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginROI.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginOverlay.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginScatter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginROIStat.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginStdArrays.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginStats.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginTimeSeries.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginAttrPlot.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginCodec.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPosPlugin.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPosPluginFileReader.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginTransform.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileNull.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginFile.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileMagick.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5Dataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5AttributeDataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5LayoutXML.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileJPEG.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileNetCDF.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5Layout.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileTIFF.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileNexus.cpp +../NDFileNexus.cpp: In member function ‘int NDFileNexus::processNode(xmlNode*, NDArray*)’: +../NDFileNexus.cpp:423:36: warning: ‘__builtin___sprintf_chk’ may write a terminating nul past the end of the destination [-Wformat-overflow=] + 423 | sprintf(this->dataPath, "%c%s", '/', dPath); + | ^ +In file included from /usr/include/stdio.h:867, + from ../NDFileNexus.cpp:12: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:34: note: ‘__builtin___sprintf_chk’ output between 2 and 129 bytes into a destination of size 128 + 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, + | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 37 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginPva.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +/usr/bin/ar -rc libNDPlugin.a NDPluginDriver.o throttler.o NDPluginAttribute.o NDPluginCircularBuff.o NDArrayRing.o NDPluginColorConvert.o NDPluginFFT.o fft.o NDPluginGather.o NDPluginOverlay.o NDPluginOverlayTextFont.o NDPluginProcess.o NDPluginROI.o NDPluginROIStat.o NDPluginScatter.o NDPluginStats.o NDPluginStdArrays.o NDPluginTimeSeries.o NDPluginTransform.o NDPluginAttrPlot.o NDPluginCodec.o NDPosPlugin.o NDPosPluginFileReader.o NDPluginFile.o NDFileNull.o NDFileMagick.o NDFileHDF5.o NDFileHDF5Dataset.o NDFileHDF5AttributeDataset.o NDFileHDF5LayoutXML.o NDFileHDF5Layout.o NDFileJPEG.o NDFileNetCDF.o NDFileNexus.o NDFileTIFF.o NDPluginPva.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +/usr/bin/ranlib libNDPlugin.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +g++ -o libNDPlugin.so -shared -fPIC -Wl,-hlibNDPlugin.so -L/builds/DATAnet/adurl/.cache/adcore-R3-11/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-11/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 NDPluginDriver.o throttler.o NDPluginAttribute.o NDPluginCircularBuff.o NDArrayRing.o NDPluginColorConvert.o NDPluginFFT.o fft.o NDPluginGather.o NDPluginOverlay.o NDPluginOverlayTextFont.o NDPluginProcess.o NDPluginROI.o NDPluginROIStat.o NDPluginScatter.o NDPluginStats.o NDPluginStdArrays.o NDPluginTimeSeries.o NDPluginTransform.o NDPluginAttrPlot.o NDPluginCodec.o NDPosPlugin.o NDPosPluginFileReader.o NDPluginFile.o NDFileNull.o NDFileMagick.o NDFileHDF5.o NDFileHDF5Dataset.o NDFileHDF5AttributeDataset.o NDFileHDF5LayoutXML.o NDFileHDF5Layout.o NDFileJPEG.o NDFileNetCDF.o NDFileNexus.o NDFileTIFF.o NDPluginPva.o -lADBase -lasyn -lntndArrayConverter -lnt -lpvDatabase -lpvAccess -lpvData -lnetCDF -lnanohttp_stream -lMagick++ -lcoders -lMagick -ljbig -ljp2 -lbzlib -lpng -lwebp -llcms -lttf -lwmf -lfilters -ltiff -lxml2 -lNeXus -lhdf5 -lhdf5_hl -lblosc -lszip -lzlib -ljpeg -ldbRecStd -ldbCore -lca -lCom -Wl,-Bdynamic -lX11 -lXext -lpthread -lreadline -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' +make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ + T_A=windows-x64-mingw install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileTIFF.d -MT NDFileTIFF.obj ../NDFileTIFF.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginPva.d -MT NDPluginPva.obj ../NDPluginPva.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNexus.d -MT NDFileNexus.obj ../NDFileNexus.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNetCDF.d -MT NDFileNetCDF.obj ../NDFileNetCDF.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileJPEG.d -MT NDFileJPEG.obj ../NDFileJPEG.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Layout.d -MT NDFileHDF5Layout.obj ../NDFileHDF5Layout.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5LayoutXML.d -MT NDFileHDF5LayoutXML.obj ../NDFileHDF5LayoutXML.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5AttributeDataset.d -MT NDFileHDF5AttributeDataset.obj ../NDFileHDF5AttributeDataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Dataset.d -MT NDFileHDF5Dataset.obj ../NDFileHDF5Dataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5.d -MT NDFileHDF5.obj ../NDFileHDF5.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileMagick.d -MT NDFileMagick.obj ../NDFileMagick.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNull.d -MT NDFileNull.obj ../NDFileNull.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFile.d -MT NDPluginFile.obj ../NDPluginFile.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPluginFileReader.d -MT NDPosPluginFileReader.obj ../NDPosPluginFileReader.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPlugin.d -MT NDPosPlugin.obj ../NDPosPlugin.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCodec.d -MT NDPluginCodec.obj ../NDPluginCodec.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttrPlot.d -MT NDPluginAttrPlot.obj ../NDPluginAttrPlot.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTransform.d -MT NDPluginTransform.obj ../NDPluginTransform.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTimeSeries.d -MT NDPluginTimeSeries.obj ../NDPluginTimeSeries.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStdArrays.d -MT NDPluginStdArrays.obj ../NDPluginStdArrays.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStats.d -MT NDPluginStats.obj ../NDPluginStats.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginScatter.d -MT NDPluginScatter.obj ../NDPluginScatter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROIStat.d -MT NDPluginROIStat.obj ../NDPluginROIStat.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROI.d -MT NDPluginROI.obj ../NDPluginROI.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlayTextFont.d -MT NDPluginOverlayTextFont.obj ../NDPluginOverlayTextFont.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginProcess.d -MT NDPluginProcess.obj ../NDPluginProcess.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlay.d -MT NDPluginOverlay.obj ../NDPluginOverlay.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginGather.d -MT NDPluginGather.obj ../NDPluginGather.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fft.d -MT fft.obj ../fft.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFFT.d -MT NDPluginFFT.obj ../NDPluginFFT.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginColorConvert.d -MT NDPluginColorConvert.obj ../NDPluginColorConvert.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayRing.d -MT NDArrayRing.obj ../NDArrayRing.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCircularBuff.d -MT NDPluginCircularBuff.obj ../NDPluginCircularBuff.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF throttler.d -MT throttler.obj ../throttler.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttribute.d -MT NDPluginAttribute.obj ../NDPluginAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginDriver.d -MT NDPluginDriver.obj ../NDPluginDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o throttler.obj -c ../throttler.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginAttribute.obj -c ../NDPluginAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginDriver.obj -c ../NDPluginDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDArrayRing.obj -c ../NDArrayRing.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginCircularBuff.obj -c ../NDPluginCircularBuff.cpp +../NDPluginCircularBuff.cpp: In member function ‘virtual asynStatus NDPluginCircularBuff::writeOctet(asynUser*, const char*, size_t, size_t*)’: +../NDPluginCircularBuff.cpp:343:14: warning: ‘char* strncpy(char*, const char*, size_t)’ specified bound 100 equals destination size [-Wstringop-truncation] + 343 | strncpy(triggerCalcInfix_, value, sizeof(triggerCalcInfix_)); + | ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginFFT.obj -c ../NDPluginFFT.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-gcc -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o fft.obj -c ../fft.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginGather.obj -c ../NDPluginGather.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginColorConvert.obj -c ../NDPluginColorConvert.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginOverlayTextFont.obj -c ../NDPluginOverlayTextFont.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginProcess.obj -c ../NDPluginProcess.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginOverlay.obj -c ../NDPluginOverlay.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginROI.obj -c ../NDPluginROI.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginScatter.obj -c ../NDPluginScatter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginROIStat.obj -c ../NDPluginROIStat.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginStdArrays.obj -c ../NDPluginStdArrays.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginStats.obj -c ../NDPluginStats.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginTimeSeries.obj -c ../NDPluginTimeSeries.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginAttrPlot.obj -c ../NDPluginAttrPlot.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginCodec.obj -c ../NDPluginCodec.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPosPlugin.obj -c ../NDPosPlugin.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPosPluginFileReader.obj -c ../NDPosPluginFileReader.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginTransform.obj -c ../NDPluginTransform.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginFile.obj -c ../NDPluginFile.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileNull.obj -c ../NDFileNull.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileMagick.obj -c ../NDFileMagick.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5Dataset.obj -c ../NDFileHDF5Dataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5AttributeDataset.obj -c ../NDFileHDF5AttributeDataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5LayoutXML.obj -c ../NDFileHDF5LayoutXML.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5.obj -c ../NDFileHDF5.cpp +../NDFileHDF5.cpp: In member function ‘char* NDFileHDF5::getDimsReport()’: +../NDFileHDF5.cpp:3572:46: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 3572 | epicsSnprintf(strdims+c, maxlen-c, "%6lli,", dimsizes[i].dimsize[j]); + | ^ +../NDFileHDF5.cpp:3572:42: warning: too many arguments for format [-Wformat-extra-args] + 3572 | epicsSnprintf(strdims+c, maxlen-c, "%6lli,", dimsizes[i].dimsize[j]); + | ^~~~~~~~ +In file included from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynStandardInterfaces.h:20, + from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynPortDriver.h:11, + from ../../../include/asynNDArrayDriver.h:7, + from ../NDPluginDriver.h:12, + from ../NDPluginFile.h:7, + from ../NDFileHDF5.h:13, + from ../NDFileHDF5.cpp:28: +../NDFileHDF5.cpp: In member function ‘asynStatus NDFileHDF5::createNewFile(const char*)’: +../NDFileHDF5.cpp:3774:11: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 3774 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynDriver.h:281:70: note: in definition of macro ‘asynPrint’ + 281 | ? pasynTrace->printSource((pasynUser),(reason),__FILE__,__LINE__,__VA_ARGS__) \ + | ^~~~~~~~~~~ +../NDFileHDF5.cpp:3774:60: note: format string is defined here + 3774 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", + | ^ +In file included from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynStandardInterfaces.h:20, + from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynPortDriver.h:11, + from ../../../include/asynNDArrayDriver.h:7, + from ../NDPluginDriver.h:12, + from ../NDPluginFile.h:7, + from ../NDFileHDF5.h:13, + from ../NDFileHDF5.cpp:28: +../NDFileHDF5.cpp:3774:11: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 3774 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynDriver.h:281:70: note: in definition of macro ‘asynPrint’ + 281 | ? pasynTrace->printSource((pasynUser),(reason),__FILE__,__LINE__,__VA_ARGS__) \ + | ^~~~~~~~~~~ +../NDFileHDF5.cpp:3774:79: note: format string is defined here + 3774 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", + | ^ +In file included from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynStandardInterfaces.h:20, + from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynPortDriver.h:11, + from ../../../include/asynNDArrayDriver.h:7, + from ../NDPluginDriver.h:12, + from ../NDPluginFile.h:7, + from ../NDFileHDF5.h:13, + from ../NDFileHDF5.cpp:28: +../NDFileHDF5.cpp:3774:11: warning: too many arguments for format [-Wformat-extra-args] + 3774 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynDriver.h:281:70: note: in definition of macro ‘asynPrint’ + 281 | ? pasynTrace->printSource((pasynUser),(reason),__FILE__,__LINE__,__VA_ARGS__) \ + | ^~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileJPEG.obj -c ../NDFileJPEG.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileNetCDF.obj -c ../NDFileNetCDF.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileNexus.obj -c ../NDFileNexus.cpp +../NDFileNexus.cpp: In member function ‘void NDFileNexus::constTextToDataType(char*, int, void*)’: +../NDFileNexus.cpp:703:39: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 703 | sscanf((const char *)inText, "%lld", &i64val); + | ^ +../NDFileNexus.cpp:703:36: warning: too many arguments for format [-Wformat-extra-args] + 703 | sscanf((const char *)inText, "%lld", &i64val); + | ^~~~~~ +../NDFileNexus.cpp:703:39: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 703 | sscanf((const char *)inText, "%lld", &i64val); + | ^ +../NDFileNexus.cpp:703:36: warning: too many arguments for format [-Wformat-extra-args] + 703 | sscanf((const char *)inText, "%lld", &i64val); + | ^~~~~~ +../NDFileNexus.cpp:707:39: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 707 | sscanf((const char *)inText, "%llu", &i64val); + | ^ +../NDFileNexus.cpp:707:36: warning: too many arguments for format [-Wformat-extra-args] + 707 | sscanf((const char *)inText, "%llu", &i64val); + | ^~~~~~ +../NDFileNexus.cpp:707:39: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 707 | sscanf((const char *)inText, "%llu", &i64val); + | ^ +../NDFileNexus.cpp:707:36: warning: too many arguments for format [-Wformat-extra-args] + 707 | sscanf((const char *)inText, "%llu", &i64val); + | ^~~~~~ +../NDFileNexus.cpp: In member function ‘int NDFileNexus::processNode(xmlNode*, NDArray*)’: +../NDFileNexus.cpp:423:36: warning: ‘sprintf’ may write a terminating nul past the end of the destination [-Wformat-overflow=] + 423 | sprintf(this->dataPath, "%c%s", '/', dPath); + | ^ +../NDFileNexus.cpp:423:14: note: ‘sprintf’ output between 2 and 129 bytes into a destination of size 128 + 423 | sprintf(this->dataPath, "%c%s", '/', dPath); + | ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5Layout.obj -c ../NDFileHDF5Layout.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileTIFF.obj -c ../NDFileTIFF.cpp +../NDFileTIFF.cpp: In member function ‘virtual asynStatus NDFileTIFF::openFile(const char*, NDFileOpenMode_t, NDArray*)’: +../NDFileTIFF.cpp:307:69: warning: unknown conversion type character ‘l’ in format [-Wformat=] + 307 | epicsSnprintf(tagString, sizeof(tagString)-1, "%s:%lld", attributeName, value.i64); + | ^ +../NDFileTIFF.cpp:307:63: warning: too many arguments for format [-Wformat-extra-args] + 307 | epicsSnprintf(tagString, sizeof(tagString)-1, "%s:%lld", attributeName, value.i64); + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginPva.obj -c ../NDPluginPva.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +/usr/bin/x86_64-w64-mingw32-g++ -o NDPlugin.dll -shared -Wl,--out-implib,libNDPlugin.dll.a -L/builds/DATAnet/adurl/.cache/adcore-R3-11/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ NDPluginDriver.obj throttler.obj NDPluginAttribute.obj NDPluginCircularBuff.obj NDArrayRing.obj NDPluginColorConvert.obj NDPluginFFT.obj fft.obj NDPluginGather.obj NDPluginOverlay.obj NDPluginOverlayTextFont.obj NDPluginProcess.obj NDPluginROI.obj NDPluginROIStat.obj NDPluginScatter.obj NDPluginStats.obj NDPluginStdArrays.obj NDPluginTimeSeries.obj NDPluginTransform.obj NDPluginAttrPlot.obj NDPluginCodec.obj NDPosPlugin.obj NDPosPluginFileReader.obj NDPluginFile.obj NDFileNull.obj NDFileMagick.obj NDFileHDF5.obj NDFileHDF5Dataset.obj NDFileHDF5AttributeDataset.obj NDFileHDF5LayoutXML.obj NDFileHDF5Layout.obj NDFileJPEG.obj NDFileNetCDF.obj NDFileNexus.obj NDFileTIFF.obj NDPluginPva.obj -lADBase -lasyn -lntndArrayConverter -lnt -lpvDatabase -lpvAccess -lpvData -lnetCDF -lnanohttp_stream -lMagick++ -lcoders -lMagick -ljbig -ljp2 -lbzlib -lpng -lwebp -llcms -lttf -lwmf -lfilters -ltiff -lxml2 -lNeXus -lhdf5 -lhdf5_hl -lblosc -lszip -lzlib -ljpeg -ldbRecStd -ldbCore -lca -lCom -lws2_32 -luser32 -lgdi32 -loleaut32 -lws2_32 +/usr/bin/x86_64-w64-mingw32-ld: /usr/lib/gcc/x86_64-w64-mingw32/9.3-posix/libgcc_eh.a(unwind-seh.o):(.text+0x3d0): multiple definition of `_Unwind_Resume'; /builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw/libMagick++.dll.a(d000016.o):(.text+0x0): first defined here +collect2: error: ld returned 1 exit status +make[4]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_BUILD:298: NDPlugin.dll] Error 1 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' +make[3]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_ARCHS:58: install.windows-x64-mingw] Error 2 +make[2]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: pluginSrc.install] Error 2 +make[1]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: ADApp.install] Error 2 +make: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: /builds/DATAnet/adurl/.cache/adcore-R3-11.install] Error 2 +DEBUG:__main__:EXEC DONE diff --git a/.ci-local/adurl_install.sh b/.ci-local/adurl_install.sh new file mode 100644 index 00000000..c91320cb --- /dev/null +++ b/.ci-local/adurl_install.sh @@ -0,0 +1,29 @@ +#!/bin/bash + +# This script installs NDS and NDS-epics +# +# check if user has right permissions +if [ "$(id -u)" != "0" ]; then + echo "Sorry, you are not root. Please try again using sudo." + exit 1 +fi + +# terminate script after first line that fails +set -e + +apt-get install -y libreadline6-dev libncurses5-dev perl clang g++-mingw-w64-i686 g++-mingw-w64-x86-64 qemu-system-x86 re2c tar +apt-get install -y build-essential git python curl p7zip-full wget libxml2-dev + +export GITLAB_CI=1 +export SETUP_PATH=".ci-local:.ci" +export BASE_RECURSIVE="YES" +export CMP="gcc" +export BGFC="default" +export SET="stable" +export CLEAN_DEPS="NO" +export WINE=64 +export VV=1 +export CLEAN_DEPS="NO" +python .ci/cue.py prepare > /tmp/adurl_install.log 2>&1 +python .ci/cue.py build >> /tmp/adurl_install.log 2>&1 + diff --git a/.ci-local/adurl_install_Linux.log b/.ci-local/adurl_install_Linux.log new file mode 100644 index 00000000..5c47d048 --- /dev/null +++ b/.ci-local/adurl_install_Linux.log @@ -0,0 +1,10573 @@ +DEBUG:__main__:Detected a build hosted on gitlab, using gcc on linux (x64) configured as shared-optimized (test: True, clean_deps: False) +Build using gcc compiler on linux (x64) hosted by gitlab +Python setup +2.7.18 (default, Mar 8 2021, 13:02:45) +[GCC 9.3.0] +PYTHONPATH + /builds/DATAnet/adurl/.ci + /usr/lib/python2.7 + /usr/lib/python2.7/plat-x86_64-linux-gnu + /usr/lib/python2.7/lib-tk + /usr/lib/python2.7/lib-old + /usr/lib/python2.7/lib-dynload + /usr/local/lib/python2.7/dist-packages + /usr/lib/python2.7/dist-packages +platform = linux-x86_64 +Opening setup file .ci-local/stable.set +DEBUG:__main__:.ci-local/stable.set: setup[MODULES] = sncseq sscan calc asyn autosave busy area_Detector ADSupport ADCore +DEBUG:__main__:.ci-local/stable.set: setup[BASE] = R7.0.3.1 +DEBUG:__main__:.ci-local/stable.set: setup[SNCSEQ] = R2-2-9 +DEBUG:__main__:.ci-local/stable.set: setup[SSCAN] = R2-11-5 +DEBUG:__main__:.ci-local/stable.set: setup[CALC] = R3-7-3 +DEBUG:__main__:.ci-local/stable.set: setup[ASYN] = R4-41 +DEBUG:__main__:.ci-local/stable.set: setup[BUSY] = R1-7-1 +DEBUG:__main__:.ci-local/stable.set: setup[AUTOSAVE] = R5-7-1 +DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR] = R3-10 +DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR_REPOURL] = https://github.com/areaDetector/areaDetector +DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR_RECURSIVE] = NO +DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR_HOOK] = .ci-local/area_detector_hook.sh +DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT] = master +DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT_REPOURL] = https://github.com/pheest/ADSupport +DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT_RECURSIVE] = NO +DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT_HOOK] = .ci-local/adsupport_hook.sh +DEBUG:__main__:.ci-local/stable.set: setup[ADCORE] = R3-10 +DEBUG:__main__:.ci-local/stable.set: setup[ADCORE_REPOURL] = https://github.com/areaDetector/ADCore +DEBUG:__main__:.ci-local/stable.set: setup[ADCORE_RECURSIVE] = NO +DEBUG:__main__:.ci-local/stable.set: setup[ADCORE_HOOK] = .ci-local/adcore_hook.sh +DEBUG:__main__:Done with setup file .ci-local/stable.set +Opening setup file .ci/defaults.set +DEBUG:__main__:.ci/defaults.set: setup[BASE_DIRNAME] = base +DEBUG:__main__:.ci/defaults.set: setup[BASE_REPONAME] = epics-base +DEBUG:__main__:.ci/defaults.set: setup[BASE_REPOOWNER] = epics-base +DEBUG:__main__:.ci/defaults.set: setup[BASE_VARNAME] = EPICS_BASE +DEBUG:__main__:.ci/defaults.set: setup[PVDATA_DIRNAME] = pvData +DEBUG:__main__:.ci/defaults.set: setup[PVDATA_REPONAME] = pvDataCPP +DEBUG:__main__:.ci/defaults.set: setup[PVDATA_REPOOWNER] = epics-base +DEBUG:__main__:.ci/defaults.set: setup[PVACCESS_DIRNAME] = pvAccess +DEBUG:__main__:.ci/defaults.set: setup[PVACCESS_REPONAME] = pvAccessCPP +DEBUG:__main__:.ci/defaults.set: setup[PVACCESS_REPOOWNER] = epics-base +DEBUG:__main__:.ci/defaults.set: setup[NTYPES_DIRNAME] = normativeTypes +DEBUG:__main__:.ci/defaults.set: setup[NTYPES_REPONAME] = normativeTypesCPP +DEBUG:__main__:.ci/defaults.set: setup[NTYPES_REPOOWNER] = epics-base +DEBUG:__main__:.ci/defaults.set: setup[SNCSEQ_REPOURL] = https://www-csr.bessy.de/control/SoftDist/sequencer/repo/branch-2-2.git +DEBUG:__main__:.ci/defaults.set: setup[SNCSEQ_DEPTH] = 0 +DEBUG:__main__:.ci/defaults.set: setup[SNCSEQ_DIRNAME] = seq +DEBUG:__main__:.ci/defaults.set: setup[STREAM_REPONAME] = StreamDevice +DEBUG:__main__:.ci/defaults.set: setup[STREAM_REPOOWNER] = paulscherrerinstitute +DEBUG:__main__:Done with setup file .ci/defaults.set +DEBUG:__main__:ENV assignment: BASE_RECURSIVE = YES +DEBUG:__main__:Loaded setup +DEBUG:__main__: ADCORE = "R3-10" +DEBUG:__main__: ADCORE_DEPTH = "-1" +DEBUG:__main__: ADCORE_DIRNAME = "adcore" +DEBUG:__main__: ADCORE_HOOK = ".ci-local/adcore_hook.sh" +DEBUG:__main__: ADCORE_RECURSIVE = "NO" +DEBUG:__main__: ADCORE_REPONAME = "adcore" +DEBUG:__main__: ADCORE_REPOOWNER = "epics-modules" +DEBUG:__main__: ADCORE_REPOURL = "https://github.com/areaDetector/ADCore" +DEBUG:__main__: ADCORE_VARNAME = "ADCORE" +DEBUG:__main__: ADD_MODULES = "" +DEBUG:__main__: ADSUPPORT = "master" +DEBUG:__main__: ADSUPPORT_DEPTH = "-1" +DEBUG:__main__: ADSUPPORT_DIRNAME = "adsupport" +DEBUG:__main__: ADSUPPORT_HOOK = ".ci-local/adsupport_hook.sh" +DEBUG:__main__: ADSUPPORT_RECURSIVE = "NO" +DEBUG:__main__: ADSUPPORT_REPONAME = "adsupport" +DEBUG:__main__: ADSUPPORT_REPOOWNER = "epics-modules" +DEBUG:__main__: ADSUPPORT_REPOURL = "https://github.com/pheest/ADSupport" +DEBUG:__main__: ADSUPPORT_VARNAME = "ADSUPPORT" +DEBUG:__main__: AREA_DETECTOR = "R3-10" +DEBUG:__main__: AREA_DETECTOR_DEPTH = "-1" +DEBUG:__main__: AREA_DETECTOR_DIRNAME = "area_detector" +DEBUG:__main__: AREA_DETECTOR_HOOK = ".ci-local/area_detector_hook.sh" +DEBUG:__main__: AREA_DETECTOR_RECURSIVE = "NO" +DEBUG:__main__: AREA_DETECTOR_REPONAME = "area_detector" +DEBUG:__main__: AREA_DETECTOR_REPOOWNER = "epics-modules" +DEBUG:__main__: AREA_DETECTOR_REPOURL = "https://github.com/areaDetector/areaDetector" +DEBUG:__main__: AREA_DETECTOR_VARNAME = "AREA_DETECTOR" +DEBUG:__main__: ASYN = "R4-41" +DEBUG:__main__: ASYN_DEPTH = "-1" +DEBUG:__main__: ASYN_DIRNAME = "asyn" +DEBUG:__main__: ASYN_RECURSIVE = "YES" +DEBUG:__main__: ASYN_REPONAME = "asyn" +DEBUG:__main__: ASYN_REPOOWNER = "epics-modules" +DEBUG:__main__: ASYN_REPOURL = "https://github.com/epics-modules/asyn.git" +DEBUG:__main__: ASYN_VARNAME = "ASYN" +DEBUG:__main__: AUTOSAVE = "R5-7-1" +DEBUG:__main__: AUTOSAVE_DEPTH = "-1" +DEBUG:__main__: AUTOSAVE_DIRNAME = "autosave" +DEBUG:__main__: AUTOSAVE_RECURSIVE = "YES" +DEBUG:__main__: AUTOSAVE_REPONAME = "autosave" +DEBUG:__main__: AUTOSAVE_REPOOWNER = "epics-modules" +DEBUG:__main__: AUTOSAVE_REPOURL = "https://github.com/epics-modules/autosave.git" +DEBUG:__main__: AUTOSAVE_VARNAME = "AUTOSAVE" +DEBUG:__main__: BASE = "R7.0.3.1" +DEBUG:__main__: BASE_DEPTH = "-1" +DEBUG:__main__: BASE_DIRNAME = "base" +DEBUG:__main__: BASE_RECURSIVE = "YES" +DEBUG:__main__: BASE_REPONAME = "epics-base" +DEBUG:__main__: BASE_REPOOWNER = "epics-base" +DEBUG:__main__: BASE_REPOURL = "https://github.com/epics-base/epics-base.git" +DEBUG:__main__: BASE_VARNAME = "EPICS_BASE" +DEBUG:__main__: BUSY = "R1-7-1" +DEBUG:__main__: BUSY_DEPTH = "-1" +DEBUG:__main__: BUSY_DIRNAME = "busy" +DEBUG:__main__: BUSY_RECURSIVE = "YES" +DEBUG:__main__: BUSY_REPONAME = "busy" +DEBUG:__main__: BUSY_REPOOWNER = "epics-modules" +DEBUG:__main__: BUSY_REPOURL = "https://github.com/epics-modules/busy.git" +DEBUG:__main__: BUSY_VARNAME = "BUSY" +DEBUG:__main__: CALC = "R3-7-3" +DEBUG:__main__: CALC_DEPTH = "-1" +DEBUG:__main__: CALC_DIRNAME = "calc" +DEBUG:__main__: CALC_RECURSIVE = "YES" +DEBUG:__main__: CALC_REPONAME = "calc" +DEBUG:__main__: CALC_REPOOWNER = "epics-modules" +DEBUG:__main__: CALC_REPOURL = "https://github.com/epics-modules/calc.git" +DEBUG:__main__: CALC_VARNAME = "CALC" +DEBUG:__main__: MODULES = "sncseq sscan calc asyn autosave busy area_Detector ADSupport ADCore" +DEBUG:__main__: NTYPES_DIRNAME = "normativeTypes" +DEBUG:__main__: NTYPES_REPONAME = "normativeTypesCPP" +DEBUG:__main__: NTYPES_REPOOWNER = "epics-base" +DEBUG:__main__: PVACCESS_DIRNAME = "pvAccess" +DEBUG:__main__: PVACCESS_REPONAME = "pvAccessCPP" +DEBUG:__main__: PVACCESS_REPOOWNER = "epics-base" +DEBUG:__main__: PVDATA_DIRNAME = "pvData" +DEBUG:__main__: PVDATA_REPONAME = "pvDataCPP" +DEBUG:__main__: PVDATA_REPOOWNER = "epics-base" +DEBUG:__main__: REPOOWNER = "epics-modules" +DEBUG:__main__: SNCSEQ = "R2-2-9" +DEBUG:__main__: SNCSEQ_DEPTH = "0" +DEBUG:__main__: SNCSEQ_DIRNAME = "seq" +DEBUG:__main__: SNCSEQ_RECURSIVE = "YES" +DEBUG:__main__: SNCSEQ_REPONAME = "sncseq" +DEBUG:__main__: SNCSEQ_REPOOWNER = "epics-modules" +DEBUG:__main__: SNCSEQ_REPOURL = "https://www-csr.bessy.de/control/SoftDist/sequencer/repo/branch-2-2.git" +DEBUG:__main__: SNCSEQ_VARNAME = "SNCSEQ" +DEBUG:__main__: SSCAN = "R2-11-5" +DEBUG:__main__: SSCAN_DEPTH = "-1" +DEBUG:__main__: SSCAN_DIRNAME = "sscan" +DEBUG:__main__: SSCAN_RECURSIVE = "YES" +DEBUG:__main__: SSCAN_REPONAME = "sscan" +DEBUG:__main__: SSCAN_REPOOWNER = "epics-modules" +DEBUG:__main__: SSCAN_REPOURL = "https://github.com/epics-modules/sscan.git" +DEBUG:__main__: SSCAN_VARNAME = "SSCAN" +DEBUG:__main__: STREAM_REPONAME = "StreamDevice" +DEBUG:__main__: STREAM_REPOOWNER = "paulscherrerinstitute" +DEBUG:__main__:Effective module list: ['BASE', 'SNCSEQ', 'SSCAN', 'CALC', 'ASYN', 'AUTOSAVE', 'BUSY', 'AREA_DETECTOR', 'ADSUPPORT', 'ADCORE'] +DEBUG:__main__:EXEC 'git config --global advice.detachedHead false' in /builds/DATAnet/adurl +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Adding dependency BASE with tag R7.0.3.1 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-base/epics-base.git R7.0.3.1' in /builds/DATAnet/adurl +9cd04f577222ab0eecae23dfc143d1c494d06e2e refs/tags/R7.0.3.1 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency BASE: directory /builds/DATAnet/adurl/.cache/base-R7.0.3.1 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit 34834dfe973a577f342503441e7b33b7fe322de5, git head is 34834dfe973a577f342503441e7b33b7fe322de5 +Found R7.0.3.1 of dependency BASE up-to-date in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 +DEBUG:__main__:RELEASE.local does not exist, creating it +DEBUG:__main__:Opening RELEASE.local for adding 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding new definition: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency SNCSEQ with tag R2-2-9 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://www-csr.bessy.de/control/SoftDist/sequencer/repo/branch-2-2.git R2-2-9' in /builds/DATAnet/adurl +b21d8a8763599326115ebbba6c62905d814b3ccb refs/tags/R2-2-9 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency SNCSEQ: directory /builds/DATAnet/adurl/.cache/seq-R2-2-9 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/seq-R2-2-9 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit e5e361509df1c0d3c667872243d8f7a9894514b4, git head is e5e361509df1c0d3c667872243d8f7a9894514b4 +Found R2-2-9 of dependency SNCSEQ up-to-date in /builds/DATAnet/adurl/.cache/seq-R2-2-9 +DEBUG:__main__:Opening RELEASE.local for adding 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency SSCAN with tag R2-11-5 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/sscan.git R2-11-5' in /builds/DATAnet/adurl +f4ed91fa90d81eee5ba92d0d0c00d8d5d0b269da refs/tags/R2-11-5 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency SSCAN: directory /builds/DATAnet/adurl/.cache/sscan-R2-11-5 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/sscan-R2-11-5 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit f4ed91fa90d81eee5ba92d0d0c00d8d5d0b269da, git head is f4ed91fa90d81eee5ba92d0d0c00d8d5d0b269da +Found R2-11-5 of dependency SSCAN up-to-date in /builds/DATAnet/adurl/.cache/sscan-R2-11-5 +DEBUG:__main__:Opening RELEASE.local for adding 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency CALC with tag R3-7-3 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/calc.git R3-7-3' in /builds/DATAnet/adurl +2a3ceff7afee73fd82a2c60d637611020cb65bca refs/tags/R3-7-3 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency CALC: directory /builds/DATAnet/adurl/.cache/calc-R3-7-3 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/calc-R3-7-3 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit 2a3ceff7afee73fd82a2c60d637611020cb65bca, git head is 2a3ceff7afee73fd82a2c60d637611020cb65bca +Found R3-7-3 of dependency CALC up-to-date in /builds/DATAnet/adurl/.cache/calc-R3-7-3 +DEBUG:__main__:Opening RELEASE.local for adding 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency ASYN with tag R4-41 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/asyn.git R4-41' in /builds/DATAnet/adurl +0c70f16c4b27f6717920f40e8c8e0fb2182cac64 refs/tags/R4-41 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency ASYN: directory /builds/DATAnet/adurl/.cache/asyn-R4-41 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/asyn-R4-41 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit 0c70f16c4b27f6717920f40e8c8e0fb2182cac64, git head is 0c70f16c4b27f6717920f40e8c8e0fb2182cac64 +Found R4-41 of dependency ASYN up-to-date in /builds/DATAnet/adurl/.cache/asyn-R4-41 +DEBUG:__main__:Opening RELEASE.local for adding 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency AUTOSAVE with tag R5-7-1 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/autosave.git R5-7-1' in /builds/DATAnet/adurl +31e041c2ba4e0212f11ce5cf5541b572d1d1e887 refs/tags/R5-7-1 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency AUTOSAVE: directory /builds/DATAnet/adurl/.cache/autosave-R5-7-1 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/autosave-R5-7-1 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit 31e041c2ba4e0212f11ce5cf5541b572d1d1e887, git head is 31e041c2ba4e0212f11ce5cf5541b572d1d1e887 +Found R5-7-1 of dependency AUTOSAVE up-to-date in /builds/DATAnet/adurl/.cache/autosave-R5-7-1 +DEBUG:__main__:Opening RELEASE.local for adding 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency BUSY with tag R1-7-1 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/busy.git R1-7-1' in /builds/DATAnet/adurl +adb6da968ceac134d4d67be495e9f196c31a1b3d refs/tags/R1-7-1 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Dependency BUSY: directory /builds/DATAnet/adurl/.cache/busy-R1-7-1 exists, comparing checked-out commit +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/busy-R1-7-1 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Found checked_out commit adb6da968ceac134d4d67be495e9f196c31a1b3d, git head is adb6da968ceac134d4d67be495e9f196c31a1b3d +Found R1-7-1 of dependency BUSY up-to-date in /builds/DATAnet/adurl/.cache/busy-R1-7-1 +DEBUG:__main__:Opening RELEASE.local for adding 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency AREA_DETECTOR with tag R3-10 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/areaDetector/areaDetector R3-10' in /builds/DATAnet/adurl +9739d42659d180f88e08104cad4d02cbd414a75f refs/tags/R3-10 +DEBUG:__main__:EXEC DONE +Cloning R3-10 of dependency AREA_DETECTOR into /builds/DATAnet/adurl/.cache/area_detector-R3-10 +DEBUG:__main__:EXEC 'git clone --quiet --depth 5 --branch R3-10 https://github.com/areaDetector/areaDetector area_detector-R3-10' in /builds/DATAnet/adurl/.cache +DEBUG:__main__:EXEC DONE +commit 9739d42659d180f88e08104cad4d02cbd414a75f +Author: Mark Rivers +Date: Sun Sep 20 15:28:44 2020 -0500 + + Notes for R3-10 +DEBUG:__main__:Setting do_recompile = True (all following modules will be recompiled +Running hook .ci-local/area_detector_hook.sh in /builds/DATAnet/adurl/.cache/area_detector-R3-10 +Reading package lists... +Building dependency tree... +Reading state information... +libxext-dev is already the newest version (2:1.3.4-0ubuntu1). +libx11-dev is already the newest version (2:1.6.9-2ubuntu1.2). +The following package was automatically installed and is no longer required: + libfwupdplugin1 +Use 'sudo apt autoremove' to remove it. +0 to upgrade, 0 to newly install, 0 to remove and 8 not to upgrade. +/builds/DATAnet/adurl/.cache/area_detector-R3-10/configure /builds/DATAnet/adurl/.cache/area_detector-R3-10 +Copying from example. +/builds/DATAnet/adurl/.cache/area_detector-R3-10 +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/area_detector-R3-10 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Writing hash of checked-out dependency (9739d42659d180f88e08104cad4d02cbd414a75f) to marker file +DEBUG:__main__:Opening RELEASE.local for adding 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency ADSUPPORT with tag master +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/pheest/ADSupport master' in /builds/DATAnet/adurl +1b5b589b560b90fb37d152ed7440aef4162119b5 refs/heads/master +DEBUG:__main__:EXEC DONE +Cloning master of dependency ADSUPPORT into /builds/DATAnet/adurl/.cache/adsupport-master +DEBUG:__main__:EXEC 'git clone --quiet --depth 5 --branch master https://github.com/pheest/ADSupport adsupport-master' in /builds/DATAnet/adurl/.cache +DEBUG:__main__:EXEC DONE +commit 1b5b589b560b90fb37d152ed7440aef4162119b5 +Author: Heesterman, Peter J +Date: Thu May 19 16:55:57 2022 +0100 + + Need to define XMLPUBFUN __declspec(dllimport) for DLL importing builds. + There's no need for any difference between Visual Studio and MingW build defines. +DEBUG:__main__:Setting do_recompile = True (all following modules will be recompiled +Running hook .ci-local/adsupport_hook.sh in /builds/DATAnet/adurl/.cache/adsupport-master +Reading package lists... +Building dependency tree... +Reading state information... +libxext-dev is already the newest version (2:1.3.4-0ubuntu1). +libx11-dev is already the newest version (2:1.6.9-2ubuntu1.2). +The following package was automatically installed and is no longer required: + libfwupdplugin1 +Use 'sudo apt autoremove' to remove it. +0 to upgrade, 0 to newly install, 0 to remove and 8 not to upgrade. +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/adsupport-master +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Writing hash of checked-out dependency (1b5b589b560b90fb37d152ed7440aef4162119b5) to marker file +DEBUG:__main__:Opening RELEASE.local for adding 'ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Adding dependency ADCORE with tag R3-10 +DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/areaDetector/ADCore R3-10' in /builds/DATAnet/adurl +7fd8c0f2f3c96083193d5eaee61e85ea5f5e9fe1 refs/tags/R3-10 +DEBUG:__main__:EXEC DONE +Cloning R3-10 of dependency ADCORE into /builds/DATAnet/adurl/.cache/adcore-R3-10 +DEBUG:__main__:EXEC 'git clone --quiet --depth 5 --branch R3-10 https://github.com/areaDetector/ADCore adcore-R3-10' in /builds/DATAnet/adurl/.cache +DEBUG:__main__:EXEC DONE +commit 7fd8c0f2f3c96083193d5eaee61e85ea5f5e9fe1 +Author: Mark Rivers +Date: Sun Sep 20 12:35:28 2020 -0500 + + Notes for R3-10 +DEBUG:__main__:Setting do_recompile = True (all following modules will be recompiled +Running hook .ci-local/adcore_hook.sh in /builds/DATAnet/adurl/.cache/adcore-R3-10 +DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/adcore-R3-10 +DEBUG:__main__:EXEC DONE +DEBUG:__main__:Writing hash of checked-out dependency (7fd8c0f2f3c96083193d5eaee61e85ea5f5e9fe1) to marker file +DEBUG:__main__:Opening RELEASE.local for adding 'ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-10' +DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' +DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' +DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' +DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' +DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' +DEBUG:__main__:Writing line to RELEASE.local: 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' +DEBUG:__main__:Writing line to RELEASE.local: 'ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master' +DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it +DEBUG:__main__:Adding new definition: 'ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-10' +DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' +DEBUG:__main__:Setting up the build environment +DEBUG:__main__:Using EPICS Base at /builds/DATAnet/adurl/.cache/base-R7.0.3.1 +DEBUG:__main__:Running script to detect EPICS host architecture in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 +DEBUG:__main__:/builds/DATAnet/adurl/.cache/base-R7.0.3.1/src/tools/EpicsHostArch.pl returned: linux-x86_64 +DEBUG:__main__:Check if EPICS Base is a 3.14 series: False +DEBUG:__main__:Check if make is a 3.x series: False +EPICS_HOST_ARCH = linux-x86_64 +$ make --version +DEBUG:__main__:EXEC 'make --version' in /builds/DATAnet/adurl +GNU Make 4.2.1 +Built for x86_64-pc-linux-gnu +Copyright (C) 1988-2016 Free Software Foundation, Inc. +Licence GPLv3+: GNU GPL version 3 or later +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law. +DEBUG:__main__:EXEC DONE +$ perl --version + +This is perl 5, version 30, subversion 0 (v5.30.0) built for x86_64-linux-gnu-thread-multi +(with 50 registered patches, see perl -V for more detail) + +Copyright 1987-2019, Larry Wall + +Perl may be copied only under the terms of either the Artistic License or the +GNU General Public License, which may be found in the Perl 5 source kit. + +Complete documentation for Perl, including FAQ lists, should be found on +this system using "man perl" or "perldoc perl". If you have access to the +Internet, point your browser at http://www.perl.org/, the Perl Home Page. + +$ gcc --version +gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 +Copyright (C) 2019 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. + +$ g++ --version +g++ (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 +Copyright (C) 2019 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. + +SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9 +SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5 +CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3 +ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41 +AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1 +BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1 +AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10 +ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master +ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-10 +EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1 + +-include $(TOP)/../RELEASE.local + +-include $(TOP)/../RELEASE.local + +9739d42659d180f88e08104cad4d02cbd414a75f + +7fd8c0f2f3c96083193d5eaee61e85ea5f5e9fe1 + +1b5b589b560b90fb37d152ed7440aef4162119b5 + +-include $(TOP)/../RELEASE.local + +DEBUG:__main__:EXEC 'make -j2 -Otarget' in /builds/DATAnet/adurl/.cache/area_detector-R3-10 +Building dependency AREA_DETECTOR in /builds/DATAnet/adurl/.cache/area_detector-R3-10 +make -C /builds/DATAnet/adurl/.cache/adsupport-master install +make -C ./configure install +make -C ./supportApp install +make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../.. +make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' +make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' +mkdir -p O.Common +make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' +make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ + T_A=linux-x86_64 install +make -C ./jpegSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease +make -C ./zlibSrc install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompressJPEG.d ../decompressJPEG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemnobs.d ../jmemnobs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemmgr.d ../jmemmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jutils.d ../jutils.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant2.d ../jquant2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zutil.d ../zutil.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant1.d ../jquant1.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uncompr.d ../uncompr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctint.d ../jidctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF trees.d ../trees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctfst.d ../jidctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inftrees.d ../inftrees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctflt.d ../jidctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inflate.d ../inflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctint.d ../jfdctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inffast.d ../inffast.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctfst.d ../jfdctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF infback.d ../infback.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctflt.d ../jfdctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzwrite.d ../gzwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jerror.d ../jerror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdtrans.d ../jdtrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzread.d ../gzread.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdsample.d ../jdsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzlib.d ../gzlib.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdpostct.d ../jdpostct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzclose.d ../gzclose.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmerge.d ../jdmerge.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF deflate.d ../deflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmaster.d ../jdmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crc32.d ../crc32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmarker.d ../jdmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d ../compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmainct.d ../jdmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdinput.d ../jdinput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdhuff.d ../jdhuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jddctmgr.d ../jddctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF adler32.d ../adler32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcolor.d ../jdcolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcoefct.d ../jdcoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatasrc.d ../jdatasrc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatadst.d ../jdatadst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdarith.d ../jdarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapistd.d ../jdapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +mkdir ../../../include +mkdir ../../../include/os +mkdir ../../../include/os/Linux +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapimin.d ../jdapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jctrans.d ../jctrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcsample.d ../jcsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcprepct.d ../jcprepct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcparam.d ../jcparam.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcomapi.d ../jcomapi.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmaster.d ../jcmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmarker.d ../jcmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../adler32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmainct.d ../jcmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcinit.d ../jcinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jchuff.d ../jchuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcdctmgr.d ../jcdctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccolor.d ../jccolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccoefct.d ../jccoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcarith.d ../jcarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapistd.d ../jcapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapimin.d ../jcapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../crc32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jaricom.d ../jaricom.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jaricom.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../deflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzclose.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzlib.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jccoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzread.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jccolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcdctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../infback.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../inffast.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jchuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../inflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../inftrees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcomapi.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../trees.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../uncompr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../zutil.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcparam.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +/usr/bin/ar -rc libzlib.a adler32.o compress.o crc32.o deflate.o gzclose.o gzlib.o gzread.o gzwrite.o infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +/usr/bin/ranlib libzlib.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +g++ -o libzlib.so -shared -fPIC -Wl,-hlibzlib.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 adler32.o compress.o crc32.o deflate.o gzclose.o gzlib.o gzread.o gzwrite.o infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' +make -C ./szipSrc install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcprepct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF sz_api.d ../sz_api.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF rice.d ../rice.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d ../encoding.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../encoding.c +../encoding.c:16:15: warning: ‘szip_encoder_status’ initialized and declared ‘extern’ + 16 | extern char * szip_encoder_status = "SZIP ENCODER ENABLED"; + | ^~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jctrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdapimin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdapistd.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdarith.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdatadst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdatasrc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdcoefct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdcolor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jddctmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdhuff.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdinput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmainct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmarker.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmaster.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../rice.c +../rice.c: In function ‘encode_scanline’: +../rice.c:1478:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1478 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1479:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1479 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1480:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1480 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1481:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1481 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1482:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1482 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1483:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1483 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1484:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1484 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1492:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1492 | value = (value << 1) | *s++ & 1; + | ~~~~~^~~ +../rice.c:1519:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1519 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1520:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1520 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1521:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1521 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1522:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1522 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1523:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1523 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1524:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1524 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1525:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1525 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1533:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1533 | value = (value << 2) | *s++ & 3; + | ~~~~~^~~ +../rice.c:1560:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1560 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1561:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1561 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1562:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1562 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1563:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1563 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1567:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1567 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1568:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1568 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1576:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1576 | value = (value << 3) | *s++ & 7; + | ~~~~~^~~ +../rice.c:1603:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1603 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1604:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1604 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1605:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1605 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1609:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1609 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1610:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1610 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1611:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1611 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1619:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1619 | value = (value << 4) | *s++ & 0xf; + | ~~~~~^~~~~ +../rice.c:1646:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1646 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1647:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1647 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1651:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1651 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1652:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1652 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1656:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1656 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1664:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1664 | value = (value << 5) | *s++ & 0x1f; + | ~~~~~^~~~~~ +../rice.c:1689:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1689 | value = (value << 6) | *s++ & 0x3f; + | ~~~~~^~~~~~ +../rice.c:1706:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1706 | value = (value << 7) | *s++ & 0x7f; + | ~~~~~^~~~~~ +../rice.c:1723:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 1723 | value = (value << 8) | *s++ & 0xff; + | ~~~~~^~~~~~ +../rice.c: In function ‘rice_decode’: +../rice.c:4977:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4977 | *(s+1) = (*(s+1) << 1) | (data_word >> 30) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4978:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4978 | *(s+2) = (*(s+2) << 1) | (data_word >> 29) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4979:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4979 | *(s+3) = (*(s+3) << 1) | (data_word >> 28) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4980:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4980 | *(s+4) = (*(s+4) << 1) | (data_word >> 27) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4981:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4981 | *(s+5) = (*(s+5) << 1) | (data_word >> 26) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4982:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4982 | *(s+6) = (*(s+6) << 1) | (data_word >> 25) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4983:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4983 | *(s+7) = (*(s+7) << 1) | (data_word >> 24) & 1; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4998:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4998 | *(s+0) = (*(s+0) << 2) | (data_word >> 30) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:4999:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 4999 | *(s+1) = (*(s+1) << 2) | (data_word >> 28) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5000:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5000 | *(s+2) = (*(s+2) << 2) | (data_word >> 26) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5001:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5001 | *(s+3) = (*(s+3) << 2) | (data_word >> 24) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5002:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5002 | *(s+4) = (*(s+4) << 2) | (data_word >> 22) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5003:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5003 | *(s+5) = (*(s+5) << 2) | (data_word >> 20) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5004:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5004 | *(s+6) = (*(s+6) << 2) | (data_word >> 18) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5005:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5005 | *(s+7) = (*(s+7) << 2) | (data_word >> 16) & 3; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5017:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5017 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5018:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5018 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5019:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5019 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5020:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5020 | *(s+3) = (*(s+3) << 3) | (data_word >> 20) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5021:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5021 | *(s+4) = (*(s+4) << 3) | (data_word >> 17) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5031:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5031 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5032:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5032 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5033:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5033 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; + | ~~~~~~~~~~~~~~~~~~^~~ +../rice.c:5048:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5048 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5049:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5049 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5050:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5050 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5051:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5051 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5058:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5058 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5059:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5059 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5060:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5060 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5061:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5061 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; + | ~~~~~~~~~~~~~~~~~~^~~~~ +../rice.c:5073:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5073 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5074:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5074 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5075:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5075 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5085:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5085 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5086:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5086 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5087:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5087 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5097:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5097 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5098:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5098 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5113:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5113 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5114:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5114 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5124:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5124 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5125:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5125 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5135:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5135 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5136:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5136 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5146:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5146 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5147:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5147 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5162:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5162 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5163:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5163 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5173:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5173 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5174:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5174 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5184:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5184 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5185:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5185 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5195:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5195 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5196:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5196 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5211:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5211 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5212:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5212 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5219:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5219 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5220:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5220 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5227:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5227 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5228:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5228 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5235:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5235 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5236:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] + 5236 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; + | ~~~~~~~~~~~~~~~~~~^~~~~~ +../rice.c:5358:8: warning: ‘ext2_bit’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 5358 | if (ext2_bit) + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmerge.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../sz_api.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdpostct.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +/usr/bin/ar -rc libszip.a encoding.o rice.o sz_api.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +/usr/bin/ranlib libszip.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +g++ -o libszip.so -shared -fPIC -Wl,-hlibszip.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 encoding.o rice.o sz_api.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' +make -C ./bitshuffleSrc install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdsample.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdtrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Nothing to be done for 'install'. +make -C ./cbfSrc install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jerror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF md5c.d ../md5c.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_ws.d ../cbf_ws.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jfdctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_write_binary.d ../cbf_write_binary.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_write.d ../cbf_write.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_uncompressed.d ../cbf_uncompressed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_tree.d ../cbf_tree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jfdctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_stx.d ../cbf_stx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_string.d ../cbf_string.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_simple.d ../cbf_simple.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_read_mime.d ../cbf_read_mime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_read_binary.d ../cbf_read_binary.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_predictor.d ../cbf_predictor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_packed.d ../cbf_packed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_lex.d ../cbf_lex.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_getopt.d ../cbf_getopt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_file.d ../cbf_file.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_context.d ../cbf_context.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_compress.d ../cbf_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_codes.d ../cbf_codes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_canonical.d ../cbf_canonical.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_byte_offset.d ../cbf_byte_offset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_binary.d ../cbf_binary.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_ascii.d ../cbf_ascii.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_alloc.d ../cbf_alloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf.d ../cbf.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jfdctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jidctflt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jidctfst.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf.c +../cbf.c: In function ‘cbf_validate’: +../cbf.c:7388:8: warning: ignoring return value of ‘fscanf’, declared with attribute warn_unused_result [-Wunused-result] + 7388 | fscanf(fout, "%s", output); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cbf.c:7493:8: warning: ignoring return value of ‘fscanf’, declared with attribute warn_unused_result [-Wunused-result] + 7493 | fscanf(fout, "%s", output); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../cbf.c: In function ‘cbf_drel’: +../cbf.c:8417:2: warning: ignoring return value of ‘system’, declared with attribute warn_unused_result [-Wunused-result] + 8417 | system(preprocess); + | ^~~~~~~~~~~~~~~~~~ +../cbf.c:8425:2: warning: ignoring return value of ‘system’, declared with attribute warn_unused_result [-Wunused-result] + 8425 | system(evaluate); + | ^~~~~~~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from ../cbf.c:264: +In function ‘strncpy’, + inlined from ‘cbf_validate’ at ../cbf.c:7362:6: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 80 bytes from a string of length 81 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘cbf_validate’ at ../cbf.c:7441:19: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 80 bytes from a string of length 81 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_alloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_ascii.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_binary.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_byte_offset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_canonical.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jidctint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jquant1.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jquant2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jutils.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_codes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jmemmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jmemnobs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_context.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../decompressJPEG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +g++ -o libjpeg.so -shared -fPIC -Wl,-hlibjpeg.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jaricom.o jcapimin.o jcapistd.o jcarith.o jccoefct.o jccolor.o jcdctmgr.o jchuff.o jcinit.o jcmainct.o jcmarker.o jcmaster.o jcomapi.o jcparam.o jcprepct.o jcsample.o jctrans.o jdapimin.o jdapistd.o jdarith.o jdatadst.o jdatasrc.o jdcoefct.o jdcolor.o jddctmgr.o jdhuff.o jdinput.o jdmainct.o jdmarker.o jdmaster.o jdmerge.o jdpostct.o jdsample.o jdtrans.o jerror.o jfdctflt.o jfdctfst.o jfdctint.o jidctflt.o jidctfst.o jidctint.o jquant1.o jquant2.o jutils.o jmemmgr.o jmemnobs.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +/usr/bin/ar -rc libjpeg.a jaricom.o jcapimin.o jcapistd.o jcarith.o jccoefct.o jccolor.o jcdctmgr.o jchuff.o jcinit.o jcmainct.o jcmarker.o jcmaster.o jcomapi.o jcparam.o jcprepct.o jcsample.o jctrans.o jdapimin.o jdapistd.o jdarith.o jdatadst.o jdatasrc.o jdcoefct.o jdcolor.o jddctmgr.o jdhuff.o jdinput.o jdmainct.o jdmarker.o jdmaster.o jdmerge.o jdpostct.o jdsample.o jdtrans.o jerror.o jfdctflt.o jfdctfst.o jfdctint.o jidctflt.o jidctfst.o jidctint.o jquant1.o jquant2.o jutils.o jmemmgr.o jmemnobs.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +/usr/bin/ranlib libjpeg.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +/usr/bin/ar -rc libdecompressJPEG.a decompressJPEG.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +/usr/bin/ranlib libdecompressJPEG.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +g++ -o libdecompressJPEG.so -shared -fPIC -Wl,-hlibdecompressJPEG.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 decompressJPEG.o -ljpeg -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_file.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_getopt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_packed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_predictor.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_read_binary.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_lex.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_read_mime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_string.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_stx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_tree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_uncompressed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_write.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_write_binary.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_simple.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_ws.c +../cbf_ws.c: In function ‘cbf_find_bracketstring’: +../cbf_ws.c:1087:26: warning: ‘tokentype’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1087 | tokentype[depth-1]= *stringtype; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make -C ./bloscSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle.d ../../../supportApp/bloscSrc/blosc/shuffle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bitshuffle-generic.d ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../md5c.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle-generic.d ../../../supportApp/bloscSrc/blosc/shuffle-generic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosclz.d ../../../supportApp/bloscSrc/blosc/blosclz.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc.d ../../../supportApp/bloscSrc/blosc/blosc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4hc.d ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4.d ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +/usr/bin/ar -rc libcbfad.a cbf.o cbf_alloc.o cbf_ascii.o cbf_binary.o cbf_byte_offset.o cbf_canonical.o cbf_codes.o cbf_compress.o cbf_context.o cbf_file.o cbf_getopt.o cbf_lex.o cbf_packed.o cbf_predictor.o cbf_read_binary.o cbf_read_mime.o cbf_simple.o cbf_string.o cbf_stx.o cbf_tree.o cbf_uncompressed.o cbf_write.o cbf_write_binary.o cbf_ws.o md5c.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +/usr/bin/ranlib libcbfad.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-stubs-internal.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +g++ -o libcbfad.so -shared -fPIC -Wl,-hlibcbfad.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 cbf.o cbf_alloc.o cbf_ascii.o cbf_binary.o cbf_byte_offset.o cbf_canonical.o cbf_codes.o cbf_compress.o cbf_context.o cbf_file.o cbf_getopt.o cbf_lex.o cbf_packed.o cbf_predictor.o cbf_read_binary.o cbf_read_mime.o cbf_simple.o cbf_string.o cbf_stx.o cbf_tree.o cbf_uncompressed.o cbf_write.o cbf_write_binary.o cbf_ws.o md5c.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-sinksource.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make -C ./tiffSrc install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-c.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_decompress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_decompress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_unix.d ../tif_unix.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstdmt_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_zip.d ../tif_zip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_write.d ../tif_write.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_warning.d ../tif_warning.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_version.d ../tif_version.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_common.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_tile.d ../tif_tile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xxhash.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_thunder.d ../tif_thunder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threading.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_swab.d ../tif_swab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pool.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_strip.d ../tif_strip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_decompress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error_private.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_read.d ../tif_read.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_print.d ../tif_print.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_predict.d ../tif_predict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_pixarlog.d ../tif_pixarlog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_packbits.d ../tif_packbits.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entropy_common.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_open.d ../tif_open.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_ojpeg.d ../tif_ojpeg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_next.d ../tif_next.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_lzw.d ../tif_lzw.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_luv.d ../tif_luv.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg_12.d ../tif_jpeg_12.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg.d ../tif_jpeg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jbig.d ../tif_jbig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_getimage.d ../tif_getimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_flush.d ../tif_flush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3sm.d ../tif_fax3sm.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3.d ../tif_fax3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_extension.d ../tif_extension.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_error.d ../tif_error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dumpmode.d ../tif_dumpmode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirwrite.d ../tif_dirwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirread.d ../tif_dirread.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirinfo.d ../tif_dirinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dir.d ../tif_dir.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_compress.d ../tif_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_color.d ../tif_color.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_codec.d ../tif_codec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_close.d ../tif_close.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_aux.d ../tif_aux.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_aux.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_close.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_codec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_color.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dir.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dirinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dirread.c +../tif_dirread.c: In function ‘EstimateStripByteCounts’: +../tif_dirread.c:4272:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 4272 | if( !_TIFFFillStriles( tif ) ) + | ^~ +../tif_dirread.c:4275:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 4275 | if (td->td_stripbytecount) + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dirwrite.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dumpmode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_extension.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_fax3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_fax3sm.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_flush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_getimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_jbig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_jpeg.c +In file included from ../../../include/os/Linux/jpeglib.h:27, + from ../tif_jpeg.c:88: +../../../include/os/Linux/jmorecfg.h:248: warning: "EXTERN" redefined + 248 | #define EXTERN(type) extern type + | +In file included from ../tiffiop.h:66, + from ../tif_jpeg.c:30: +../os/default/tiffio.h:91: note: this is the location of the previous definition + 91 | # define EXTERN extern + | +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_jpeg_12.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_luv.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_lzw.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_next.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_ojpeg.c +In file included from ../../../include/os/Linux/jpeglib.h:27, + from ../tif_ojpeg.c:217: +../../../include/os/Linux/jmorecfg.h:248: warning: "EXTERN" redefined + 248 | #define EXTERN(type) extern type + | +In file included from ../tiffiop.h:66, + from ../tif_ojpeg.c:126: +../os/default/tiffio.h:91: note: this is the location of the previous definition + 91 | # define EXTERN extern + | +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_open.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_packbits.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_pixarlog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_predict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_print.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::Append(const char*, size_t)’: +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1013:33: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long unsigned int’} [-Wsign-compare] + 1013 | if (curr_iov_index_ + 1 >= output_iov_count_) { + | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::AppendFromSelf(size_t, size_t)’: +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1095:35: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long unsigned int’} [-Wsign-compare] + 1095 | if (curr_iov_index_ + 1 >= output_iov_count_) { + | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: At global scope: +../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:567:13: warning: ‘void snappy::ComputeTable()’ defined but not used [-Wunused-function] + 567 | static void ComputeTable() { + | ^~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_read.c +../tif_read.c: In function ‘TIFFFillStrip’: +../tif_read.c:495:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 495 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) + | ^~ +../tif_read.c:498:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 498 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) + | ^~ +../tif_read.c: In function ‘TIFFFillTile’: +../tif_read.c:798:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 798 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) + | ^~ +../tif_read.c:801:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 801 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) + | ^~ +../tif_read.c: In function ‘TIFFStartStrip’: +../tif_read.c:960:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 960 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) + | ^~ +../tif_read.c:963:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 963 | if ((tif->tif_flags & TIFF_CODERSETUP) == 0) { + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_strip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_swab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_thunder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_tile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_version.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_warning.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_write.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_zip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_unix.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +/usr/bin/ar -rc libtiff.a tif_aux.o tif_close.o tif_codec.o tif_color.o tif_compress.o tif_dir.o tif_dirinfo.o tif_dirread.o tif_dirwrite.o tif_dumpmode.o tif_error.o tif_extension.o tif_fax3.o tif_fax3sm.o tif_flush.o tif_getimage.o tif_jbig.o tif_jpeg.o tif_jpeg_12.o tif_luv.o tif_lzw.o tif_next.o tif_ojpeg.o tif_open.o tif_packbits.o tif_pixarlog.o tif_predict.o tif_print.o tif_read.o tif_strip.o tif_swab.o tif_thunder.o tif_tile.o tif_version.o tif_warning.o tif_write.o tif_zip.o tif_unix.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +/usr/bin/ranlib libtiff.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +g++ -o libtiff.so -shared -fPIC -Wl,-hlibtiff.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 tif_aux.o tif_close.o tif_codec.o tif_color.o tif_compress.o tif_dir.o tif_dirinfo.o tif_dirread.o tif_dirwrite.o tif_dumpmode.o tif_error.o tif_extension.o tif_fax3.o tif_fax3sm.o tif_flush.o tif_getimage.o tif_jbig.o tif_jpeg.o tif_jpeg_12.o tif_luv.o tif_lzw.o tif_next.o tif_ojpeg.o tif_open.o tif_packbits.o tif_pixarlog.o tif_predict.o tif_print.o tif_read.o tif_strip.o tif_swab.o tif_thunder.o tif_tile.o tif_version.o tif_warning.o tif_write.o tif_zip.o tif_unix.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/blosc.c +In file included from /usr/include/stdio.h:867, + from ../../../supportApp/bloscSrc/blosc/blosc.c:11: +In function ‘fprintf’, + inlined from ‘blosc_d.isra.0’ at ../../../supportApp/bloscSrc/blosc/blosc.c:752:9: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:100:10: warning: ‘%s’ directive argument is null [-Wformat-overflow=] + 100 | return __fprintf_chk (__stream, __USE_FORTIFY_LEVEL - 1, __fmt, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 101 | __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘blosc_d.isra.0’: +../../../supportApp/bloscSrc/blosc/blosc.c:754:31: note: format string is defined here + 754 | "support for '%s' format. ", compname); + | ^~ +In file included from /usr/include/stdio.h:867, + from ../../../supportApp/bloscSrc/blosc/blosc.c:11: +In function ‘fprintf’, + inlined from ‘write_compression_header.isra.0’ at ../../../supportApp/bloscSrc/blosc/blosc.c:1105:5: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:100:10: warning: ‘%s’ directive argument is null [-Wformat-overflow=] + 100 | return __fprintf_chk (__stream, __USE_FORTIFY_LEVEL - 1, __fmt, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 101 | __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/blosclz.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/shuffle-generic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/shuffle.c +../../../supportApp/bloscSrc/blosc/shuffle.c:288:4: warning: #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. [-Wcpp] + 288 | #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. + | ^~~~~~~ +../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘get_shuffle_implementation’: +../../../supportApp/bloscSrc/blosc/shuffle.c:298:22: warning: unused variable ‘cpu_features’ [-Wunused-variable] + 298 | blosc_cpu_features cpu_features = blosc_get_cpu_features(); + | ^~~~~~~~~~~~ +In file included from ../../../supportApp/bloscSrc/blosc/shuffle.c:12: +At top level: +../../../supportApp/bloscSrc/blosc/shuffle-generic.h:61:13: warning: ‘unshuffle_generic_inline’ defined but not used [-Wunused-function] + 61 | static void unshuffle_generic_inline(const size_t type_size, + | ^~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/bloscSrc/blosc/shuffle-generic.h:32:13: warning: ‘shuffle_generic_inline’ defined but not used [-Wunused-function] + 32 | static void shuffle_generic_inline(const size_t type_size, + | ^~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make -C ./xml2Src install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp_stream.d ../nanohttp_stream.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlstring.d ../xmlstring.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpointer.d ../xpointer.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +/usr/bin/ar -rc libblosc.a entropy_common.o error_private.o fse_decompress.o pool.o threading.o xxhash.o zstd_common.o fse_compress.o zstd_compress.o huf_compress.o zstdmt_compress.o huf_decompress.o zstd_decompress.o snappy.o snappy-c.o snappy-sinksource.o snappy-stubs-internal.o lz4.o lz4hc.o blosc.o blosclz.o shuffle-generic.o bitshuffle-generic.o shuffle.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +/usr/bin/ranlib libblosc.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpath.d ../xpath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +g++ -o libblosc.so -shared -fPIC -Wl,-hlibblosc.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 entropy_common.o error_private.o fse_decompress.o pool.o threading.o xxhash.o zstd_common.o fse_compress.o zstd_compress.o huf_compress.o zstdmt_compress.o huf_decompress.o zstd_decompress.o snappy.o snappy-c.o snappy-sinksource.o snappy-stubs-internal.o lz4.o lz4hc.o blosc.o blosclz.o shuffle-generic.o bitshuffle-generic.o shuffle.o -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlwriter.d ../xmlwriter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make -C ./hdf5Src install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlunicode.d ../xmlunicode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemastypes.d ../xmlschemastypes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5detect.d ../H5detect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d ../jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemas.d ../xmlschemas.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d ../blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5lib_settings.d ../H5lib_settings.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlsave.d ../xmlsave.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tinit.d ../os/Linux/H5Tinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmodule.d ../xmlmodule.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ztrans.d ../H5Ztrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlregexp.d ../xmlregexp.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zszip.d ../H5Zszip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zshuffle.d ../H5Zshuffle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlreader.d ../xmlreader.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zscaleoffset.d ../H5Zscaleoffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmemory.d ../xmlmemory.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Znbit.d ../H5Znbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zfletcher32.d ../H5Zfletcher32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlIO.d ../xmlIO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zdeflate.d ../H5Zdeflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xlink.d ../xlink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Z.d ../H5Z.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xinclude.d ../xinclude.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5WB.d ../H5WB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5VM.d ../H5VM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF valid.d ../valid.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5TS.d ../H5TS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvlen.d ../H5Tvlen.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uri.d ../uri.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvisit.d ../H5Tvisit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tree.d ../tree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tstrpad.d ../H5Tstrpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tprecis.d ../H5Tprecis.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threads.d ../threads.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tpad.d ../H5Tpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF schematron.d ../schematron.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Torder.d ../H5Torder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX.d ../SAX.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Topaque.d ../H5Topaque.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toh.d ../H5Toh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX2.d ../SAX2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toffset.d ../H5Toffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF relaxng.d ../relaxng.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tnative.d ../H5Tnative.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pattern.d ../pattern.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfloat.d ../H5Tfloat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfixed.d ../H5Tfixed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parserInternals.d ../parserInternals.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfields.d ../H5Tfields.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parser.d ../parser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tenum.d ../H5Tenum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp.d ../nanohttp.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdeprec.d ../H5Tdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdbg.d ../H5Tdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanoftp.d ../nanoftp.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcset.d ../H5Tcset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF list.d ../list.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tconv.d ../H5Tconv.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF legacy.d ../legacy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLtree.d ../HTMLtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcompound.d ../H5Tcompound.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLparser.d ../HTMLparser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcommit.d ../H5Tcommit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF hash.d ../hash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tbit.d ../H5Tbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF globals.d ../globals.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tarray.d ../H5Tarray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error.d ../error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5T.d ../H5T.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ST.d ../H5ST.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entities.d ../entities.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMtest.d ../H5SMtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d ../encoding.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMmessage.d ../H5SMmessage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF DOCBparser.d ../DOCBparser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMcache.d ../H5SMcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dict.d ../dict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMbtree2.d ../H5SMbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF debugXML.d ../debugXML.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SM.d ../H5SM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF chvalid.d ../chvalid.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SL.d ../H5SL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF catalog.d ../catalog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Stest.d ../H5Stest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF c14n.d ../c14n.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sselect.d ../H5Sselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Spoint.d ../H5Spoint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Snone.d ../H5Snone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF buf.d ../buf.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Shyper.d ../H5Shyper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sdbg.d ../H5Sdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +mkdir ../../../include/os/Linux/libxml +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sall.d ../H5Sall.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5S.d ../H5S.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5RS.d ../H5RS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5UC.d ../H5UC.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Rdeprec.d ../H5Rdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5R.d ../H5R.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PL.d ../H5PL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PB.d ../H5PB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ptest.d ../H5Ptest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pstrcpl.d ../H5Pstrcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpypl.d ../H5Pocpypl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpl.d ../H5Pocpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plcpl.d ../H5Plcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plapl.d ../H5Plapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pint.d ../H5Pint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pgcpl.d ../H5Pgcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfmpl.d ../H5Pfmpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfcpl.d ../H5Pfcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfapl.d ../H5Pfapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pencdec.d ../H5Pencdec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdxpl.d ../H5Pdxpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdeprec.d ../H5Pdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdcpl.d ../H5Pdcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdapl.d ../H5Pdapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pacpl.d ../H5Pacpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5P.d ../H5P.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ounknown.d ../H5Ounknown.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Otest.d ../H5Otest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ostab.d ../H5Ostab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../buf.c +../buf.c: In function ‘xmlBufMemoryError’: +../buf.c:94:5: warning: too many arguments for format [-Wformat-extra-args] + 94 | __xmlSimpleError(XML_FROM_BUFFER, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../buf.c: In function ‘xmlBufOverflowError’: +../buf.c:109:5: warning: too many arguments for format [-Wformat-extra-args] + 109 | __xmlSimpleError(XML_FROM_BUFFER, XML_BUF_OVERFLOW, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshmesg.d ../H5Oshmesg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshared.d ../H5Oshared.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Osdspace.d ../H5Osdspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Orefcount.d ../H5Orefcount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Opline.d ../H5Opline.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Onull.d ../H5Onull.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oname.d ../H5Oname.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omtime.d ../H5Omtime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omessage.d ../H5Omessage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olink.d ../H5Olink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olinfo.d ../H5Olinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olayout.d ../H5Olayout.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../c14n.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oginfo.d ../H5Oginfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofsinfo.d ../H5Ofsinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oflush.d ../H5Oflush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofill.d ../H5Ofill.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oefl.d ../H5Oefl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odtype.d ../H5Odtype.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odrvinfo.d ../H5Odrvinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odbg.d ../H5Odbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocopy.d ../H5Ocopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocont.d ../H5Ocont.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ochunk.d ../H5Ochunk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache_image.d ../H5Ocache_image.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache.d ../H5Ocache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obtreek.d ../H5Obtreek.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obogus.d ../H5Obogus.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattribute.d ../H5Oattribute.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattr.d ../H5Oattr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oalloc.d ../H5Oalloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oainfo.d ../H5Oainfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../catalog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5O.d ../H5O.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MPtest.d ../H5MPtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MP.d ../H5MP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MM.d ../H5MM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../chvalid.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFsection.d ../H5MFsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFdbg.d ../H5MFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFaggr.d ../H5MFaggr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MF.d ../H5MF.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Lexternal.d ../H5Lexternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5L.d ../H5L.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Itest.d ../H5Itest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5I.d ../H5I.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HP.d ../H5HP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdblk.d ../H5HLdblk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLprfx.d ../H5HLprfx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLint.d ../H5HLint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdbg.d ../H5HLdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLcache.d ../H5HLcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HL.d ../H5HL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGquery.d ../H5HGquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGdbg.d ../H5HGdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGcache.d ../H5HGcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HG.d ../H5HG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtiny.d ../H5HFtiny.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtest.d ../H5HFtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFstat.d ../H5HFstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFspace.d ../H5HFspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../debugXML.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFsection.d ../H5HFsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFman.d ../H5HFman.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiter.d ../H5HFiter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiblock.d ../H5HFiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhuge.d ../H5HFhuge.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhdr.d ../H5HFhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdtable.d ../H5HFdtable.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../dict.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdblock.d ../H5HFdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdbg.d ../H5HFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFcache.d ../H5HFcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../DOCBparser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFbtree2.d ../H5HFbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HF.d ../H5HF.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtraverse.d ../H5Gtraverse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtest.d ../H5Gtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gstab.d ../H5Gstab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Groot.d ../H5Groot.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Goh.d ../H5Goh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gobj.d ../H5Gobj.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gnode.d ../H5Gnode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gname.d ../H5Gname.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gloc.d ../H5Gloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Glink.d ../H5Glink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gint.d ../H5Gint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../encoding.c +../encoding.c: In function ‘xmlEncodingErrMemory’: +../encoding.c:86:5: warning: too many arguments for format [-Wformat-extra-args] + 86 | __xmlSimpleError(XML_FROM_I18N, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../encoding.c: In function ‘xmlCharEncCloseFunc__internal_alias’: +../encoding.c:2856:12: warning: variable ‘handler_in_list’ set but not used [-Wunused-but-set-variable] + 2856 | int i, handler_in_list = 0; + | ^~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gent.d ../H5Gent.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdeprec.d ../H5Gdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdense.d ../H5Gdense.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcompact.d ../H5Gcompact.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcache.d ../H5Gcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gbtree2.d ../H5Gbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5G.d ../H5G.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../entities.c +../entities.c: In function ‘xmlEntitiesErrMemory’: +../entities.c:76:5: warning: too many arguments for format [-Wformat-extra-args] + 76 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FStest.d ../H5FStest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSstat.d ../H5FSstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSsection.d ../H5FSsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSint.d ../H5FSint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSdbg.d ../H5FSdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FScache.d ../H5FScache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FS.d ../H5FS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FO.d ../H5FO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FL.d ../H5FL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../error.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDtest.d ../H5FDtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDstdio.d ../H5FDstdio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDspace.d ../H5FDspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDsec2.d ../H5FDsec2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDmulti.d ../H5FDmulti.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDlog.d ../H5FDlog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../globals.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDint.d ../H5FDint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDfamily.d ../H5FDfamily.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDcore.d ../H5FDcore.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FD.d ../H5FD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAtest.d ../H5FAtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAstat.d ../H5FAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAint.d ../H5FAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAhdr.d ../H5FAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../hash.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblkpage.d ../H5FAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../HTMLparser.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblock.d ../H5FAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdbg.d ../H5FAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../HTMLtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAcache.d ../H5FAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FA.d ../H5FA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ftest.d ../H5Ftest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper_cache.d ../H5Fsuper_cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper.d ../H5Fsuper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fspace.d ../H5Fspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsfile.d ../H5Fsfile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../legacy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fquery.d ../H5Fquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fmount.d ../H5Fmount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fio.d ../H5Fio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fint.d ../H5Fint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ffake.d ../H5Ffake.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fefc.d ../H5Fefc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../list.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdeprec.d ../H5Fdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdbg.d ../H5Fdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fcwfs.d ../H5Fcwfs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Faccum.d ../H5Faccum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5F.d ../H5F.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAtest.d ../H5EAtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAstat.d ../H5EAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAsblock.d ../H5EAsblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAint.d ../H5EAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAiblock.d ../H5EAiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAhdr.d ../H5EAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblock.d ../H5EAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nanoftp.c +../nanoftp.c: In function ‘xmlFTPErrMemory’: +../nanoftp.c:176:5: warning: too many arguments for format [-Wformat-extra-args] + 176 | __xmlSimpleError(XML_FROM_FTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblkpage.d ../H5EAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdbg.d ../H5EAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAcache.d ../H5EAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EA.d ../H5EA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Eint.d ../H5Eint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Edeprec.d ../H5Edeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5E.d ../H5E.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dvirtual.d ../H5Dvirtual.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dtest.d ../H5Dtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dsingle.d ../H5Dsingle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dselect.d ../H5Dselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nanohttp.c +../nanohttp.c: In function ‘xmlHTTPErrMemory’: +../nanohttp.c:177:5: warning: too many arguments for format [-Wformat-extra-args] + 177 | __xmlSimpleError(XML_FROM_HTTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dscatgath.d ../H5Dscatgath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Doh.d ../H5Doh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dnone.d ../H5Dnone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dlayout.d ../H5Dlayout.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dio.d ../H5Dio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dint.d ../H5Dint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfill.d ../H5Dfill.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfarray.d ../H5Dfarray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Defl.d ../H5Defl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dearray.d ../H5Dearray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddeprec.d ../H5Ddeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddbg.d ../H5Ddbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcontig.d ../H5Dcontig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcompact.d ../H5Dcompact.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dchunk.d ../H5Dchunk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree2.d ../H5Dbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree.d ../H5Dbtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5D.d ../H5D.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5CS.d ../H5CS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctest.d ../H5Ctest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctag.d ../H5Ctag.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cquery.d ../H5Cquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cprefetched.d ../H5Cprefetched.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Clog.d ../H5Clog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cimage.d ../H5Cimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cepoch.d ../H5Cepoch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cdbg.d ../H5Cdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5C.d ../H5C.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2test.d ../H5B2test.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2stat.d ../H5B2stat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2leaf.d ../H5B2leaf.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2internal.d ../H5B2internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2int.d ../H5B2int.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2hdr.d ../H5B2hdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2dbg.d ../H5B2dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2cache.d ../H5B2cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2.d ../H5B2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bdbg.d ../H5Bdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bcache.d ../H5Bcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B.d ../H5B.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACproxy_entry.d ../H5ACproxy_entry.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACdbg.d ../H5ACdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AClog.d ../H5AClog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AC.d ../H5AC.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Atest.d ../H5Atest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Aint.d ../H5Aint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adeprec.d ../H5Adeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adense.d ../H5Adense.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Abtree2.d ../H5Abtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5A.d ../H5A.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5trace.d ../H5trace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5timer.d ../H5timer.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5system.d ../H5system.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5dbg.d ../H5dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5checksum.d ../H5checksum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5.d ../H5.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5checksum.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5system.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5system.c:33: +In function ‘strncat’, + inlined from ‘H5_build_extpath’ at ../H5system.c:1116:13: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5system.c:33: +../H5system.c: In function ‘H5_build_extpath’: +../H5private.h:1358:31: note: length computed here + 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) + | ^~~~~~~~~~~~~~ +../H5system.c:1116:13: note: in expansion of macro ‘HDstrncat’ + 1116 | HDstrncat(full_path, new_name, HDstrlen(new_name)); + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5timer.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../parser.c +../parser.c: In function ‘xmlParseReference__internal_alias’: +../parser.c:7258:44: warning: ‘%d’ directive output may be truncated writing between 3 and 10 bytes into a region of size 9 [-Wformat-truncation=] + 7258 | snprintf((char *)out, sizeof(out), "#%d", value); + | ^~ +../parser.c:7258:42: note: directive argument in the range [256, 2147483647] + 7258 | snprintf((char *)out, sizeof(out), "#%d", value); + | ^~~~~ +In file included from /usr/include/stdio.h:867, + from ../libxml.h:51, + from ../parser.c:34: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output between 5 and 12 bytes into a destination of size 10 + 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 68 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../parser.c:7256:47: warning: ‘__builtin___snprintf_chk’ output may be truncated before the last format character [-Wformat-truncation=] + 7256 | snprintf((char *)out, sizeof(out), "#x%X", value); + | ^ +In file included from /usr/include/stdio.h:867, + from ../libxml.h:51, + from ../parser.c:34: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output between 6 and 11 bytes into a destination of size 10 + 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 68 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../parserInternals.c +../parserInternals.c: In function ‘xmlNextChar__internal_alias’: +../parserInternals.c:473:9: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 473 | if (c == 0xC0) + | ^~ +../parserInternals.c:475:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 475 | if (cur[1] == 0) { + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5trace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pattern.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5A.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5A.c:25: +In function ‘strncpy’, + inlined from ‘H5Aget_name_by_idx’ at ../H5A.c:937:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5A.c:25: +../H5A.c: In function ‘H5Aget_name_by_idx’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5A.c:933:26: note: in expansion of macro ‘HDstrlen’ + 933 | ret_value = (ssize_t)HDstrlen(attr->shared->name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Abtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Adense.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Adeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Aint.c +../H5Aint.c: In function ‘H5A_create’: +../H5Aint.c:200:45: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 200 | if(NULL == (attr->shared->dt = H5T_copy(type, H5T_COPY_ALL))) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Aprivate.h:25, + from ../H5Apkg.h:37, + from ../H5Aint.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Aint.c: In function ‘H5A__read’: +../H5Aint.c:532:71: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 532 | (dst_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0) + | ^~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Aprivate.h:25, + from ../H5Apkg.h:37, + from ../H5Aint.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Aint.c: In function ‘H5A__write’: +../H5Aint.c:632:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 632 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0 || + | ^~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Aprivate.h:25, + from ../H5Apkg.h:37, + from ../H5Aint.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Atest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5AC.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5AClog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5ACdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5ACproxy_entry.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../relaxng.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B.c +../H5B.c: In function ‘H5B_valid’: +../H5B.c:2038:26: warning: variable ‘shared’ set but not used [-Wunused-but-set-variable] + 2038 | H5B_shared_t *shared; /* Pointer to shared B-tree info */ + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Bcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Bdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../SAX2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../SAX.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../schematron.c +../schematron.c: In function ‘xmlSchematronPErrMemory’: +../schematron.c:234:22: warning: too many arguments for format [-Wformat-extra-args] + 234 | extra); + | ^~~~~ +../schematron.c: In function ‘xmlSchematronVErrMemory’: +../schematron.c:284:22: warning: too many arguments for format [-Wformat-extra-args] + 284 | extra); + | ^~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../threads.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2dbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2hdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2int.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2leaf.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2stat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2test.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tree.c +../tree.c: In function ‘xmlTreeErrMemory’: +../tree.c:74:5: warning: too many arguments for format [-Wformat-extra-args] + 74 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +../tree.c: In function ‘xmlGetNodePath__internal_alias’: +../tree.c:4758:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 4758 | if (tmp->type == XML_COMMENT_NODE) + | ^~ +../tree.c:4760:21: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 4760 | tmp = tmp->next; + | ^~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../uri.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5C.c +../H5C.c: In function ‘H5C_flush_cache’: +../H5C.c:1057:14: warning: variable ‘ignore_protected’ set but not used [-Wunused-but-set-variable] + 1057 | hbool_t ignore_protected; + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cepoch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cimage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Clog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cprefetched.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ctag.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ctest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../valid.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5CS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5D.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xinclude.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dbtree.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xlink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlIO.c +../xmlIO.c: In function ‘xmlIOErrMemory’: +../xmlIO.c:256:5: warning: too many arguments for format [-Wformat-extra-args] + 256 | __xmlSimpleError(XML_FROM_IO, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlmemory.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dchunk.c +../H5Dchunk.c: In function ‘H5D__chunk_init’: +../H5Dchunk.c:724:26: warning: unused variable ‘sc’ [-Wunused-variable] + 724 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_is_space_alloc’: +../H5Dchunk.c:816:32: warning: unused variable ‘sc’ [-Wunused-variable] + 816 | const H5O_storage_chunk_t *sc = &(storage->u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_dest’: +../H5Dchunk.c:2371:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2371 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_create’: +../H5Dchunk.c:2582:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2582 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_lookup’: +../H5Dchunk.c:2683:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2683 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_flush_entry’: +../H5Dchunk.c:2806:26: warning: unused variable ‘sc’ [-Wunused-variable] + 2806 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_allocated’: +../H5Dchunk.c:3716:26: warning: unused variable ‘sc’ [-Wunused-variable] + 3716 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_allocate’: +../H5Dchunk.c:3809:32: warning: unused variable ‘sc’ [-Wunused-variable] + 3809 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_update_old_edge_chunks’: +../H5Dchunk.c:4242:32: warning: unused variable ‘sc’ [-Wunused-variable] + 4242 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c:4229:24: warning: unused variable ‘pline’ [-Wunused-variable] + 4229 | const H5O_pline_t *pline = &(dset->shared->dcpl_cache.pline); /* I/O pipeline info */ + | ^~~~~ +../H5Dchunk.c: In function ‘H5D__chunk_prune_by_extent’: +../H5Dchunk.c:4797:32: warning: unused variable ‘sc’ [-Wunused-variable] + 4797 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_delete’: +../H5Dchunk.c:5203:26: warning: unused variable ‘sc’ [-Wunused-variable] + 5203 | H5O_storage_chunk_t *sc = &(storage->u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_copy_cb’: +../H5Dchunk.c:5550:111: warning: passing argument 5 of ‘H5D__chunk_file_alloc’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 5550 | if(H5D__chunk_file_alloc(udata->idx_info_dst, NULL, &udata_dst.chunk_block, &need_insert, udata_dst.common.scaled) < 0) + | ~~~~~~~~~~~~~~~~^~~~~~~ +../H5Dchunk.c:300:13: note: expected ‘hsize_t *’ {aka ‘long long unsigned int *’} but argument is of type ‘const hsize_t *’ {aka ‘const long long unsigned int *’} + 300 | hsize_t scaled[]); + | ~~~~~~~~^~~~~~~~ +../H5Dchunk.c: In function ‘H5D__chunk_copy’: +../H5Dchunk.c:5689:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 5689 | if(NULL == (dt_mem = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) + | ^~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dchunk.c:55: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dchunk.c:5697:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 5697 | if(NULL == (dt_dst = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) + | ^~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dchunk.c:55: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dchunk.c: In function ‘H5D__chunk_bh_info’: +../H5Dchunk.c:5856:26: warning: unused variable ‘sc’ [-Wunused-variable] + 5856 | H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); + | ^~ +../H5Dchunk.c: In function ‘H5D__chunk_dump_index’: +../H5Dchunk.c:5979:26: warning: unused variable ‘sc’ [-Wunused-variable] + 5979 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlreader.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dcompact.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dcontig.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ddbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ddeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dearray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Defl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dfarray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlregexp.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dfill.c +../H5Dfill.c: In function ‘H5D__fill’: +../H5Dfill.c:238:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 238 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(fill_type, H5T_COPY_ALL), FALSE)) < 0) + | ^~~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dfill.c:36: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dfill.c:241:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 241 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(buf_type, H5T_COPY_ALL), FALSE)) < 0) + | ^~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dfill.c:36: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dfill.c: In function ‘H5D__fill_init’: +../H5Dfill.c:413:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 413 | if(NULL == (fb_info->mem_type = H5T_copy(dset_type, H5T_COPY_REOPEN))) + | ^~~~~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dfill.c:36: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlmodule.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlsave.c +../xmlsave.c: In function ‘xmlSaveErrMemory’: +../xmlsave.c:111:5: warning: too many arguments for format [-Wformat-extra-args] + 111 | __xmlSimpleError(XML_FROM_OUTPUT, XML_ERR_NO_MEMORY, NULL, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dint.c +../H5Dint.c: In function ‘H5D__init_type’: +../H5Dint.c:681:43: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 681 | if((dset->shared->type = H5T_copy(type, H5T_COPY_ALL)) == NULL) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Dint.c:25: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Dint.c: In function ‘H5D__mark’: +../H5Dint.c:3174:37: warning: passing argument 1 of ‘H5D__layout_oh_write’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 3174 | if(H5D__layout_oh_write(dataset, dxpl_id, oh, update_flags) < 0) + | ^~~~~~~ +In file included from ../H5Dint.c:25: +../H5Dpkg.h:638:43: note: expected ‘H5D_t *’ {aka ‘struct H5D_t *’} but argument is of type ‘const H5D_t *’ {aka ‘const struct H5D_t *’} + 638 | H5_DLL herr_t H5D__layout_oh_write(H5D_t *dataset, hid_t dxpl_id, H5O_t *oh, + | ~~~~~~~^~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dlayout.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dnone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Doh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dscatgath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dsingle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dvirtual.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5E.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5E.c:52: +In function ‘strncpy’, + inlined from ‘H5E_get_class_name’ at ../H5E.c:646:8, + inlined from ‘H5Eget_class_name’ at ../H5E.c:610:21: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5E.c:52: +../H5E.c: In function ‘H5Eget_class_name’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5E.c:642:20: note: in expansion of macro ‘HDstrlen’ + 642 | len = (ssize_t)HDstrlen(cls->cls_name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Edeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Eint.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Eint.c:35: +In function ‘strncpy’, + inlined from ‘H5E_get_msg’ at ../H5Eint.c:143:8: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Eint.c:35: +../H5Eint.c: In function ‘H5E_get_msg’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Eint.c:139:20: note: in expansion of macro ‘HDstrlen’ + 139 | len = (ssize_t)HDstrlen(msg->msg); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAsblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlschemas.c +../xmlschemas.c: In function ‘xmlSchemaPSimpleErr’: +../xmlschemas.c:1861:22: warning: too many arguments for format [-Wformat-extra-args] + 1861 | msg); + | ^~~ +../xmlschemas.c: In function ‘xmlSchemaPErrMemory’: +../xmlschemas.c:1878:22: warning: too many arguments for format [-Wformat-extra-args] + 1878 | extra); + | ^~~~~ +../xmlschemas.c: In function ‘xmlSchemaVErrMemory’: +../xmlschemas.c:2002:22: warning: too many arguments for format [-Wformat-extra-args] + 2002 | extra); + | ^~~~~ +../xmlschemas.c: In function ‘xmlSchemaPResCompAttrErr’: +../xmlschemas.c:2834:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 2834 | if (refTypeStr == NULL) + | ^~ +../xmlschemas.c:2836:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 2836 | xmlSchemaPErrExt(ctxt, ownerElem, error, + | ^~~~~~~~~~~~~~~~ +../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeQNameValue’: +../xmlschemas.c:5824:6: warning: too many arguments for format [-Wformat-extra-args] + 5824 | NULL, value, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlGetMaxOccurs’: +../xmlschemas.c:6047:3: warning: too many arguments for format [-Wformat-extra-args] + 6047 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:6061:6: warning: too many arguments for format [-Wformat-extra-args] + 6061 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:6078:6: warning: too many arguments for format [-Wformat-extra-args] + 6078 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c: In function ‘xmlGetMinOccurs’: +../xmlschemas.c:6113:6: warning: too many arguments for format [-Wformat-extra-args] + 6113 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:6130:6: warning: too many arguments for format [-Wformat-extra-args] + 6130 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c: In function ‘xmlSchemaPGetBoolNodeValue’: +../xmlschemas.c:6175:6: warning: too many arguments for format [-Wformat-extra-args] + 6175 | NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlGetBooleanProp’: +../xmlschemas.c:6223:6: warning: too many arguments for format [-Wformat-extra-args] + 6223 | NULL, val, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeValue’: +../xmlschemas.c:6328:6: warning: too many arguments for format [-Wformat-extra-args] + 6328 | type, NULL, value, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaParseWildcardNs’: +../xmlschemas.c:6763:6: warning: too many arguments for format [-Wformat-extra-args] + 6763 | NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c:6801:7: warning: too many arguments for format [-Wformat-extra-args] + 6801 | nsItem, NULL, NULL, NULL); + | ^~~~~~ +../xmlschemas.c: In function ‘xmlSchemaParseLocalAttribute’: +../xmlschemas.c:7188:8: warning: too many arguments for format [-Wformat-extra-args] + 7188 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:7208:4: warning: too many arguments for format [-Wformat-extra-args] + 7208 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:7366:2: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] + 7366 | if (defValue != NULL) + | ^~ +../xmlschemas.c:7368:6: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ + 7368 | if (defValueType == WXS_ATTR_DEF_VAL_FIXED) + | ^~ +../xmlschemas.c: In function ‘xmlSchemaParseElement’: +../xmlschemas.c:8629:4: warning: too many arguments for format [-Wformat-extra-args] + 8629 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:8708:4: warning: too many arguments for format [-Wformat-extra-args] + 8708 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:8738:7: warning: too many arguments for format [-Wformat-extra-args] + 8738 | NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaParseSimpleType’: +../xmlschemas.c:9294:7: warning: too many arguments for format [-Wformat-extra-args] + 9294 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c: In function ‘xmlSchemaParseSchemaElement’: +../xmlschemas.c:9693:3: warning: too many arguments for format [-Wformat-extra-args] + 9693 | "(qualified | unqualified)", val, NULL, NULL, NULL); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +../xmlschemas.c:9706:3: warning: too many arguments for format [-Wformat-extra-args] + 9706 | "(qualified | unqualified)", val, NULL, NULL, NULL); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +../xmlschemas.c:9724:3: warning: too many arguments for format [-Wformat-extra-args] + 9724 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c:9740:3: warning: too many arguments for format [-Wformat-extra-args] + 9740 | val, NULL, NULL, NULL); + | ^~~ +../xmlschemas.c: In function ‘xmlSchemaParseImport’: +../xmlschemas.c:10763:6: warning: too many arguments for format [-Wformat-extra-args] +10763 | NULL, namespaceName, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c:10774:6: warning: too many arguments for format [-Wformat-extra-args] +10774 | NULL, schemaLocation, NULL, NULL, NULL); + | ^~~~ +../xmlschemas.c: In function ‘xmlSchemaParseComplexType’: +../xmlschemas.c:12233:8: warning: too many arguments for format [-Wformat-extra-args] +12233 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c:12251:8: warning: too many arguments for format [-Wformat-extra-args] +12251 | attrValue, NULL, NULL, NULL); + | ^~~~~~~~~ +../xmlschemas.c: In function ‘xmlSchemaValidateFacets’: +../xmlschemas.c:24253:3: warning: too many arguments for format [-Wformat-extra-args] +24253 | value, len, type, facetLink->facet, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c:24289:3: warning: too many arguments for format [-Wformat-extra-args] +24289 | value, length, type, facetLink->facet, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c:24341:7: warning: too many arguments for format [-Wformat-extra-args] +24341 | value, 0, type, NULL, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c:24386:4: warning: too many arguments for format [-Wformat-extra-args] +24386 | value, 0, type, facet, NULL, NULL, NULL); + | ^~~~~ +../xmlschemas.c: In function ‘xmlSchemaSetValidStructuredErrors__internal_alias’: +../xmlschemas.c:27790:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] +27790 | if (ctxt == NULL) + | ^~ +../xmlschemas.c:27792:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ +27792 | ctxt->serror = serror; + | ^~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5F.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5F.c:24: +In function ‘strncpy’, + inlined from ‘H5Fget_name’ at ../H5F.c:1311:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5F.c:24: +../H5F.c: In function ‘H5Fget_name’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5F.c:1308:11: note: in expansion of macro ‘HDstrlen’ + 1308 | len = HDstrlen(H5F_OPEN_NAME(f)); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Faccum.c +../H5Faccum.c: In function ‘H5F__accum_read’: +../H5Faccum.c:129:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 129 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5Faccum.c:130:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 130 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +../H5Faccum.c: In function ‘H5F__accum_write’: +../H5Faccum.c:442:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 442 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5Faccum.c:443:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 443 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +../H5Faccum.c: In function ‘H5F__accum_free’: +../H5Faccum.c:877:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 877 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5Faccum.c:878:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 878 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +../H5Faccum.c: In function ‘H5F__accum_flush’: +../H5Faccum.c:1045:29: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1045 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5Faccum.c:1046:28: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1046 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fcwfs.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fefc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ffake.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlschemastypes.c +../xmlschemastypes.c: In function ‘xmlSchemaTypeErrMemory’: +../xmlschemastypes.c:204:5: warning: too many arguments for format [-Wformat-extra-args] + 204 | __xmlSimpleError(XML_FROM_DATATYPE, XML_ERR_NO_MEMORY, node, NULL, extra); + | ^~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlunicode.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fmount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fsfile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlwriter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fsuper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fsuper_cache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ftest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FA.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAdblkpage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDcore.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDfamily.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDlog.c +../H5FDlog.c: In function ‘H5FD_log_open’: +../H5FDlog.c:630:95: warning: ‘stat_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDlog.c:630:59: warning: ‘stat_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDlog.c:628:95: warning: ‘open_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDlog.c:628:59: warning: ‘open_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDmulti.c +In file included from /usr/include/string.h:495, + from ../H5FDmulti.c:27: +In function ‘strncpy’, + inlined from ‘H5FD_multi_sb_encode’ at ../H5FDmulti.c:697:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../H5FDmulti.c: In function ‘H5FD_multi_sb_encode’: +../H5FDmulti.c:696:20: note: length computed here + 696 | size_t n = strlen(file->fa.memb_name[mt]) + 1; + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDsec2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDspace.c +../H5FDspace.c: In function ‘H5FD_extend’: +../H5FDspace.c:104:13: warning: unused variable ‘extra’ [-Wunused-variable] + 104 | hsize_t extra; /* Extra space to allocate, to align request */ + | ^~~~~ +../H5FDspace.c:102:13: warning: unused variable ‘orig_size’ [-Wunused-variable] + 102 | hsize_t orig_size = size; /* Original allocation size */ + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xpath.c +In file included from ../xpath.c:462: +../timsort.h: In function ‘libxml_domnode_tim_sort_collapse’: +../timsort.h:397:19: warning: variable ‘BD’ set but not used [-Wunused-but-set-variable] + 397 | int ABC, BCD, BD, CD; + | ^~ +../xpath.c: In function ‘xmlXPathNodeCollectAndTest’: +../xpath.c:12409:28: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘xmlXPathTypeVal’ {aka ‘enum ’} [-Wenum-compare] +12409 | } else if (cur->type == type) { + | ^~ +In file included from ../xpath.c:476: +At top level: +../trionan.c:218:1: warning: ‘trio_is_negative’ defined but not used [-Wunused-function] + 218 | trio_is_negative + | ^~~~~~~~~~~~~~~~ +../trionan.c:194:1: warning: ‘trio_is_special_quantity’ defined but not used [-Wunused-function] + 194 | trio_is_special_quantity + | ^~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDstdio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xpointer.c +../xpointer.c: In function ‘xmlXPtrNewRangeNodePoint__internal_alias’: +../xpointer.c:451:21: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘enum ’ [-Wenum-compare] + 451 | if (start->type != XPATH_POINT) + | ^~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlstring.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FScache.c +../H5FScache.c: In function ‘H5FS__cache_sinfo_deserialize’: +../H5FScache.c:1013:17: warning: variable ‘old_tot_space’ set but not used [-Wunused-but-set-variable] + 1013 | hsize_t old_tot_space; /* Total space managed from header */ + | ^~~~~~~~~~~~~ +../H5FScache.c:1012:17: warning: variable ‘old_ghost_sect_count’ set but not used [-Wunused-but-set-variable] + 1012 | hsize_t old_ghost_sect_count; /* Total ghost section count from header */ + | ^~~~~~~~~~~~~~~~~~~~ +../H5FScache.c:1011:17: warning: variable ‘old_serial_sect_count’ set but not used [-Wunused-but-set-variable] + 1011 | hsize_t old_serial_sect_count; /* Total serializable section count from header */ + | ^~~~~~~~~~~~~~~~~~~~~ +../H5FScache.c:1010:17: warning: variable ‘old_tot_sect_count’ set but not used [-Wunused-but-set-variable] + 1010 | hsize_t old_tot_sect_count; /* Total section count from header */ + | ^~~~~~~~~~~~~~~~~~ +../H5FScache.c: In function ‘H5FS__cache_sinfo_image_len’: +../H5FScache.c:1119:19: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] + 1119 | const H5FS_t *fspace; /* Free space header */ + | ^~~~~~ +../H5FScache.c: In function ‘H5FS__cache_sinfo_serialize’: +../H5FScache.c:1249:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] + 1249 | H5FS_t *fspace; /* Free space header */ + | ^~~~~~ +../H5FScache.c: In function ‘H5FS__cache_sinfo_free_icr’: +../H5FScache.c:1396:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] + 1396 | H5FS_t *fspace; /* Free space header */ + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nanohttp_stream.c +../nanohttp_stream.c: In function ‘xmlParseJpegHeader’: +../nanohttp_stream.c:628:40: warning: pointer targets in passing argument 1 of ‘xmlStrncmp__internal_alias’ differ in signedness [-Wpointer-sign] + 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { + | ~~~~^~~~~~~~~~~~~~ + | | + | char * +In file included from ../libxml.h:106, + from ../nanohttp_stream.c:16: +../elfgcchack.h:11051:30: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘char *’ +11051 | extern __typeof (xmlStrncmp) xmlStrncmp__internal_alias __attribute((visibility("hidden"))); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../nanohttp_stream.c:628:56: warning: pointer targets in passing argument 2 of ‘xmlStrncmp__internal_alias’ differ in signedness [-Wpointer-sign] + 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { + | ^~~~~~~~~~~~ + | | + | const char * +In file included from ../libxml.h:106, + from ../nanohttp_stream.c:16: +../elfgcchack.h:11051:30: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘const char *’ +11051 | extern __typeof (xmlStrncmp) xmlStrncmp__internal_alias __attribute((visibility("hidden"))); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~ +../nanohttp_stream.c: In function ‘xmlNanoHTTPScanAnswer’: +../elfgcchack.h:11072:19: warning: pointer targets in initialization of ‘const char *’ from ‘const xmlChar *’ {aka ‘const unsigned char *’} differ in signedness [-Wpointer-sign] +11072 | #define xmlStrstr xmlStrstr__internal_alias + | ^~~~~~~~~~~~~~~~~~~~~~~~~ +../nanohttp_stream.c:979:30: note: in expansion of macro ‘xmlStrstr’ + 979 | const char* boundaryName = xmlStrstr(BAD_CAST ctxt->contentType, BAD_CAST "boundary"); + | ^~~~~~~~~ +../nanohttp_stream.c:981:17: warning: pointer targets in assignment from ‘const xmlChar *’ {aka ‘const unsigned char *’} to ‘const char *’ differ in signedness [-Wpointer-sign] + 981 | boundaryName = xmlStrstr(BAD_CAST boundaryName, BAD_CAST "="); + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +g++ -o libxml2.so -shared -fPIC -Wl,-hlibxml2.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +/usr/bin/ar -rc libxml2.a buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +/usr/bin/ranlib libxml2.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +/usr/bin/ar -rc libnanohttp_stream.a nanohttp_stream.o buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +/usr/bin/ranlib libnanohttp_stream.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +g++ -o libnanohttp_stream.so -shared -fPIC -Wl,-hlibnanohttp_stream.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 nanohttp_stream.o buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o -lxml2 -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FStest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSsection.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5G.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gcompact.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Gcompact.c:28: +In function ‘strncpy’, + inlined from ‘H5G__compact_get_name_by_idx’ at ../H5Gcompact.c:246:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Gcompact.c:28: +../H5Gcompact.c: In function ‘H5G__compact_get_name_by_idx’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gcompact.c:242:26: note: in expansion of macro ‘HDstrlen’ + 242 | ret_value = (ssize_t)HDstrlen(ltable.lnks[idx].name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gdense.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Gdense.c:35: +In function ‘strncpy’, + inlined from ‘H5G__dense_get_name_by_idx’ at ../H5Gdense.c:1278:13: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Gdense.c:35: +../H5Gdense.c: In function ‘H5G__dense_get_name_by_idx’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gdense.c:1274:30: note: in expansion of macro ‘HDstrlen’ + 1274 | ret_value = (ssize_t)HDstrlen(ltable.lnks[n].name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gent.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Glink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gname.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Gname.c:35: +In function ‘strncat’, + inlined from ‘H5G_build_fullpath’ at ../H5Gname.c:327:5, + inlined from ‘H5G_build_fullpath_refstr_str’ at ../H5Gname.c:367:17: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Gname.c:35: +../H5Gname.c: In function ‘H5G_build_fullpath_refstr_str’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gname.c:316:16: note: in expansion of macro ‘HDstrlen’ + 316 | name_len = HDstrlen(name); + | ^~~~~~~~ +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Gname.c:35: +In function ‘strncat’, + inlined from ‘H5G_name_move_path’ at ../H5Gname.c:771:13, + inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:1028:24, + inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Gname.c:35: +../H5Gname.c: In function ‘H5G_name_replace_cb’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gname.c:717:23: note: in expansion of macro ‘HDstrlen’ + 717 | full_suffix_len = HDstrlen(full_suffix); + | ^~~~~~~~ +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Gname.c:35: +In function ‘strncat’, + inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:1040:17, + inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Gname.c:35: +../H5Gname.c: In function ‘H5G_name_replace_cb’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gname.c:1024:35: note: in expansion of macro ‘HDstrlen’ + 1024 | full_suffix_len = HDstrlen(full_suffix); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gnode.c +../H5Gnode.c: In function ‘H5G_node_remove’: +../H5Gnode.c:790:21: warning: unused variable ‘lt_key’ [-Wunused-variable] + 790 | H5G_node_key_t *lt_key = (H5G_node_key_t *)_lt_key; + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gobj.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Goh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Groot.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gstab.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Gstab.c:29: +In function ‘strncpy’, + inlined from ‘H5G__stab_get_name_by_idx’ at ../H5Gstab.c:803:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Gstab.c:29: +../H5Gstab.c: In function ‘H5G__stab_get_name_by_idx’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Gstab.c:799:26: note: in expansion of macro ‘HDstrlen’ + 799 | ret_value = (ssize_t)HDstrlen(udata.name); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HF.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gtraverse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFcache.c +../H5HFcache.c: In function ‘H5HF__cache_hdr_serialize’: +../H5HFcache.c:774:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 774 | hdr->f = f; + | ^ +../H5HFcache.c: In function ‘H5HF__cache_iblock_serialize’: +../H5HFcache.c:1361:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1361 | hdr->f = f; + | ^ +../H5HFcache.c: In function ‘H5HF__cache_iblock_notify’: +../H5HFcache.c:1477:18: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] + 1477 | unsigned indir_idx; /* Index in parent's child iblock pointer array */ + | ^~~~~~~~~ +../H5HFcache.c:1476:26: warning: unused variable ‘par_iblock’ [-Wunused-variable] + 1476 | H5HF_indirect_t *par_iblock = iblock->parent; + | ^~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFdblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFdtable.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFhdr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFhuge.c +../H5HFhuge.c: In function ‘H5HF_huge_write’: +../H5HFhuge.c:890:8: warning: ‘obj_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 890 | if(H5F_block_write(hdr->f, H5FD_MEM_FHEAP_HUGE_OBJ, obj_addr, obj_size, H5AC_rawdata_dxpl_id, obj) < 0) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFiter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFiblock.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFman.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFstat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFsection.c +../H5HFsection.c: In function ‘H5HF_sect_single_valid’: +../H5HFsection.c:1191:20: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] + 1191 | herr_t status; /* Generic status value */ + | ^~~~~~ +../H5HFsection.c:1189:20: warning: variable ‘dblock_overhead’ set but not used [-Wunused-but-set-variable] + 1189 | size_t dblock_overhead; /* Direct block's overhead */ + | ^~~~~~~~~~~~~~~ +../H5HFsection.c: In function ‘H5HF_sect_row_valid’: +../H5HFsection.c:2000:14: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] + 2000 | unsigned indir_idx; /* Index of row in underlying indirect section's row array */ + | ^~~~~~~~~ +../H5HFsection.c: In function ‘H5HF_sect_indirect_valid’: +../H5HFsection.c:4107:44: warning: variable ‘tmp_row_sect2’ set but not used [-Wunused-but-set-variable] + 4107 | const H5HF_free_section_t *tmp_row_sect2; /* Pointer to row section */ + | ^~~~~~~~~~~~~ +../H5HFsection.c:4099:40: warning: variable ‘tmp_row_sect’ set but not used [-Wunused-but-set-variable] + 4099 | const H5HF_free_section_t *tmp_row_sect; /* Pointer to row section */ + | ^~~~~~~~~~~~ +../H5HFsection.c:4134:44: warning: variable ‘tmp_child_sect2’ set but not used [-Wunused-but-set-variable] + 4134 | const H5HF_free_section_t *tmp_child_sect2; /* Pointer to child indirect section */ + | ^~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFtiny.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HGcache.c +../H5HGcache.c: In function ‘H5HG__cache_heap_get_final_load_size’: +../H5HGcache.c:225:17: warning: ‘*((void *)&heap+280)’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 225 | *actual_len = heap.size; + | ~~~~~~~~~~~~^~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HG.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HGdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HGquery.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HL.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLprfx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLdblk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Itest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5I.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Lexternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5L.c +../H5L.c: In function ‘H5L_move_cb’: +../H5L.c:2639:41: warning: passing argument 1 of ‘H5RS_wrap’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 2639 | dst_name_r = H5RS_wrap(udata->dst_name); + | ~~~~~^~~~~~~~~~ +In file included from ../H5Gprivate.h:35, + from ../H5Tprivate.h:28, + from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5L.c:26: +../H5RSprivate.h:47:20: note: expected ‘char *’ but argument is of type ‘const char *’ + 47 | H5_DLL H5RS_str_t *H5RS_wrap(char *s); + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MFaggr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MFdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MFsection.c +../H5MFsection.c: In function ‘H5MF_sect_split’: +../H5MFsection.c:376:22: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 376 | FUNC_LEAVE_NOAPI((H5FS_section_info_t *)ret_value) + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MF.c +../H5MF.c: In function ‘H5MF_settle_meta_data_fsm’: +../H5MF.c:3249:17: warning: unused variable ‘fs_stat’ [-Wunused-variable] + 3249 | H5FS_stat_t fs_stat; /* Information for hdr FSM */ + | ^~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MP.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MPtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oainfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5O.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oattr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oalloc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Obogus.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Obtreek.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oattribute.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocache_image.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ochunk.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocont.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Odbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Odrvinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oefl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Odtype.c +../H5Odtype.c: In function ‘H5O_dtype_copy’: +../H5Odtype.c:1192:32: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1192 | if(NULL == (dst = H5T_copy(src, H5T_COPY_ALL))) + | ^~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Odtype.c:19: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Odtype.c: In function ‘H5O_dtype_pre_copy_file’: +../H5Odtype.c:1541:49: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1541 | if(NULL == (udata->src_dtype = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) + | ^~~~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Odtype.c:19: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oflush.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ofill.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make -C ./GraphicsMagickSrc install +make -C ./bzlib install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' +mkdir -p O.Common +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF randtable.d ../randtable.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huffman.d ../huffman.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompress.d ../decompress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crctable.d ../crctable.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d ../compress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ofsinfo.c +../H5Ofsinfo.c: In function ‘H5O_fsinfo_decode’: +../H5Ofsinfo.c:132:35: warning: ‘threshold’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 132 | fsinfo->threshold = threshold; + | ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bzlib.d ../bzlib.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blocksort.d ../blocksort.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oginfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Olayout.c +../H5Olayout.c: In function ‘H5O__layout_decode’: +../H5Olayout.c:412:90: warning: ‘tmp_hsize’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 412 | if(NULL == (mesg->storage.u.virt.list = (H5O_storage_virtual_ent_t *)H5MM_calloc((size_t)tmp_hsize * sizeof(H5O_storage_virtual_ent_t)))) + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Olinfo.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../blocksort.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Olink.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../bzlib.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Omessage.c +../H5Omessage.c: In function ‘H5O_msg_reset_share’: +../H5Omessage.c:1691:28: warning: variable ‘type’ set but not used [-Wunused-but-set-variable] + 1691 | const H5O_msg_class_t *type; /* Actual H5O class type for the ID */ + | ^~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Omtime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oname.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Onull.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Opline.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Orefcount.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Osdspace.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oshared.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oshmesg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ostab.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Otest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ounknown.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../compress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../crctable.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5P.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pacpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdapl.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Pdapl.c:35: +In function ‘strncpy’, + inlined from ‘H5Pget_efile_prefix’ at ../H5Pdapl.c:1280:13: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Pdapl.c:35: +../H5Pdapl.c: In function ‘H5Pget_efile_prefix’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Pdapl.c:1278:15: note: in expansion of macro ‘HDstrlen’ + 1278 | len = HDstrlen(my_prefix); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../decompress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../huffman.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../randtable.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +/usr/bin/ar -rc libbzlib.a blocksort.o bzlib.o compress.o crctable.o decompress.o huffman.o randtable.o +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +/usr/bin/ranlib libbzlib.a +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +g++ -o libbzlib.so -shared -fPIC -Wl,-hlibbzlib.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 blocksort.o bzlib.o compress.o crctable.o decompress.o huffman.o randtable.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' +make -C ./lcms install +make -C ./src install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' +perl -C0 /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' +mkdir -p O.Common +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsxform.d ../cmsxform.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmswtpnt.d ../cmswtpnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsvirt.d ../cmsvirt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmstypes.d ../cmstypes.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssm.d ../cmssm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssamp.d ../cmssamp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsps2.d ../cmsps2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsplugin.d ../cmsplugin.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspcs.d ../cmspcs.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspack.d ../cmspack.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsopt.d ../cmsopt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsnamed.d ../cmsnamed.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmtrx.d ../cmsmtrx.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmd5.d ../cmsmd5.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmslut.d ../cmslut.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio1.d ../cmsio1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio0.d ../cmsio0.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdcpl.c +../H5Pdcpl.c: In function ‘H5P_get_fill_value’: +../H5Pdcpl.c:3329:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 3329 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(type, H5T_COPY_TRANSIENT), FALSE)) < 0) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Dpkg.h:30, + from ../H5Pdcpl.c:37: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsintrp.d ../cmsintrp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmshalf.d ../cmshalf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgmt.d ../cmsgmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgamma.d ../cmsgamma.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmserr.d ../cmserr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscnvrt.d ../cmscnvrt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscgats.d ../cmscgats.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscam02.d ../cmscam02.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsalpha.d ../cmsalpha.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsalpha.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdxpl.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Pdxpl.c:35: +In function ‘strncpy’, + inlined from ‘H5Pget_data_transform’ at ../H5Pdxpl.c:1129:2: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Pdxpl.c:35: +../H5Pdxpl.c: In function ‘H5Pget_data_transform’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Pdxpl.c:1127:11: note: in expansion of macro ‘HDstrlen’ + 1127 | len = HDstrlen(pexp); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmscam02.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pencdec.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Pencdec.c:29: +In function ‘strncpy’, + inlined from ‘H5P__encode_cb’ at ../H5Pencdec.c:351:13, + inlined from ‘H5P__encode_cb’ at ../H5Pencdec.c:332:1: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Pencdec.c:29: +../H5Pencdec.c: In function ‘H5P__encode_cb’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Pencdec.c:349:25: note: in expansion of macro ‘HDstrlen’ + 349 | prop_name_len = HDstrlen(prop->name) + 1; + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmscgats.c +../cmscgats.c: In function ‘ReadReal’: +../cmscgats.c:577:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 577 | else + | ^~~~ +../cmscgats.c:584:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 584 | e = 0; + | ^ +../cmscgats.c: In function ‘ParseFloatNumber’: +../cmscgats.c:654:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 654 | else + | ^~~~ +../cmscgats.c:661:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 661 | e = 0; + | ^ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘GetVal’ at ../cmscgats.c:986:19: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying between 255 and 1023 bytes from a string of length 1023 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘AddToList.constprop’ at ../cmscgats.c:1184:22: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList.constprop’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘AddToList.constprop’ at ../cmscgats.c:1215:22: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList.constprop’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘AddToList’ at ../cmscgats.c:1184:22: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘AddToList’ at ../cmscgats.c:1185:47: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘AddToList’ at ../cmscgats.c:1215:22: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘AddToList’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘isabsolutepath’ at ../cmscgats.c:396:5, + inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:419:9, + inlined from ‘InSymbol’ at ../cmscgats.c:920:21: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 3 bytes from a string of length 1023 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:421:9, + inlined from ‘InSymbol’ at ../cmscgats.c:920:21: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 255 bytes from a string of length 1023 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:427:5, + inlined from ‘InSymbol’ at ../cmscgats.c:920:21: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 255 bytes from a string of length 255 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:437:5, + inlined from ‘InSymbol’ at ../cmscgats.c:920:21: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying between 1 and 255 bytes from a string of length 1023 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘SetData’ at ../cmscgats.c:1545:47: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘SetData’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, + inlined from ‘DataFormatSection’ at ../cmscgats.c:1841:18, + inlined from ‘ParseIT8’ at ../cmscgats.c:2061:26: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘ParseIT8’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, + inlined from ‘cmsIT8SetDataFormat’ at ../cmscgats.c:1490:16: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘cmsIT8SetDataFormat’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘SetData’ at ../cmscgats.c:1545:47, + inlined from ‘cmsIT8SetDataRowCol’ at ../cmscgats.c:2569:12: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘cmsIT8SetDataRowCol’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmscgats.c:27: +In function ‘strncpy’, + inlined from ‘AllocString’ at ../cmscgats.c:1111:14, + inlined from ‘SetData’ at ../cmscgats.c:1545:47, + inlined from ‘cmsIT8SetDataRowColDbl’ at ../cmscgats.c:2582:12: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmscgats.c: In function ‘cmsIT8SetDataRowColDbl’: +../cmscgats.c:1106:46: note: length computed here + 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; + | ^~~~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmscnvrt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmserr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pfapl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsgamma.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsgmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pfcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmshalf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pfmpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pgcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsintrp.c +../cmsintrp.c: In function ‘Eval4Inputs’: +../cmsintrp.c:918:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 918 | else + | ^~~~ +../cmsintrp.c:930:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 930 | Rest = c1 * rx + c2 * ry + c3 * rz; + | ^~~~ +../cmsintrp.c:982:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 982 | else + | ^~~~ +../cmsintrp.c:994:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 994 | Rest = c1 * rx + c2 * ry + c3 * rz; + | ^~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pint.c +../H5Pint.c: In function ‘H5P__iterate_pclass_cb’: +../H5Pint.c:4066:11: warning: unused variable ‘key’ [-Wunused-variable] + 4066 | char *key = (char *)_key; /* Pointer to the property's name */ + | ^~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Plapl.c +../H5Plapl.c: In function ‘H5P__lacc_elink_fapl_cmp’: +../H5Plapl.c:570:16: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] + 570 | herr_t status; + | ^~~~~~ +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5Plapl.c:35: +In function ‘strncpy’, + inlined from ‘H5Pget_elink_prefix’ at ../H5Plapl.c:1062:13: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5Plapl.c:35: +../H5Plapl.c: In function ‘H5Pget_elink_prefix’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5Plapl.c:1060:15: note: in expansion of macro ‘HDstrlen’ + 1060 | len = HDstrlen(my_prefix); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsio0.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Plcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsio1.c +../cmsio1.c: In function ‘_cmsReadFloatDevicelinkTag’: +../cmsio1.c:681:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 681 | else + | ^~~~ +../cmsio1.c:688:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 688 | if (PCS == cmsSigLabData) + | ^~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pocpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmslut.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsmd5.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pocpypl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsmtrx.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pstrcpl.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ptest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsnamed.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5PB.c +../H5PB.c: In function ‘H5PB_dest’: +../H5PB.c:487:7: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 487 | f = fio_info->f; + | ^ +../H5PB.c: In function ‘H5PB_read’: +../H5PB.c:793:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 793 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5PB.c:794:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 794 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +../H5PB.c: In function ‘H5PB_write’: +../H5PB.c:1100:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1100 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5PB.c:1101:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1101 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +../H5PB.c: In function ‘H5PB__write_entry’: +../H5PB.c:1525:29: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1525 | fdio_info.meta_dxpl = fio_info->meta_dxpl; + | ^ +../H5PB.c:1526:28: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 1526 | fdio_info.raw_dxpl = fio_info->raw_dxpl; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5PL.c +In file included from /usr/include/string.h:495, + from ../H5private.h:59, + from ../H5PL.c:23: +In function ‘strncpy’, + inlined from ‘H5PLget’ at ../H5PL.c:623:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from ../H5PL.c:23: +../H5PL.c: In function ‘H5PLget’: +../H5private.h:1355:28: note: length computed here + 1355 | #define HDstrlen(S) strlen(S) + | ^~~~~~~~~ +../H5PL.c:621:11: note: in expansion of macro ‘HDstrlen’ + 621 | len = HDstrlen(dl_path); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsopt.c +../cmsopt.c: In function ‘PatchLUT’: +../cmsopt.c:510:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 510 | else + | ^~~~ +../cmsopt.c:526:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 526 | for (i=0; i < nChannelsOut; i++) + | ^~~ +../cmsopt.c: In function ‘PrelinEval8’: +../cmsopt.c:978:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 978 | else + | ^~~~ +../cmsopt.c:990:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 990 | Rest = c1 * rx + c2 * ry + c3 * rz + 0x8001; + | ^~~~ +../cmsopt.c: In function ‘OptimizeByComputingLinearization’: +../cmsopt.c:1030:26: warning: variable ‘lIsLinear’ set but not used [-Wunused-but-set-variable] + 1030 | cmsBool lIsSuitable, lIsLinear; + | ^~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5R.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Rdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5UC.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5RS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5S.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Sall.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Sdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmspack.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmspcs.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsplugin.c +../cmsplugin.c: In function ‘_cmsReadFloat32Number’: +../cmsplugin.c:181:15: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] + 181 | *n = *(cmsFloat32Number*) (void*) &tmp; + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cmsplugin.c: In function ‘_cmsWriteFloat32Number’: +../cmsplugin.c:292:12: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] + 292 | tmp = *(cmsUInt32Number*) (void*) &n; + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsps2.c +../cmsps2.c: In function ‘WriteInputMatrixShaper’: +../cmsps2.c:964:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 964 | else + | ^~~~ +../cmsps2.c:986:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 986 | return rc; + | ^~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmssamp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmssm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Shyper.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Snone.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Spoint.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmstypes.c +../cmstypes.c: In function ‘ReadCLUT’: +../cmstypes.c:2360:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 2360 | else + | ^~~~ +../cmstypes.c:2374:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 2374 | return CLUT; + | ^~~~~~ +../cmstypes.c: In function ‘WriteCLUT’: +../cmstypes.c:2645:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 2645 | else + | ^~~~ +../cmstypes.c:2655:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 2655 | if (!_cmsWriteAlignment(io)) return FALSE; + | ^~ +In file included from /usr/include/string.h:495, + from /usr/include/memory.h:29, + from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, + from ../lcms2_internal.h:31, + from ../cmstypes.c:27: +In function ‘strncpy’, + inlined from ‘Type_NamedColor_Write’ at ../cmstypes.c:3146:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘Type_NamedColor_Write’ at ../cmstypes.c:3147:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Sselect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Stest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsvirt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmswtpnt.c +../cmswtpnt.c: In function ‘cmsWhitePointFromTemp’: +../cmswtpnt.c:66:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] + 66 | else + | ^~~~ +../cmswtpnt.c:80:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ + 80 | y = -3.000*(x*x) + 2.870*x - 0.275; + | ^ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsxform.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +/usr/bin/ar -rc liblcms.a cmsalpha.o cmscam02.o cmscgats.o cmscnvrt.o cmserr.o cmsgamma.o cmsgmt.o cmshalf.o cmsintrp.o cmsio0.o cmsio1.o cmslut.o cmsmd5.o cmsmtrx.o cmsnamed.o cmsopt.o cmspack.o cmspcs.o cmsplugin.o cmsps2.o cmssamp.o cmssm.o cmstypes.o cmsvirt.o cmswtpnt.o cmsxform.o +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +/usr/bin/ranlib liblcms.a +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +g++ -o liblcms.so -shared -fPIC -Wl,-hliblcms.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 cmsalpha.o cmscam02.o cmscgats.o cmscnvrt.o cmserr.o cmsgamma.o cmsgmt.o cmshalf.o cmsintrp.o cmsio0.o cmsio1.o cmslut.o cmsmd5.o cmsmtrx.o cmsnamed.o cmsopt.o cmspack.o cmspcs.o cmsplugin.o cmsps2.o cmssamp.o cmssm.o cmstypes.o cmsvirt.o cmswtpnt.o cmsxform.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' +make -C ./ttf install +make -C ./src install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' +mkdir -p O.Common +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cff.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bdf.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF winfnt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type42.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1cid.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF truetype.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF smooth.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF sfnt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF raster.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psmodule.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pshinter.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psaux.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pfr.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pcf.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlzw.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgzip.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftcache.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftwinfnt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fttype1.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsystem.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsynth.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftstroke.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpfr.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpatent.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftotval.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftmm.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlcdfil.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftinit.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgxval.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftglyph.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgasp.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfstype.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfntfmt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbitmap.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbbox.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbase.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF autofit.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SL.c +../H5SL.c: In function ‘H5SL_term_package’: +../H5SL.c:655:21: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] + 655 | herr_t ret; + | ^~~ +In file included from ../H5SL.c:64: +../H5SL.c: In function ‘H5SL_search’: +../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 2267 | return(ret_value); \ + | ^ +../H5SL.c:1397:11: note: ‘ret_value’ was declared here + 1397 | void *ret_value; /* Return value */ + | ^~~~~~~~~ +In file included from ../H5SL.c:64: +../H5SL.c: In function ‘H5SL_find’: +../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 2267 | return(ret_value); \ + | ^ +../H5SL.c:1698:18: note: ‘ret_value’ was declared here + 1698 | H5SL_node_t *ret_value; /* Return value */ + | ^~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMbtree2.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMcache.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMmessage.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMtest.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5ST.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5T.c +../H5T.c: In function ‘H5T_path_find’: +../H5T.c:4499:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 4499 | if(NULL == (path->src = H5T_copy(src, H5T_COPY_ALL))) + | ^~~ +../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) + | ~~~~~~~^~~~~~ +../H5T.c:4501:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 4501 | if(NULL == (path->dst = H5T_copy(dst, H5T_COPY_ALL))) + | ^~~ +../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) + | ~~~~~~~^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tarray.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tcommit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tcompound.c +../H5Tcompound.c: In function ‘H5T__insert’: +../H5Tcompound.c:459:56: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 459 | parent->shared->u.compnd.memb[idx].type = H5T_copy(member, H5T_COPY_ALL); + | ^~~~~~ +In file included from ../H5Tpkg.h:37, + from ../H5Tcompound.c:33: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +/usr/bin/ar -rc libttf.a autofit.o ftbase.o ftbbox.o ftbitmap.o ftfntfmt.o ftfstype.o ftgasp.o ftglyph.o ftgxval.o ftinit.o ftlcdfil.o ftmm.o ftotval.o ftpatent.o ftpfr.o ftstroke.o ftsynth.o ftsystem.o fttype1.o ftwinfnt.o ftcache.o ftgzip.o ftlzw.o pcf.o pfr.o psaux.o pshinter.o psmodule.o raster.o sfnt.o smooth.o truetype.o type1.o type1cid.o type42.o winfnt.o bdf.o cff.o +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +/usr/bin/ranlib libttf.a +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +g++ -o libttf.so -shared -fPIC -Wl,-hlibttf.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 autofit.o ftbase.o ftbbox.o ftbitmap.o ftfntfmt.o ftfstype.o ftgasp.o ftglyph.o ftgxval.o ftinit.o ftlcdfil.o ftmm.o ftotval.o ftpatent.o ftpfr.o ftstroke.o ftsynth.o ftsystem.o fttype1.o ftwinfnt.o ftcache.o ftgzip.o ftlzw.o pcf.o pfr.o psaux.o pshinter.o psmodule.o raster.o sfnt.o smooth.o truetype.o type1.o type1cid.o type42.o winfnt.o bdf.o cff.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' +make -C ./wmf install +make -C ./src install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' +mkdir -p O.Common +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF recorder.d ../recorder.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF player.d ../player.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF meta.d ../meta.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bbuf.d ../bbuf.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF api.d ../api.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../api.c +In file included from ../api.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tconv.c +../H5Tconv.c: In function ‘H5T_conv_struct_free’: +../H5Tconv.c:1876:17: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] + 1876 | int status; + | ^~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../bbuf.c +In file included from ../bbuf.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tcset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../meta.c +In file included from ../meta.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tdbg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tdeprec.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tenum.c +../H5Tenum.c: In function ‘H5T__enum_create’: +../H5Tenum.c:110:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 110 | ret_value->shared->parent = H5T_copy(parent, H5T_COPY_ALL); + | ^~~~~~ +In file included from ../H5Tpkg.h:37, + from ../H5Tenum.c:26: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Tenum.c: In function ‘H5T_enum_nameof’: +../H5Tenum.c:411:38: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 411 | if(NULL == (copied_dt = H5T_copy(dt, H5T_COPY_ALL))) + | ^~ +In file included from ../H5Tpkg.h:37, + from ../H5Tenum.c:26: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +../H5Tenum.c: In function ‘H5T_enum_valueof’: +../H5Tenum.c:550:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 550 | if (NULL==(copied_dt=H5T_copy(dt, H5T_COPY_ALL))) + | ^~ +In file included from ../H5Tpkg.h:37, + from ../H5Tenum.c:26: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tfields.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tfixed.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tfloat.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tnative.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Toffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Toh.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Topaque.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Torder.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tprecis.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tstrpad.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tvisit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tvlen.c +../H5Tvlen.c: In function ‘H5T__vlen_create’: +../H5Tvlen.c:142:47: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] + 142 | if(NULL == (dt->shared->parent = H5T_copy(base, H5T_COPY_ALL))) + | ^~~~ +In file included from ../H5Oprivate.h:41, + from ../H5Dprivate.h:25, + from ../H5Tvlen.c:23: +../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} + 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); + | ^~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5TS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5VM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../player.c +In file included from ../player.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +In file included from ../player.c:44: +../player/meta.h: In function ‘meta_dc_color’: +../player/meta.h:2386:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] + 2386 | { if (value = wmf_attr_query (API, attrlist, "color")) + | ^~~~~ +../player/meta.h: In function ‘meta_pen_create’: +../player/meta.h:3107:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] + 3107 | { if (value = wmf_attr_query (API, attrlist, "color")) + | ^~~~~ +../player/meta.h: In function ‘meta_brush_create’: +../player/meta.h:3209:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] + 3209 | { if (value = wmf_attr_query (API, attrlist, "color")) + | ^~~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5WB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Z.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zdeflate.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../recorder.c +In file included from ../recorder.c:21: +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] + 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions + | +../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] + 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ + | +../recorder.c: In function ‘wmf_canvas_line’: +../recorder.c:977:17: warning: unused variable ‘Size’ [-Wunused-variable] + 977 | unsigned long Size = 3 + 2; + | ^~~~ +../recorder.c: In function ‘s_update_header’: +../recorder.c:91:16: warning: ‘rbox.ptr’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 91 | *rbox->ptr++ = (unsigned char) ((ul >> 8) & 0xff); + | ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../recorder.c:98:16: note: ‘rbox.ptr’ was declared here + 98 | wmfRecordBox rbox; + | ^~~~ +../recorder.c:84:17: warning: ‘rbox.end’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 84 | if (rbox->end - rbox->ptr < 4) + | ~~~~~~~~~~^~~~~~~~~~~ +../recorder.c:98:16: note: ‘rbox.end’ was declared here + 98 | wmfRecordBox rbox; + | ^~~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +/usr/bin/ar -rc libwmf.a api.o bbuf.o meta.o player.o recorder.o +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +/usr/bin/ranlib libwmf.a +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zfletcher32.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +g++ -o libwmf.so -shared -fPIC -Wl,-hlibwmf.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 api.o bbuf.o meta.o player.o recorder.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' +make -C ./webp install +make -C ./src install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' +mkdir -p O.Common +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF utils.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF thread.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerutils.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF random.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels_dec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman_encode.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersutils.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF color_cache.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_writer.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_reader.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxread.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxinternal.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxedit.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_encode.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webpenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF analysis.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphaenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF backward_references.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Znbit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF delta_palettization.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF config.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filter.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF frameenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF histogram.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF iterator.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_tools.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_rescale.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_psnr.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_csp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF near_lossless.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF syntax.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF token.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treeenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8lenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_msa.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_clip_tables.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cpu.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costdsp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_avx2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersdsp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerdsp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF demux.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_decode.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8ldec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treedec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantdec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF io.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF idec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF framedec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF buffer.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphadec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zscaleoffset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zshuffle.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zszip.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ztrans.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../os/Linux/H5Tinit.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5lib_settings.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5detect.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +/usr/bin/ar -rc libhdf5.a H5.o H5checksum.o H5dbg.o H5system.o H5timer.o H5trace.o H5A.o H5Abtree2.o H5Adense.o H5Adeprec.o H5Aint.o H5Atest.o H5AC.o H5AClog.o H5ACdbg.o H5ACproxy_entry.o H5B.o H5Bcache.o H5Bdbg.o H5B2.o H5B2cache.o H5B2dbg.o H5B2hdr.o H5B2int.o H5B2internal.o H5B2leaf.o H5B2stat.o H5B2test.o H5C.o H5Cdbg.o H5Cepoch.o H5Cimage.o H5Clog.o H5Cprefetched.o H5Cquery.o H5Ctag.o H5Ctest.o H5CS.o H5D.o H5Dbtree.o H5Dbtree2.o H5Dchunk.o H5Dcompact.o H5Dcontig.o H5Ddbg.o H5Ddeprec.o H5Dearray.o H5Defl.o H5Dfarray.o H5Dfill.o H5Dint.o H5Dio.o H5Dlayout.o H5Dnone.o H5Doh.o H5Dscatgath.o H5Dselect.o H5Dsingle.o H5Dtest.o H5Dvirtual.o H5E.o H5Edeprec.o H5Eint.o H5EA.o H5EAcache.o H5EAdbg.o H5EAdblkpage.o H5EAdblock.o H5EAhdr.o H5EAiblock.o H5EAint.o H5EAsblock.o H5EAstat.o H5EAtest.o H5F.o H5Faccum.o H5Fcwfs.o H5Fdbg.o H5Fdeprec.o H5Fefc.o H5Ffake.o H5Fint.o H5Fio.o H5Fmount.o H5Fquery.o H5Fsfile.o H5Fspace.o H5Fsuper.o H5Fsuper_cache.o H5Ftest.o H5FA.o H5FAcache.o H5FAdbg.o H5FAdblock.o H5FAdblkpage.o H5FAhdr.o H5FAint.o H5FAstat.o H5FAtest.o H5FD.o H5FDcore.o H5FDfamily.o H5FDint.o H5FDlog.o H5FDmulti.o H5FDsec2.o H5FDspace.o H5FDstdio.o H5FDtest.o H5FL.o H5FO.o H5FS.o H5FScache.o H5FSdbg.o H5FSint.o H5FSsection.o H5FSstat.o H5FStest.o H5G.o H5Gbtree2.o H5Gcache.o H5Gcompact.o H5Gdense.o H5Gdeprec.o H5Gent.o H5Gint.o H5Glink.o H5Gloc.o H5Gname.o H5Gnode.o H5Gobj.o H5Goh.o H5Groot.o H5Gstab.o H5Gtest.o H5Gtraverse.o H5HF.o H5HFbtree2.o H5HFcache.o H5HFdbg.o H5HFdblock.o H5HFdtable.o H5HFhdr.o H5HFhuge.o H5HFiblock.o H5HFiter.o H5HFman.o H5HFsection.o H5HFspace.o H5HFstat.o H5HFtest.o H5HFtiny.o H5HG.o H5HGcache.o H5HGdbg.o H5HGquery.o H5HL.o H5HLcache.o H5HLdbg.o H5HLint.o H5HLprfx.o H5HLdblk.o H5HP.o H5I.o H5Itest.o H5L.o H5Lexternal.o H5MF.o H5MFaggr.o H5MFdbg.o H5MFsection.o H5MM.o H5MP.o H5MPtest.o H5O.o H5Oainfo.o H5Oalloc.o H5Oattr.o H5Oattribute.o H5Obogus.o H5Obtreek.o H5Ocache.o H5Ocache_image.o H5Ochunk.o H5Ocont.o H5Ocopy.o H5Odbg.o H5Odrvinfo.o H5Odtype.o H5Oefl.o H5Ofill.o H5Oflush.o H5Ofsinfo.o H5Oginfo.o H5Olayout.o H5Olinfo.o H5Olink.o H5Omessage.o H5Omtime.o H5Oname.o H5Onull.o H5Opline.o H5Orefcount.o H5Osdspace.o H5Oshared.o H5Oshmesg.o H5Ostab.o H5Otest.o H5Ounknown.o H5P.o H5Pacpl.o H5Pdapl.o H5Pdcpl.o H5Pdeprec.o H5Pdxpl.o H5Pencdec.o H5Pfapl.o H5Pfcpl.o H5Pfmpl.o H5Pgcpl.o H5Pint.o H5Plapl.o H5Plcpl.o H5Pocpl.o H5Pocpypl.o H5Pstrcpl.o H5Ptest.o H5PB.o H5PL.o H5R.o H5Rdeprec.o H5UC.o H5RS.o H5S.o H5Sall.o H5Sdbg.o H5Shyper.o H5Snone.o H5Spoint.o H5Sselect.o H5Stest.o H5SL.o H5SM.o H5SMbtree2.o H5SMcache.o H5SMmessage.o H5SMtest.o H5ST.o H5T.o H5Tarray.o H5Tbit.o H5Tcommit.o H5Tcompound.o H5Tconv.o H5Tcset.o H5Tdbg.o H5Tdeprec.o H5Tenum.o H5Tfields.o H5Tfixed.o H5Tfloat.o H5Tnative.o H5Toffset.o H5Toh.o H5Topaque.o H5Torder.o H5Tpad.o H5Tprecis.o H5Tstrpad.o H5Tvisit.o H5Tvlen.o H5TS.o H5VM.o H5WB.o H5Z.o H5Zdeflate.o H5Zfletcher32.o H5Znbit.o H5Zscaleoffset.o H5Zshuffle.o H5Zszip.o H5Ztrans.o H5Tinit.o H5lib_settings.o blosc_filter.o jpeg_h5filter.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +/usr/bin/ranlib libhdf5.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +g++ -o libhdf5.so -shared -fPIC -Wl,-hlibhdf5.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 H5.o H5checksum.o H5dbg.o H5system.o H5timer.o H5trace.o H5A.o H5Abtree2.o H5Adense.o H5Adeprec.o H5Aint.o H5Atest.o H5AC.o H5AClog.o H5ACdbg.o H5ACproxy_entry.o H5B.o H5Bcache.o H5Bdbg.o H5B2.o H5B2cache.o H5B2dbg.o H5B2hdr.o H5B2int.o H5B2internal.o H5B2leaf.o H5B2stat.o H5B2test.o H5C.o H5Cdbg.o H5Cepoch.o H5Cimage.o H5Clog.o H5Cprefetched.o H5Cquery.o H5Ctag.o H5Ctest.o H5CS.o H5D.o H5Dbtree.o H5Dbtree2.o H5Dchunk.o H5Dcompact.o H5Dcontig.o H5Ddbg.o H5Ddeprec.o H5Dearray.o H5Defl.o H5Dfarray.o H5Dfill.o H5Dint.o H5Dio.o H5Dlayout.o H5Dnone.o H5Doh.o H5Dscatgath.o H5Dselect.o H5Dsingle.o H5Dtest.o H5Dvirtual.o H5E.o H5Edeprec.o H5Eint.o H5EA.o H5EAcache.o H5EAdbg.o H5EAdblkpage.o H5EAdblock.o H5EAhdr.o H5EAiblock.o H5EAint.o H5EAsblock.o H5EAstat.o H5EAtest.o H5F.o H5Faccum.o H5Fcwfs.o H5Fdbg.o H5Fdeprec.o H5Fefc.o H5Ffake.o H5Fint.o H5Fio.o H5Fmount.o H5Fquery.o H5Fsfile.o H5Fspace.o H5Fsuper.o H5Fsuper_cache.o H5Ftest.o H5FA.o H5FAcache.o H5FAdbg.o H5FAdblock.o H5FAdblkpage.o H5FAhdr.o H5FAint.o H5FAstat.o H5FAtest.o H5FD.o H5FDcore.o H5FDfamily.o H5FDint.o H5FDlog.o H5FDmulti.o H5FDsec2.o H5FDspace.o H5FDstdio.o H5FDtest.o H5FL.o H5FO.o H5FS.o H5FScache.o H5FSdbg.o H5FSint.o H5FSsection.o H5FSstat.o H5FStest.o H5G.o H5Gbtree2.o H5Gcache.o H5Gcompact.o H5Gdense.o H5Gdeprec.o H5Gent.o H5Gint.o H5Glink.o H5Gloc.o H5Gname.o H5Gnode.o H5Gobj.o H5Goh.o H5Groot.o H5Gstab.o H5Gtest.o H5Gtraverse.o H5HF.o H5HFbtree2.o H5HFcache.o H5HFdbg.o H5HFdblock.o H5HFdtable.o H5HFhdr.o H5HFhuge.o H5HFiblock.o H5HFiter.o H5HFman.o H5HFsection.o H5HFspace.o H5HFstat.o H5HFtest.o H5HFtiny.o H5HG.o H5HGcache.o H5HGdbg.o H5HGquery.o H5HL.o H5HLcache.o H5HLdbg.o H5HLint.o H5HLprfx.o H5HLdblk.o H5HP.o H5I.o H5Itest.o H5L.o H5Lexternal.o H5MF.o H5MFaggr.o H5MFdbg.o H5MFsection.o H5MM.o H5MP.o H5MPtest.o H5O.o H5Oainfo.o H5Oalloc.o H5Oattr.o H5Oattribute.o H5Obogus.o H5Obtreek.o H5Ocache.o H5Ocache_image.o H5Ochunk.o H5Ocont.o H5Ocopy.o H5Odbg.o H5Odrvinfo.o H5Odtype.o H5Oefl.o H5Ofill.o H5Oflush.o H5Ofsinfo.o H5Oginfo.o H5Olayout.o H5Olinfo.o H5Olink.o H5Omessage.o H5Omtime.o H5Oname.o H5Onull.o H5Opline.o H5Orefcount.o H5Osdspace.o H5Oshared.o H5Oshmesg.o H5Ostab.o H5Otest.o H5Ounknown.o H5P.o H5Pacpl.o H5Pdapl.o H5Pdcpl.o H5Pdeprec.o H5Pdxpl.o H5Pencdec.o H5Pfapl.o H5Pfcpl.o H5Pfmpl.o H5Pgcpl.o H5Pint.o H5Plapl.o H5Plcpl.o H5Pocpl.o H5Pocpypl.o H5Pstrcpl.o H5Ptest.o H5PB.o H5PL.o H5R.o H5Rdeprec.o H5UC.o H5RS.o H5S.o H5Sall.o H5Sdbg.o H5Shyper.o H5Snone.o H5Spoint.o H5Sselect.o H5Stest.o H5SL.o H5SM.o H5SMbtree2.o H5SMcache.o H5SMmessage.o H5SMtest.o H5ST.o H5T.o H5Tarray.o H5Tbit.o H5Tcommit.o H5Tcompound.o H5Tconv.o H5Tcset.o H5Tdbg.o H5Tdeprec.o H5Tenum.o H5Tfields.o H5Tfixed.o H5Tfloat.o H5Tnative.o H5Toffset.o H5Toh.o H5Topaque.o H5Torder.o H5Tpad.o H5Tprecis.o H5Tstrpad.o H5Tvisit.o H5Tvlen.o H5TS.o H5VM.o H5WB.o H5Z.o H5Zdeflate.o H5Zfletcher32.o H5Znbit.o H5Zscaleoffset.o H5Zshuffle.o H5Zszip.o H5Ztrans.o H5Tinit.o H5lib_settings.o blosc_filter.o jpeg_h5filter.o -lszip -lzlib -lblosc -ljpeg -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +g++ -o H5detect -Wl,-Bstatic -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 H5detect.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +mkdir ../../../bin +mkdir ../../../bin/linux-x86_64 +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make -C ./hdf5_hlSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5TB.d ../H5TB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5PT.d ../H5PT.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTparse.d ../H5LTparse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTanalyze.d ../H5LTanalyze.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LT.d ../H5LT.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LD.d ../H5LD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5IM.d ../H5IM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DS.d ../H5DS.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DO.d ../H5DO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5DO.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5DS.c +../H5DS.c: In function ‘H5DSset_label’: +../H5DS.c:1436:7: warning: ‘u.buf’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1436 | } u; + | ^ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5IM.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LD.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LT.c +In file included from /usr/include/string.h:495, + from ../H5LT.c:17: +In function ‘strncat’, + inlined from ‘realloc_and_append’ at ../H5LT.c:2296:4, + inlined from ‘indentation’ at ../H5LT.c:2337:16: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output may be truncated copying between 0 and 255 bytes from a string of length 255 [-Wstringop-truncation] + 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LTanalyze.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LTparse.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5PT.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +/usr/bin/ar -rc libwebp.a alphadec.o buffer.o framedec.o idec.o io.o quantdec.o treedec.o vp8.o vp8ldec.o webp.o anim_decode.o demux.o rescalerdsp.o rescaler_mips32.o rescaler_mips_dsp_r2.o rescaler_neon.o rescaler_sse2.o lossless.o lossless_enc.o lossless_enc_mips32.o lossless_enc_mips_dsp_r2.o lossless_enc_neon.o lossless_enc_sse2.o lossless_enc_sse41.o lossless_mips_dsp_r2.o lossless_neon.o lossless_sse2.o filtersdsp.o filters_mips_dsp_r2.o filters_sse2.o enc.o enc_avx2.o enc_mips32.o enc_mips_dsp_r2.o enc_neon.o enc_sse2.o enc_sse41.o costdsp.o cost_mips32.o cost_mips_dsp_r2.o cost_sse2.o cpu.o dec.o dec_clip_tables.o dec_mips32.o dec_mips_dsp_r2.o dec_msa.o dec_neon.o dec_sse2.o dec_sse41.o argb.o argb_mips_dsp_r2.o argb_sse2.o alpha_processing.o alpha_processing_mips_dsp_r2.o alpha_processing_sse2.o alpha_processing_sse41.o upsampling.o upsampling_mips_dsp_r2.o upsampling_neon.o upsampling_sse2.o yuv.o yuv_mips32.o yuv_mips_dsp_r2.o yuv_sse2.o vp8lenc.o treeenc.o token.o syntax.o near_lossless.o picture.o picture_csp.o picture_psnr.o picture_rescale.o picture_tools.o quantenc.o iterator.o histogram.o frameenc.o filter.o config.o costenc.o delta_palettization.o backward_references.o alphaenc.o analysis.o webpenc.o anim_encode.o muxedit.o muxinternal.o muxread.o bit_reader.o bit_writer.o color_cache.o filtersutils.o huffman.o huffman_encode.o quant_levels.o quant_levels_dec.o random.o rescalerutils.o thread.o utils.o +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +/usr/bin/ranlib libwebp.a +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +g++ -o libwebp.so -shared -fPIC -Wl,-hlibwebp.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 alphadec.o buffer.o framedec.o idec.o io.o quantdec.o treedec.o vp8.o vp8ldec.o webp.o anim_decode.o demux.o rescalerdsp.o rescaler_mips32.o rescaler_mips_dsp_r2.o rescaler_neon.o rescaler_sse2.o lossless.o lossless_enc.o lossless_enc_mips32.o lossless_enc_mips_dsp_r2.o lossless_enc_neon.o lossless_enc_sse2.o lossless_enc_sse41.o lossless_mips_dsp_r2.o lossless_neon.o lossless_sse2.o filtersdsp.o filters_mips_dsp_r2.o filters_sse2.o enc.o enc_avx2.o enc_mips32.o enc_mips_dsp_r2.o enc_neon.o enc_sse2.o enc_sse41.o costdsp.o cost_mips32.o cost_mips_dsp_r2.o cost_sse2.o cpu.o dec.o dec_clip_tables.o dec_mips32.o dec_mips_dsp_r2.o dec_msa.o dec_neon.o dec_sse2.o dec_sse41.o argb.o argb_mips_dsp_r2.o argb_sse2.o alpha_processing.o alpha_processing_mips_dsp_r2.o alpha_processing_sse2.o alpha_processing_sse41.o upsampling.o upsampling_mips_dsp_r2.o upsampling_neon.o upsampling_sse2.o yuv.o yuv_mips32.o yuv_mips_dsp_r2.o yuv_sse2.o vp8lenc.o treeenc.o token.o syntax.o near_lossless.o picture.o picture_csp.o picture_psnr.o picture_rescale.o picture_tools.o quantenc.o iterator.o histogram.o frameenc.o filter.o config.o costenc.o delta_palettization.o backward_references.o alphaenc.o analysis.o webpenc.o anim_encode.o muxedit.o muxinternal.o muxread.o bit_reader.o bit_writer.o color_cache.o filtersutils.o huffman.o huffman_encode.o quant_levels.o quant_levels_dec.o random.o rescalerutils.o thread.o utils.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' +make -C ./png install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' +mkdir -p O.Common +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngread.d ../pngread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwutil.d ../pngwutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5TB.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwtran.d ../pngwtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwrite.d ../pngwrite.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwio.d ../pngwio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +/usr/bin/ar -rc libhdf5_hl.a H5DO.o H5DS.o H5IM.o H5LD.o H5LT.o H5LTanalyze.o H5LTparse.o H5PT.o H5TB.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +/usr/bin/ranlib libhdf5_hl.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngtrans.d ../pngtrans.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngset.d ../pngset.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +g++ -o libhdf5_hl.so -shared -fPIC -Wl,-hlibhdf5_hl.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 H5DO.o H5DS.o H5IM.o H5LD.o H5LT.o H5LTanalyze.o H5LTparse.o H5PT.o H5TB.o -lhdf5 -lszip -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrutil.d ../pngrutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make -C ./hdf5PluginSrc install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrtran.d ../pngrtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrio.d ../pngrio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngpread.d ../pngpread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5plugin.d ../jpeg_h5plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngmem.d ../pngmem.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d ../../../supportApp/hdf5Src/jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_plugin.d ../blosc_plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngget.d ../pngget.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngerror.d ../pngerror.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d ../../../supportApp/hdf5Src/blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF png.d ../png.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/hdf5Src/blosc_filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../blosc_plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/hdf5Src/jpeg_h5filter.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jpeg_h5plugin.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +g++ -o libHDF5_blosc_plugin.so -shared -fPIC -Wl,-hlibHDF5_blosc_plugin.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 blosc_filter.o blosc_plugin.o -lhdf5 -lblosc -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +g++ -o libHDF5_jpeg_plugin.so -shared -fPIC -Wl,-hlibHDF5_jpeg_plugin.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jpeg_h5filter.o jpeg_h5plugin.o -lhdf5 -ljpeg -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' +make -C ./netCDFSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_initialize.d ../../../supportApp/netCDFSrc/liblib/nc_initialize.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF utf8proc.d ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutil.d ../../../supportApp/netCDFSrc/libdispatch/dutil.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dwinpath.d ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF doffsets.d ../../../supportApp/netCDFSrc/libdispatch/doffsets.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dauth.d ../../../supportApp/netCDFSrc/libdispatch/dauth.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF drc.d ../../../supportApp/netCDFSrc/libdispatch/drc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclistmgr.d ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc.d ../../../supportApp/netCDFSrc/libdispatch/nc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nctime.d ../../../supportApp/netCDFSrc/libdispatch/nctime.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nchashmap.d ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncbytes.d ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclist.d ../../../supportApp/netCDFSrc/libdispatch/nclist.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncuri.d ../../../supportApp/netCDFSrc/libdispatch/ncuri.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dstring.d ../../../supportApp/netCDFSrc/libdispatch/dstring.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../png.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclog.d ../../../supportApp/netCDFSrc/libdispatch/nclog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutf8.d ../../../supportApp/netCDFSrc/libdispatch/dutf8.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddispatch.d ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dinternal.d ../../../supportApp/netCDFSrc/libdispatch/dinternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarinq.d ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarput.d ../../../supportApp/netCDFSrc/libdispatch/dvarput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarget.d ../../../supportApp/netCDFSrc/libdispatch/dvarget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvar.d ../../../supportApp/netCDFSrc/libdispatch/dvar.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF derror.d ../../../supportApp/netCDFSrc/libdispatch/derror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattget.d ../../../supportApp/netCDFSrc/libdispatch/dattget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattput.d ../../../supportApp/netCDFSrc/libdispatch/dattput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngerror.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattinq.d ../../../supportApp/netCDFSrc/libdispatch/dattinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF datt.d ../../../supportApp/netCDFSrc/libdispatch/datt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddim.d ../../../supportApp/netCDFSrc/libdispatch/ddim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dfile.d ../../../supportApp/netCDFSrc/libdispatch/dfile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dcopy.d ../../../supportApp/netCDFSrc/libdispatch/dcopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dparallel.d ../../../supportApp/netCDFSrc/libdispatch/dparallel.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF posixio.d ../../../supportApp/netCDFSrc/libsrc/posixio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF memio.d ../../../supportApp/netCDFSrc/libsrc/memio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncio.d ../../../supportApp/netCDFSrc/libsrc/ncio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lookup3.d ../../../supportApp/netCDFSrc/libsrc/lookup3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_hashmap.d ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncx.d ../../../supportApp/netCDFSrc/libsrc/ncx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dim.d ../../../supportApp/netCDFSrc/libsrc/dim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF var.d ../../../supportApp/netCDFSrc/libsrc/var.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngget.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3internal.d ../../../supportApp/netCDFSrc/libsrc/nc3internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3dispatch.d ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF attr.d ../../../supportApp/netCDFSrc/libsrc/attr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF putget.d ../../../supportApp/netCDFSrc/libsrc/putget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngmem.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF v1hpg.d ../../../supportApp/netCDFSrc/libsrc/v1hpg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngpread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngrio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/v1hpg.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngrtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/putget.c +putget.m4: In function ‘putNCvx_char_char’: +putget.m4:754:15: warning: unused variable ‘fillp’ [-Wunused-variable] +At top level: +putget.m4:912:1: warning: ‘getNCvx_char_char’ defined but not used [-Wunused-function] +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngrutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/attr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngset.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/nc3internal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/var.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngtrans.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/dim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwio.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwrite.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwtran.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwutil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngread.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +/usr/bin/ar -rc libpng.a png.o pngerror.o pngget.o pngmem.o pngpread.o pngrio.o pngrtran.o pngrutil.o pngset.o pngtrans.o pngwio.o pngwrite.o pngwtran.o pngwutil.o pngread.o +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +/usr/bin/ranlib libpng.a +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +g++ -o libpng.so -shared -fPIC -Wl,-hlibpng.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 png.o pngerror.o pngget.o pngmem.o pngpread.o pngrio.o pngrtran.o pngrutil.o pngset.o pngtrans.o pngwio.o pngwrite.o pngwtran.o pngwutil.o pngread.o -lbzlib -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' +make -C ./jp2 install +make -C ./src install +make -C ./libjasper install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../../.. +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' +mkdir -p O.Common +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../../.. \ + T_A=linux-x86_64 install +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_util.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/ncx.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tsfb.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tagtree.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2cod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1cod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_qmfb.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqenc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/lookup3.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqdec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqcod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mct.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/ncio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_math.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_cs.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_bs.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/memio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_cod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_version.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tvp.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tmr.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_string.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_stream.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_seq.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_malloc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_init.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_image.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_iccdata.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_icc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_getopt.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_debug.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_cm.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/posixio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dparallel.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dcopy.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dfile.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ddim.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/datt.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dattinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dattput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dattget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/derror.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvar.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvarget.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvarput.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dinternal.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dutf8.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nclog.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dstring.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_iccattrtab_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:730:49: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘jas_iccsig_t’ {aka ‘long unsigned int’} [-Wformat=] + 730 | fprintf(out, "attrno=%d; attrname=\"%s\"(0x%08x); attrtype=\"%s\"(0x%08x)\n", + | ~~~^ + | | + | unsigned int + | %08lx +...... + 733 | attr->name, + | ~~~~~~~~~~ + | | + | jas_iccsig_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:730:74: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 7 has type ‘jas_iccsig_t’ {aka ‘long unsigned int’} [-Wformat=] + 730 | fprintf(out, "attrno=%d; attrname=\"%s\"(0x%08x); attrtype=\"%s\"(0x%08x)\n", + | ~~~^ + | | + | unsigned int + | %08lx +...... + 735 | attrval->type + | ~~~~~~~~~~~~~ + | | + | jas_iccsig_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_iccattrval_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:886:41: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘jas_iccsig_t’ {aka ‘long unsigned int’} [-Wformat=] + 886 | fprintf(out, "refcnt = %d; type = 0x%08x %s\n", attrval->refcnt, + | ~~~^ + | | + | unsigned int + | %08lx + 887 | attrval->type, jas_iccsigtostr(attrval->type, &buf[0])); + | ~~~~~~~~~~~~~ + | | + | jas_iccsig_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icccurv_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1044:37: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint32_t’ {aka ‘long unsigned int’} [-Wformat=] + 1044 | fprintf(out, "number of entires = %d\n", curv->numents); + | ~^ ~~~~~~~~~~~~~ + | | | + | int jas_iccuint32_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icctxtdesc_copy’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1072:20: warning: variable ‘txtdesc’ set but not used [-Wunused-but-set-variable] + 1072 | jas_icctxtdesc_t *txtdesc = &attrval->data.txtdesc; + | ^~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icctxtdesc_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1170:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint32_t’ {aka ‘long unsigned int’} [-Wformat=] + 1170 | fprintf(out, "uclangcode = %d; uclen = %d\n", txtdesc->uclangcode, + | ~^ ~~~~~~~~~~~~~~~~~~~ + | | | + | int jas_iccuint32_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1170:42: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘jas_iccuint32_t’ {aka ‘long unsigned int’} [-Wformat=] + 1170 | fprintf(out, "uclangcode = %d; uclen = %d\n", txtdesc->uclangcode, + | ~^ + | | + | int + | %ld + 1171 | txtdesc->uclen); + | ~~~~~~~~~~~~~~ + | | + | jas_iccuint32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1172:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1172 | fprintf(out, "sccode = %d\n", txtdesc->sccode); + | ~^ ~~~~~~~~~~~~~~~ + | | | + | int jas_iccuint16_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut8_copy’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1259:17: warning: variable ‘lut8’ set but not used [-Wunused-but-set-variable] + 1259 | jas_icclut8_t *lut8 = &attrval->data.lut8; + | ^~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut8_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1403:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1403 | fprintf(out, "numintabents=%d, numouttabents=%d\n", + | ~^ + | | + | int + | %ld + 1404 | lut8->numintabents, lut8->numouttabents); + | ~~~~~~~~~~~~~~~~~~ + | | + | jas_iccuint16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1403:48: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1403 | fprintf(out, "numintabents=%d, numouttabents=%d\n", + | ~^ + | | + | int + | %ld + 1404 | lut8->numintabents, lut8->numouttabents); + | ~~~~~~~~~~~~~~~~~~~ + | | + | jas_iccuint16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut16_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1567:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1567 | fprintf(out, "numintabents=%d, numouttabents=%d\n", + | ~^ + | | + | int + | %ld + 1568 | lut16->numintabents, lut16->numouttabents); + | ~~~~~~~~~~~~~~~~~~~ + | | + | jas_iccuint16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1567:48: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1567 | fprintf(out, "numintabents=%d, numouttabents=%d\n", + | ~^ + | | + | int + | %ld + 1568 | lut16->numintabents, lut16->numouttabents); + | ~~~~~~~~~~~~~~~~~~~~ + | | + | jas_iccuint16_t {aka long unsigned int} +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ncuri.c +In file included from /usr/include/string.h:495, + from ../../../supportApp/netCDFSrc/libdispatch/ncuri.c:8: +In function ‘strncpy’, + inlined from ‘ncuriparse’ at ../../../supportApp/netCDFSrc/libdispatch/ncuri.c:153:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/ncuri.c: In function ‘ncuriparse’: +../../../supportApp/netCDFSrc/libdispatch/ncuri.c:137:12: note: length computed here + 137 | len0 = strlen(uri0); + | ^~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nclist.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c: In function ‘jas_image_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:824:45: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘jas_image_cmpttype_t’ {aka ‘long int’} [-Wformat=] + 824 | fprintf(out, "prec=%d, sgnd=%d, cmpttype=%d\n", cmpt->prec_, + | ~^ + | | + | int + | %ld + 825 | cmpt->sgnd_, cmpt->type_); + | ~~~~~~~~~~~ + | | + | jas_image_cmpttype_t {aka long int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c: In function ‘jas_image_chclrspc’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1289:6: warning: variable ‘numoutchans’ set but not used [-Wunused-but-set-variable] + 1289 | int numoutchans; + | ^~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1282:6: warning: variable ‘numinauxchans’ set but not used [-Wunused-but-set-variable] + 1282 | int numinauxchans; + | ^~~~~~~~~~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nctime.c +../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdParseRelunits’: +../../../supportApp/netCDFSrc/libdispatch/nctime.c:384:25: warning: ‘%s’ directive writing up to 47 bytes into a region of size between 0 and 47 [-Wformat-overflow=] + 384 | sprintf(basetime,"%s %s",basetime_1,basetime_2); + | ^~ ~~~~~~~~~~ +In file included from /usr/include/stdio.h:867, + from ../../../supportApp/netCDFSrc/libdispatch/nctime.c:20: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output between 2 and 96 bytes into a destination of size 48 + 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 37 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdComp2Rel.constprop’: +../../../supportApp/netCDFSrc/libdispatch/nctime.c:877:15: warning: ‘ndel’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 877 | *reltime = (double)ndel; + | ^~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c:871:19: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 871 | *reltime = delta/168.0; + | ~~~~~^~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdRel2Comp’: +../../../supportApp/netCDFSrc/libdispatch/nctime.c:1073:3: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1073 | Cde2h(base_etm+delta, old_timetype, 1970, &humantime); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdRel2Iso’: +../../../supportApp/netCDFSrc/libdispatch/nctime.c:1073:3: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 1073 | Cde2h(base_etm+delta, old_timetype, 1970, &humantime); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/nctime.c:983:9: note: ‘delta’ was declared here + 983 | double delta; + | ^~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c: In function ‘jas_seq2d_output’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:426:17: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 426 | fprintf(out, "%d %d\n", jas_seq2d_xstart(matrix), + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:426:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 426 | fprintf(out, "%d %d\n", jas_seq2d_xstart(matrix), + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:428:17: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 428 | fprintf(out, "%d %d\n", jas_matrix_numcols(matrix), + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:428:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 428 | fprintf(out, "%d %d\n", jas_matrix_numcols(matrix), + | ~^ + | | + | int + | %ld +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/drc.c +In file included from /usr/include/string.h:495, + from ../../../supportApp/netCDFSrc/libdispatch/drc.c:15: +In function ‘strncpy’, + inlined from ‘rcsearch’ at ../../../supportApp/netCDFSrc/libdispatch/drc.c:403:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../../../supportApp/netCDFSrc/libdispatch/drc.c: In function ‘rcsearch’: +../../../supportApp/netCDFSrc/libdispatch/drc.c:396:16: note: length computed here + 396 | int plen = strlen(prefix); + | ^~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c: In function ‘jas_stream_tmpfile’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c:368:2: warning: ignoring return value of ‘tmpnam’, declared with attribute warn_unused_result [-Wunused-result] + 368 | tmpnam(obj->pathname); + | ^~~~~~~~~~~~~~~~~~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dauth.c +In file included from /usr/include/string.h:495, + from ../../../supportApp/netCDFSrc/libdispatch/dauth.c:10: +In function ‘strncpy’, + inlined from ‘NC_combinehostport’ at ../../../supportApp/netCDFSrc/libdispatch/dauth.c:82:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/doffsets.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dutil.c +In file included from /usr/include/string.h:495, + from ../../../supportApp/netCDFSrc/libdispatch/dutil.c:8: +In function ‘strncpy’, + inlined from ‘NC_mktmp’ at ../../../supportApp/netCDFSrc/libdispatch/dutil.c:210:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 4096 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c: In function ‘jp2_box_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:323:34: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 323 | fprintf(out, "type=%c%s%c (0x%08x); length=%d\n", '"', boxinfo->name, + | ~~~^ + | | + | unsigned int + | %08lx + 324 | '"', box->type, box->len); + | ~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:323:46: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 323 | fprintf(out, "type=%c%s%c (0x%08x); length=%d\n", '"', boxinfo->name, + | ~^ + | | + | int + | %ld + 324 | '"', box->type, box->len); + | ~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c: In function ‘jp2_cdef_dumpdata’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:435:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 435 | fprintf(out, "channo=%d; type=%d; assoc=%d\n", + | ~^ + | | + | int + | %ld + 436 | cdef->ents[i].channo, cdef->ents[i].type, cdef->ents[i].assoc); + | ~~~~~~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:435:34: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 435 | fprintf(out, "channo=%d; type=%d; assoc=%d\n", + | ~^ + | | + | int + | %ld + 436 | cdef->ents[i].channo, cdef->ents[i].type, cdef->ents[i].assoc); + | ~~~~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:435:44: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 435 | fprintf(out, "channo=%d; type=%d; assoc=%d\n", + | ~^ + | | + | int + | %ld + 436 | cdef->ents[i].channo, cdef->ents[i].type, cdef->ents[i].assoc); + | ~~~~~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c: In function ‘jp2_pclr_dumpdata’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:874:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 874 | fprintf(out, "LUT[%d][%d]=%d\n", i, j, pclr->lutdata[i * pclr->numchans + j]); + | ~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + | | | + | int int_fast32_t {aka long int} + | %ld +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c: In function ‘jp2_decode’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c:107:14: warning: variable ‘cdefd’ set but not used [-Wunused-but-set-variable] + 107 | jp2_cdef_t *cdefd; + | ^~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/liblib/nc_initialize.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../test_big_classic.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +/usr/bin/ar -rc libnetCDF.a v1hpg.o putget.o attr.o nc3dispatch.o nc3internal.o var.o dim.o ncx.o nc_hashmap.o lookup3.o ncio.o memio.o posixio.o dparallel.o dcopy.o dfile.o ddim.o datt.o dattinq.o dattput.o dattget.o derror.o dvar.o dvarget.o dvarput.o dvarinq.o dinternal.o ddispatch.o dutf8.o nclog.o dstring.o ncuri.o nclist.o ncbytes.o nchashmap.o nctime.o nc.o nclistmgr.o drc.o dauth.o doffsets.o dwinpath.o dutil.o utf8proc.o nc_initialize.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +/usr/bin/ranlib libnetCDF.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +g++ -o libnetCDF.so -shared -fPIC -Wl,-hlibnetCDF.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 v1hpg.o putget.o attr.o nc3dispatch.o nc3internal.o var.o dim.o ncx.o nc_hashmap.o lookup3.o ncio.o memio.o posixio.o dparallel.o dcopy.o dfile.o ddim.o datt.o dattinq.o dattput.o dattget.o derror.o dvar.o dvarget.o dvarput.o dvarinq.o dinternal.o ddispatch.o dutf8.o nclog.o dstring.o ncuri.o nclist.o ncbytes.o nchashmap.o nctime.o nc.o nclistmgr.o drc.o dauth.o doffsets.o dwinpath.o dutil.o utf8proc.o nc_initialize.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +g++ -o test_big_classic -Wl,-Bstatic -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 test_big_classic.o -lnetCDF -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' +make -C ./nexusSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_ms_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:407:28: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 407 | fprintf(out, "type = 0x%04x (%s);", ms->id, mstabent->name); + | ~~~^ ~~~~~~ + | | | + | | uint_fast16_t {aka long unsigned int} + | unsigned int + | %04lx +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:409:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 409 | fprintf(out, " len = %d;", ms->len + 2); + | ~^ ~~~~~~~~~~~ + | | | + | int uint_fast16_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_sot_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:462:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 462 | fprintf(out, "tileno = %d; len = %d; partno = %d; numparts = %d\n", + | ~^ + | | + | int + | %ld + 463 | sot->tileno, sot->len, sot->partno, sot->numparts); + | ~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:462:36: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 462 | fprintf(out, "tileno = %d; len = %d; partno = %d; numparts = %d\n", + | ~^ + | | + | int + | %ld + 463 | sot->tileno, sot->len, sot->partno, sot->numparts); + | ~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_siz_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:562:28: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 562 | fprintf(out, "caps = 0x%02x;\n", siz->caps); + | ~~~^ ~~~~~~~~~ + | | | + | | uint_fast16_t {aka long unsigned int} + | unsigned int + | %02lx +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", + | ~^ + | | + | int + | %ld + 564 | siz->width, siz->height, siz->xoff, siz->yoff); + | ~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", + | ~^ + | | + | int + | %ld + 564 | siz->width, siz->height, siz->xoff, siz->yoff); + | ~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:49: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", + | ~^ + | | + | int + | %ld + 564 | siz->width, siz->height, siz->xoff, siz->yoff); + | ~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:60: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", + | ~^ + | | + | int + | %ld + 564 | siz->width, siz->height, siz->xoff, siz->yoff); + | ~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " + | ~^ + | | + | int + | %ld + 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, + | ~~~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:46: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " + | ~^ + | | + | int + | %ld + 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, + | ~~~~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:61: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " + | ~^ + | | + | int + | %ld + 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, + | ~~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:15: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, + 567 | siz->tileyoff); + | ~~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:566:17: note: format string is defined here + 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_cod_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:634:37: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 634 | fprintf(out, "prg = %d; numlyrs = %d;\n", + | ~^ + | | + | int + | %ld + 635 | cod->prg, cod->numlyrs); + | ~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_coc_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:712:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 712 | fprintf(out, "compno = %d; csty = 0x%02x; numdlvls = %d;\n", + | ~^ + | | + | int + | %ld + 713 | coc->compno, coc->compparms.csty, coc->compparms.numdlvls); + | ~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_rgn_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:843:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 843 | fprintf(out, "compno = %d; roisty = %d; roishift = %d\n", + | ~^ + | | + | int + | %ld + 844 | rgn->compno, rgn->roisty, rgn->roishift); + | ~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_qcc_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:936:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 936 | fprintf(out, "compno = %d; qntsty = %d; numguard = %d; " + | ~^ + | | + | int + | %ld + 937 | "numstepsizes = %d\n", qcc->compno, qcc->compparms.qntsty, qcc->compparms.numguard, + | ~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_sop_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1060:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1060 | fprintf(out, "seqno = %d;\n", sop->seqno); + | ~^ ~~~~~~~~~~ + | | | + | int uint_fast16_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_ppm_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1126:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1126 | fprintf(out, "ind=%d; len = %d;\n", ppm->ind, ppm->len); + | ~^ ~~~~~~~~ + | | | + | int uint_fast16_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_ppt_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1198:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 1198 | fprintf(out, "ind=%d; len = %d;\n", ppt->ind, ppt->len); + | ~^ ~~~~~~~~ + | | | + | int uint_fast32_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_poc_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1304:27: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1304 | fprintf(out, "cs[%d] = %d; ce[%d] = %d; ", + | ~^ + | | + | int + | %ld + 1305 | pchgno, pchg->compnostart, pchgno, pchg->compnoend); + | ~~~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1304:40: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1304 | fprintf(out, "cs[%d] = %d; ce[%d] = %d; ", + | ~^ + | | + | int + | %ld + 1305 | pchgno, pchg->compnostart, pchgno, pchg->compnoend); + | ~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1308:27: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1308 | fprintf(out, "le[%d] = %d\n", pchgno, pchg->lyrnoend); + | ~^ ~~~~~~~~~~~~~~ + | | | + | int uint_fast16_t {aka long unsigned int} + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_crg_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1371:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1371 | fprintf(out, "hoff[%d] = %d; voff[%d] = %d\n", compno, + | ~^ + | | + | int + | %ld + 1372 | comp->hoff, compno, comp->voff); + | ~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1371:44: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1371 | fprintf(out, "hoff[%d] = %d; voff[%d] = %d\n", compno, + | ~^ + | | + | int + | %ld + 1372 | comp->hoff, compno, comp->voff); + | ~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_com_dumpparms’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1434:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 1434 | fprintf(out, "regid = %d;\n", com->regid); + | ~^ ~~~~~~~~~~ + | | | + | int uint_fast16_t {aka long unsigned int} + | %ld +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF stptok.d ../stptok.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxxml.d ../nxxml.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxstack.d ../nxstack.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxio.d ../nxio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxdataset.d ../nxdataset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napiu.d ../napiu.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi5.d ../napi5.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi.d ../napi.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../napi.c +In file included from /usr/include/string.h:495, + from ../napi.c:29: +In function ‘strncpy’, + inlined from ‘nxigetdata_’ at ../napi.c:1252:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi.c: In function ‘nxigetdata_’: +../napi.c:1252:3: note: length computed here + 1252 | strncpy((char *)data, pPtr2, strlen(pPtr2)); /* not NULL terminated by default */ + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_process_crg’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:414:13: warning: variable ‘crg’ set but not used [-Wunused-but-set-variable] + 414 | jpc_crg_t *crg; + | ^~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_tileinit’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:659:16: warning: variable ‘brcbgyend’ set but not used [-Wunused-but-set-variable] + 659 | uint_fast32_t brcbgyend; + | ^~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - + | ~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - + | ~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - + | ~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - + | ~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - + | ~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} + 2007 | rlvl->xstart, rlvl->yend - rlvl->ystart); + | ~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - + 2007 | rlvl->xstart, rlvl->yend - rlvl->ystart); + | ~~~~~~~~~~~~~~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - + | ~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - + | ~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - + | ~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - + | ~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - + | ~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} + 2021 | prc->xstart, prc->yend - prc->ystart); + | ~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld + 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - + 2021 | prc->xstart, prc->yend - prc->ystart); + | ~~~~~~~~~~~~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] + 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", + | ~^ + | | + | int + | %ld +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../napi5.c +../napi5.c: In function ‘NX5makegroup’: +../napi5.c:506:8: warning: variable ‘iRet’ set but not used [-Wunused-but-set-variable] + 506 | hid_t iRet; + | ^~~~ +../napi5.c: In function ‘NX5getinfo64’: +../napi5.c:1919:31: warning: unused variable ‘vlen_bytes’ [-Wunused-variable] + 1919 | hsize_t myDim[H5S_MAX_RANK], vlen_bytes = 0, total_dims_size = 1; + | ^~~~~~~~~~ +../napi5.c: In function ‘NX5compmakedata64’: +../napi5.c:879:5: warning: ‘dID’ may be used uninitialized in this function [-Wmaybe-uninitialized] + 879 | if (dID < 0) { + | ^ +In file included from /usr/include/string.h:495, + from ../napi5.c:34: +In function ‘strncpy’, + inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, + inlined from ‘NX5getgroupinfo’ at ../napi5.c:1555:4: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5makegroup’: +../napi5.c:516:29: warning: ‘%s’ directive output may be truncated writing up to 1023 bytes into a region of size 1022 [-Wformat-truncation=] + 516 | snprintf(pBuffer, 1023, "/%s/%s", pFile->name_ref, name); + | ^~ +In file included from /usr/include/stdio.h:867, + from ../../../include/os/Linux/H5Epublic.h:20, + from ../../../include/os/Linux/hdf5.h:26, + from ../napi5.h:9, + from ../napi5.c:39: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output 3 or more bytes (assuming 1026) into a destination of size 1023 + 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 68 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5opengroup’: +../napi5.c:571:26: warning: ‘__builtin___sprintf_chk’ may write a terminating nul past the end of the destination [-Wformat-overflow=] + 571 | sprintf(pBuffer, "%s/%s", pFile->name_tmp, name); + | ^ +In file included from /usr/include/stdio.h:867, + from ../../../include/os/Linux/H5Epublic.h:20, + from ../../../include/os/Linux/hdf5.h:26, + from ../napi5.h:9, + from ../napi5.c:39: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output 2 or more bytes (assuming 1025) into a destination of size 1024 + 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 37 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c:575:34: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 1011 [-Wformat-overflow=] + 575 | sprintf(pBuffer, "ERROR: group %s does not exist", + | ^~ +In file included from /usr/include/stdio.h:867, + from ../../../include/os/Linux/H5Epublic.h:20, + from ../../../include/os/Linux/hdf5.h:26, + from ../napi5.h:9, + from ../napi5.c:39: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output between 29 and 1052 bytes into a destination of size 1024 + 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 37 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from ../napi5.c:34: +In function ‘strncpy’, + inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, + inlined from ‘NX5opengroup’ at ../napi5.c:611:10: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘NX5getattra’ at ../napi5.c:2540:4: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5getattra’: +../napi5.c:2540:4: note: length computed here + 2540 | strncpy(data, strdata, strlen(strdata)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from ../napi5.c:34: +In function ‘strncpy’, + inlined from ‘NX5getdata’ at ../napi5.c:1859:5: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5getdata’: +../napi5.c:1859:5: note: length computed here + 1859 | strncpy(data, strdata, strlen(strdata)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../napi5.c: In function ‘NX5getnextentry’: +../napi5.c:1766:20: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 243 [-Wformat-overflow=] + 1766 | "ERROR: group %s does not exist", + | ^~ + 1767 | ph_name); + | ~~~~~~~ +In file included from /usr/include/stdio.h:867, + from ../../../include/os/Linux/H5Epublic.h:20, + from ../../../include/os/Linux/hdf5.h:26, + from ../napi5.h:9, + from ../napi5.c:39: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output between 29 and 1052 bytes into a destination of size 256 + 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 37 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In file included from /usr/include/string.h:495, + from ../napi5.c:34: +In function ‘strncpy’, + inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, + inlined from ‘NX5getnextentry’ at ../napi5.c:1781:9: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, + inlined from ‘NX5getgroupinfo_recurse’ at ../napi5.c:1496:4: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../napiu.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxdataset.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxio.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxstack.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxxml.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../stptok.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_calcssmant’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:870:6: warning: variable ‘e’ set but not used [-Wunused-but-set-variable] + 870 | int e; + | ^ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainhdr’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:901:12: warning: variable ‘mctsynweight’ set but not used [-Wunused-but-set-variable] + 901 | jpc_fix_t mctsynweight; + | ^~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainbody’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1115:7: warning: variable ‘numbytes’ set but not used [-Wunused-but-set-variable] + 1115 | long numbytes; + | ^~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1101:6: warning: variable ‘tiley’ set but not used [-Wunused-but-set-variable] + 1101 | int tiley; + | ^~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1100:6: warning: variable ‘tilex’ set but not used [-Wunused-but-set-variable] + 1100 | int tilex; + | ^~~~~ +At top level: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:883:12: warning: ‘jpc_calcssexp’ defined but not used [-Wunused-function] + 883 | static int jpc_calcssexp(jpc_fix_t stepsize) + | ^~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:867:12: warning: ‘jpc_calcssmant’ defined but not used [-Wunused-function] + 867 | static int jpc_calcssmant(jpc_fix_t stepsize) + | ^~~~~~~~~~~~~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +/usr/bin/ar -rc libNeXus.a napi.o napi5.o napiu.o nxdataset.o nxio.o nxstack.o nxxml.o stptok.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +/usr/bin/ranlib libNeXus.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +g++ -o libNeXus.so -shared -fPIC -Wl,-hlibNeXus.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 napi.o napi5.o napiu.o nxdataset.o nxio.o nxstack.o nxxml.o stptok.o -lhdf5 -lszip -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' +make -C ./jbig install +make -C ./libjbig install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' +mkdir -p O.Common +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig_tab.d ../jbig_tab.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig.d ../jbig.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c: In function ‘jpc_mqdec_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c:304:39: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 304 | fprintf(out, "IND %d, MPS %d, QEVAL %x\n", (int) (*mqdec->curctx - + | ~^ + | | + | unsigned int + | %lx + 305 | jpc_mqstates), (*mqdec->curctx)->mps, (*mqdec->curctx)->qeval); + | ~~~~~~~~~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c: In function ‘jpc_mqenc_dump’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:386:26: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 386 | fprintf(out, "AREG = %08x, CREG = %08x, CTREG = %d\n", + | ~~~^ + | | + | unsigned int + | %08lx + 387 | mqenc->areg, mqenc->creg, mqenc->ctreg); + | ~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:386:39: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 386 | fprintf(out, "AREG = %08x, CREG = %08x, CTREG = %d\n", + | ~~~^ + | | + | unsigned int + | %08lx + 387 | mqenc->areg, mqenc->creg, mqenc->ctreg); + | ~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:386:51: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] + 386 | fprintf(out, "AREG = %08x, CREG = %08x, CTREG = %d\n", + | ~^ + | | + | int + | %ld + 387 | mqenc->areg, mqenc->creg, mqenc->ctreg); + | ~~~~~~~~~~~~ + | | + | uint_fast32_t {aka long unsigned int} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:388:49: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] + 388 | fprintf(out, "IND = %02d, MPS = %d, QEVAL = %04x\n", + | ~~~^ + | | + | unsigned int + | %04lx + 389 | (int) (*mqenc->curctx - jpc_mqstates), (*mqenc->curctx)->mps, + 390 | (*mqenc->curctx)->qeval); + | ~~~~~~~~~~~~~~~~~~~~~~~ + | | + | uint_fast16_t {aka long unsigned int} +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../jbig.c +../jbig.c: In function ‘jbg_dec_merge_planes’: +../jbig.c:3041:7: warning: variable ‘bpp’ set but not used [-Wunused-but-set-variable] + 3041 | int bpp; + | ^~~ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../jbig_tab.c +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +/usr/bin/ar -rc libjbig.a jbig.o jbig_tab.o +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +/usr/bin/ranlib libjbig.a +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +g++ -o libjbig.so -shared -fPIC -Wl,-hlibjbig.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jbig.o jbig_tab.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:288:2: warning: initialization of ‘int (*)(int *, int, int, int, int, int)’ from incompatible pointer type ‘int (*)(jpc_fix_t *, int, int, int, int, int)’ {aka ‘int (*)(long int *, int, int, int, int, int)’} [-Wincompatible-pointer-types] + 288 | jpc_ft_analyze, + | ^~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:288:2: note: (near initialization for ‘jpc_ft_qmfb2d.analyze’) +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:295:2: warning: initialization of ‘int (*)(int *, int, int, int, int, int)’ from incompatible pointer type ‘int (*)(jpc_fix_t *, int, int, int, int, int)’ {aka ‘int (*)(long int *, int, int, int, int, int)’} [-Wincompatible-pointer-types] + 295 | jpc_ns_analyze, + | ^~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:295:2: note: (near initialization for ‘jpc_ns_qmfb2d.analyze’) +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:296:2: warning: initialization of ‘int (*)(int *, int, int, int, int, int)’ from incompatible pointer type ‘int (*)(jpc_fix_t *, int, int, int, int, int)’ {aka ‘int (*)(long int *, int, int, int, int, int)’} [-Wincompatible-pointer-types] + 296 | jpc_ns_synthesize, + | ^~~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:296:2: note: (near initialization for ‘jpc_ns_qmfb2d.synthesize’) +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c: In function ‘jpc_ft_synthesize’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:1607:11: warning: assignment to ‘jpc_fix_t *’ {aka ‘long int *’} from incompatible pointer type ‘int *’ [-Wincompatible-pointer-types] + 1607 | startptr = &a[0]; + | ^ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:1615:11: warning: assignment to ‘jpc_fix_t *’ {aka ‘long int *’} from incompatible pointer type ‘int *’ [-Wincompatible-pointer-types] + 1615 | startptr = &a[0]; + | ^ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c: In function ‘jpc_enc_enccblk’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:205:18: warning: variable ‘rlvl’ set but not used [-Wunused-but-set-variable] + 205 | jpc_enc_rlvl_t *rlvl; + | ^~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:200:6: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] + 200 | int ret; + | ^~~ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:77: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c: In function ‘jpc_tsfb_analyze’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:177:3: warning: passing argument 2 of ‘jpc_tsfb_analyze2’ from incompatible pointer type [-Wincompatible-pointer-types] + 177 | (&(matrix)->rows_[i][j]) + | ^ + | | + | jas_seqent_t * {aka long int *} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:259:3: note: in expansion of macro ‘jas_matrix_getref’ + 259 | (jas_matrix_getref(s, (y) - (s)->ystart_, (x) - (s)->xstart_)) + | ^~~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:130:55: note: in expansion of macro ‘jas_seq2d_getref’ + 130 | return (tsfb->numlvls > 0) ? jpc_tsfb_analyze2(tsfb, jas_seq2d_getref(a, + | ^~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:85:46: note: expected ‘int *’ but argument is of type ‘jas_seqent_t *’ {aka ‘long int *’} + 85 | int jpc_tsfb_analyze2(jpc_tsfb_t *tsfb, int *a, int xstart, int ystart, + | ~~~~~^ +In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:77: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c: In function ‘jpc_tsfb_synthesize’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:177:3: warning: passing argument 2 of ‘jpc_tsfb_synthesize2’ from incompatible pointer type [-Wincompatible-pointer-types] + 177 | (&(matrix)->rows_[i][j]) + | ^ + | | + | jas_seqent_t * {aka long int *} +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:259:3: note: in expansion of macro ‘jas_matrix_getref’ + 259 | (jas_matrix_getref(s, (y) - (s)->ystart_, (x) - (s)->xstart_)) + | ^~~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:158:4: note: in expansion of macro ‘jas_seq2d_getref’ + 158 | jas_seq2d_getref(a, jas_seq2d_xstart(a), jas_seq2d_ystart(a)), + | ^~~~~~~~~~~~~~~~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:88:49: note: expected ‘int *’ but argument is of type ‘jas_seqent_t *’ {aka ‘long int *’} + 88 | int jpc_tsfb_synthesize2(jpc_tsfb_t *tsfb, int *a, int xstart, int ystart, + | ~~~~~^ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make -C ./magick install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' +mkdir -p O.Common +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c: In function ‘jpc_atoaf’: +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:11: warning: comparison between pointer and zero character constant [-Wpointer-compare] + 105 | if (cp != '\0') { + | ^~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:8: note: did you mean to dereference the pointer? + 105 | if (cp != '\0') { + | ^ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:12: warning: comparison between pointer and zero character constant [-Wpointer-compare] + 123 | if (cp != '\0') { + | ^~ +../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:9: note: did you mean to dereference the pointer? + 123 | if (cp != '\0') { + | ^ +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF analyze_Linux.d ../analyze_Linux.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +/usr/bin/ar -rc libjp2.a jas_cm.o jas_debug.o jas_getopt.o jas_icc.o jas_iccdata.o jas_image.o jas_init.o jas_malloc.o jas_seq.o jas_stream.o jas_string.o jas_tmr.o jas_tvp.o jas_version.o jp2_cod.o jp2_dec.o jp2_enc.o jpc_bs.o jpc_cs.o jpc_dec.o jpc_enc.o jpc_math.o jpc_mct.o jpc_mqcod.o jpc_mqdec.o jpc_mqenc.o jpc_qmfb.o jpc_t1cod.o jpc_t1dec.o jpc_t1enc.o jpc_t2cod.o jpc_t2dec.o jpc_t2enc.o jpc_tagtree.o jpc_tsfb.o jpc_util.o +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +/usr/bin/ranlib libjp2.a +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF xwindow.d ../xwindow.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +g++ -o libjp2.so -shared -fPIC -Wl,-hlibjp2.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jas_cm.o jas_debug.o jas_getopt.o jas_icc.o jas_iccdata.o jas_image.o jas_init.o jas_malloc.o jas_seq.o jas_stream.o jas_string.o jas_tmr.o jas_tvp.o jas_version.o jp2_cod.o jp2_dec.o jp2_enc.o jpc_bs.o jpc_cs.o jpc_dec.o jpc_enc.o jpc_math.o jpc_mct.o jpc_mqcod.o jpc_mqdec.o jpc_mqenc.o jpc_qmfb.o jpc_t1cod.o jpc_t1dec.o jpc_t1enc.o jpc_t2cod.o jpc_t2dec.o jpc_t2enc.o jpc_tagtree.o jpc_tsfb.o jpc_util.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +/usr/bin/ld: jas_stream.o: in function `jas_stream_tmpfile': +jas_stream.c:(.text+0x7e9): warning: the use of `tmpnam' is dangerous, better use `mkstemp' +make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF widget.d ../widget.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF version.d ../version.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF utility.d ../utility.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF unix_port.d ../unix_port.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type.d ../type.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tsd.d ../tsd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF transform.d ../transform.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF texture.d ../texture.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF timer.d ../timer.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF statistics.d ../statistics.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tempfile.d ../tempfile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF signature.d ../signature.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF shear.d ../shear.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF semaphore.d ../semaphore.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF segment.d ../segment.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resource.d ../resource.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resize.d ../resize.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF registry.d ../registry.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF render.d ../render.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF random.d ../random.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF quantize.d ../quantize.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF profile.d ../profile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF PreRvIcccm.d ../PreRvIcccm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF plasma.d ../plasma.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_iterator.d ../pixel_iterator.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_cache.d ../pixel_cache.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF paint.d ../paint.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF operator.d ../operator.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF omp_data_view.d ../omp_data_view.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_feature.d ../nt_feature.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_base.d ../nt_base.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF montage.d ../montage.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF monitor.d ../monitor.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF module.d ../module.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF memory.d ../memory.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF map.d ../map.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick_endian.d ../magick_endian.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magic.d ../magic.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick.d ../magick.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF log.d ../log.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF locale.d ../locale.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF list.d ../list.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF import.d ../import.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF hclut.d ../hclut.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF image.d ../image.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gradient.d ../gradient.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gem.d ../gem.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fx.d ../fx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF floats.d ../floats.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF export.d ../export.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF error.d ../error.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enum_strings.d ../enum_strings.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enhance.d ../enhance.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF effect.d ../effect.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF draw.d ../draw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF display.d ../display.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF describe.d ../describe.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF deprecate.d ../deprecate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF delegate.d ../delegate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF decorate.d ../decorate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF constitute.d ../constitute.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF confirm_access.d ../confirm_access.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compress.d ../compress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF composite.d ../composite.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compare.d ../compare.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color_lookup.d ../color_lookup.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF command.d ../command.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colorspace.d ../colorspace.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colormap.d ../colormap.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color.d ../color.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF channel.d ../channel.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cdl.d ../cdl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF blob.d ../blob.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bit_stream.d ../bit_stream.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF average.d ../average.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF attribute.d ../attribute.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF annotate.d ../annotate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF animate.d ../animate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +mkdir ../../../../include/magick +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../annotate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../animate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../average.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../bit_stream.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../attribute.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../cdl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../blob.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../channel.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../color.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../colormap.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../color_lookup.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../colorspace.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../compare.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../composite.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../compress.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../confirm_access.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../constitute.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../decorate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../delegate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../deprecate.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../describe.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../command.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../draw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../display.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../enhance.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../effect.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../enum_strings.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../error.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../floats.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../fx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../gem.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../gradient.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../hclut.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../image.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../import.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../list.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../locale.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../log.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../magic.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../magick.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../magick_endian.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../map.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../memory.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../module.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../monitor.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../montage.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../nt_base.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../nt_feature.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../omp_data_view.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../operator.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../paint.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../pixel_cache.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../pixel_iterator.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../plasma.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../PreRvIcccm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../profile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../export.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../random.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../registry.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../quantize.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../resize.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../resource.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../segment.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../semaphore.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../shear.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../signature.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../statistics.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../render.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../tempfile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../texture.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../timer.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../tsd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../transform.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../type.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../unix_port.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../version.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../utility.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../widget.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../xwindow.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../analyze_Linux.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +/usr/bin/ar -rc libMagick.a animate.o annotate.o attribute.o average.o bit_stream.o blob.o cdl.o channel.o color.o colormap.o colorspace.o color_lookup.o command.o compare.o composite.o compress.o confirm_access.o constitute.o decorate.o delegate.o deprecate.o describe.o display.o draw.o effect.o enhance.o enum_strings.o error.o export.o floats.o fx.o gem.o gradient.o hclut.o image.o import.o list.o locale.o log.o magic.o magick.o magick_endian.o map.o memory.o module.o monitor.o montage.o nt_base.o nt_feature.o omp_data_view.o operator.o paint.o pixel_cache.o pixel_iterator.o plasma.o PreRvIcccm.o profile.o quantize.o random.o registry.o render.o resize.o resource.o segment.o semaphore.o shear.o signature.o statistics.o tempfile.o texture.o timer.o transform.o tsd.o type.o unix_port.o utility.o version.o widget.o xwindow.o analyze_Linux.o +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +/usr/bin/ranlib libMagick.a +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +g++ -o libMagick.so -shared -fPIC -Wl,-hlibMagick.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 animate.o annotate.o attribute.o average.o bit_stream.o blob.o cdl.o channel.o color.o colormap.o colorspace.o color_lookup.o command.o compare.o composite.o compress.o confirm_access.o constitute.o decorate.o delegate.o deprecate.o describe.o display.o draw.o effect.o enhance.o enum_strings.o error.o export.o floats.o fx.o gem.o gradient.o hclut.o image.o import.o list.o locale.o log.o magic.o magick.o magick_endian.o map.o memory.o module.o monitor.o montage.o nt_base.o nt_feature.o omp_data_view.o operator.o paint.o pixel_cache.o pixel_iterator.o plasma.o PreRvIcccm.o profile.o quantize.o random.o registry.o render.o resize.o resource.o segment.o semaphore.o shear.o signature.o statistics.o tempfile.o texture.o timer.o transform.o tsd.o type.o unix_port.o utility.o version.o widget.o xwindow.o analyze_Linux.o -lbzlib -llcms -lttf -lzlib -Wl,-Bdynamic -lXext -lpthread -lm -lrt -ldl -lgcc +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' +make -C ./filters install +make -C ./coders install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' +mkdir -p O.Common +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' +mkdir -p O.Common +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF static.d ../static.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -MM -MF analyze.d ../analyze.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF yuv.d ../yuv.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xwd.d ../xwd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xtrn.d ../xtrn.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xpm.d ../xpm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xcf.d ../xcf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xc.d ../xc.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -c ../analyze.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xbm.d ../xbm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +/usr/bin/ar -rc libfilters.a analyze.o +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +/usr/bin/ranlib libfilters.a +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF x.d ../x.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +g++ -o libfilters.so -shared -fPIC -Wl,-hlibfilters.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 analyze.o -lMagick -lttf -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wpg.d ../wpg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wmf.d ../wmf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF webp.d ../webp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wbmp.d ../wbmp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF viff.d ../viff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vid.d ../vid.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vicar.d ../vicar.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uyvy.d ../uyvy.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF url.d ../url.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uil.d ../uil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF txt.d ../txt.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ttf.d ../ttf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF topol.d ../topol.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tim.d ../tim.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tile.d ../tile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tiff.d ../tiff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tga.d ../tga.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF svg.d ../svg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sun.d ../sun.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF stegano.d ../stegano.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sgi.d ../sgi.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sfw.d ../sfw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sct.d ../sct.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rle.d ../rle.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rla.d ../rla.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rgb.d ../rgb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pwp.d ../pwp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF psd.d ../psd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps3.d ../ps3.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps2.d ../ps2.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps.d ../ps.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF preview.d ../preview.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pnm.d ../pnm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF png.d ../png.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF plasma.d ../plasma.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pix.d ../pix.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pict.d ../pict.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdf.d ../pdf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdb.d ../pdb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcx.d ../pcx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcl.d ../pcl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcd.d ../pcd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF palm.d ../palm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF otb.d ../otb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF null.d ../null.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mvg.d ../mvg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mtv.d ../mtv.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF msl.d ../msl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpr.d ../mpr.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpeg.d ../mpeg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpc.d ../mpc.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mono.d ../mono.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF miff.d ../miff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF meta.d ../meta.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF matte.d ../matte.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mat.d ../mat.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF map.d ../map.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mac.d ../mac.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF logo.d ../logo.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF locale.d ../locale.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF label.d ../label.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jpeg.d ../jpeg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jp2.d ../jp2.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jnx.d ../jnx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jbig.d ../jbig.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF info.d ../info.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF identity.d ../identity.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF icon.d ../icon.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF html.d ../html.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hrz.d ../hrz.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF histogram.d ../histogram.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hdf.d ../hdf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gray.d ../gray.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gradient.d ../gradient.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gif.d ../gif.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fpx.d ../fpx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fits.d ../fits.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fax.d ../fax.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ept.d ../ept.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF emf.d ../emf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dpx.d ../dpx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dps.d ../dps.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dib.d ../dib.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcraw.d ../dcraw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcm.d ../dcm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cut.d ../cut.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cmyk.d ../cmyk.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF clipboard.d ../clipboard.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cineon.d ../cineon.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF caption.d ../caption.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cals.d ../cals.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF bmp.d ../bmp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avs.d ../avs.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avi.d ../avi.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF art.d ../art.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../art.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../avs.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../avi.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cals.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../caption.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cineon.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../clipboard.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cmyk.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../bmp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cut.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dcraw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dcm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dps.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dib.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../emf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ept.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../fax.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../fits.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../fpx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../gif.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../gradient.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dpx.c +In file included from /usr/include/string.h:495, + from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:126, + from ../dpx.c:123: +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3865:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3865:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3866:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3866:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3891:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3891:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3895:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3895:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3896:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3896:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3897:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3897:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3910:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3910:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3911:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3911:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3912:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3912:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3913:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3913:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3914:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3914:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3915:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3915:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3921:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3921:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3922:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +In function ‘strncpy’, + inlined from ‘WriteDPXImage’ at ../dpx.c:3922:3: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../gray.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../hdf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../histogram.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../hrz.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../html.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../icon.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../identity.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../info.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jbig.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jnx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jp2.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../label.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../locale.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jpeg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mac.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../logo.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../map.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../matte.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mat.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../meta.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mono.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mpc.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../miff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mpr.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mpeg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mtv.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mvg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../null.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../otb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../palm.c +../palm.c:395:3: warning: ‘PalmPalette’ defined but not used [-Wunused-const-variable=] + 395 | PalmPalette[256][3] = + | ^~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../msl.c +In file included from /usr/include/string.h:495, + from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:126, + from ../msl.c:39: +In function ‘strncpy’, + inlined from ‘MSLStartElement’ at ../msl.c:3262:36: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin___strncpy_chk’ specified bound depends on the length of the source argument [-Wstringop-overflow=] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../msl.c: In function ‘MSLStartElement’: +../msl.c:3258:41: note: length computed here + 3258 | len = (int) strlen( value ); + | ^~~~~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pcl.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pcd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pdb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pcx.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pdf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pix.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../plasma.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pict.c +In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:67, + from ../pict.c:38: +../pict.c: In function ‘WritePICTImage’: +../../../../include/magick/symbols.h:552:22: warning: argument 1 value ‘18446744073709551488’ exceeds maximum object size 9223372036854775807 [-Walloc-size-larger-than=] + 552 | #define MagickMalloc GmMagickMalloc +../../../../include/magick/memory.h:47:12: note: in expansion of macro ‘MagickMalloc’ + 47 | ((type) MagickMalloc((size_t) (size)))) + | ^~~~~~~~~~~~ +../pict.c:1654:12: note: in expansion of macro ‘MagickAllocateMemory’ + 1654 | scanline=MagickAllocateMemory(unsigned char *,row_bytes); + | ^~~~~~~~~~~~~~~~~~~~ +../../../../include/magick/symbols.h:552:22: note: in a call to allocation function ‘GmMagickMalloc’ declared here + 552 | #define MagickMalloc GmMagickMalloc + | ^~~~~~~~~~~~~~ +../../../../include/magick/memory.h:24:4: note: in expansion of macro ‘MagickMalloc’ + 24 | *MagickMalloc(const size_t size) MAGICK_FUNC_MALLOC MAGICK_FUNC_ALLOC_SIZE_1ARG(1), + | ^~~~~~~~~~~~ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pnm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../preview.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ps.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ps2.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ps3.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../psd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pwp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../png.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../rla.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../rgb.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sct.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sfw.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../rle.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../stegano.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sgi.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sun.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tga.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../svg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tile.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tim.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../topol.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ttf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tiff.c +In file included from ../../../../include/os/Linux/jpeglib.h:27, + from ../tiff.c:78: +../../../../include/os/Linux/jmorecfg.h:248: warning: "EXTERN" redefined + 248 | #define EXTERN(type) extern type + | +In file included from ../tiff.c:64: +../../../../include/os/Linux/tiffio.h:91: note: this is the location of the previous definition + 91 | # define EXTERN extern + | +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../txt.c +../txt.c: In function ‘ReadTXTImage’: +../txt.c:940:25: warning: comparison between pointer and zero character constant [-Wpointer-compare] + 940 | if (draw_info->text != '\0') + | ^~ +../txt.c:940:9: note: did you mean to dereference the pointer? + 940 | if (draw_info->text != '\0') + | ^ +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../url.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../uil.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../uyvy.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../vicar.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../vid.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../wbmp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../viff.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../wmf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../webp.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../x.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../wpg.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xbm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xc.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xcf.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xtrn.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xpm.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xwd.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../yuv.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../static.c +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +/usr/bin/ar -rc libcoders.a art.o avi.o avs.o bmp.o cals.o caption.o cineon.o clipboard.o cmyk.o cut.o dcm.o dcraw.o dib.o dps.o dpx.o emf.o ept.o fax.o fits.o fpx.o gif.o gradient.o gray.o hdf.o histogram.o hrz.o html.o icon.o identity.o info.o jbig.o jnx.o jp2.o jpeg.o label.o locale.o logo.o mac.o map.o mat.o matte.o meta.o miff.o mono.o mpc.o mpeg.o mpr.o msl.o mtv.o mvg.o null.o otb.o palm.o pcd.o pcl.o pcx.o pdb.o pdf.o pict.o pix.o plasma.o png.o pnm.o preview.o ps.o ps2.o ps3.o psd.o pwp.o rgb.o rla.o rle.o sct.o sfw.o sgi.o stegano.o sun.o svg.o tga.o tiff.o tile.o tim.o topol.o ttf.o txt.o uil.o url.o uyvy.o vicar.o vid.o viff.o wbmp.o webp.o wmf.o wpg.o x.o xbm.o xc.o xcf.o xpm.o xtrn.o xwd.o yuv.o static.o +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +/usr/bin/ranlib libcoders.a +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +g++ -o libcoders.so -shared -fPIC -Wl,-hlibcoders.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 art.o avi.o avs.o bmp.o cals.o caption.o cineon.o clipboard.o cmyk.o cut.o dcm.o dcraw.o dib.o dps.o dpx.o emf.o ept.o fax.o fits.o fpx.o gif.o gradient.o gray.o hdf.o histogram.o hrz.o html.o icon.o identity.o info.o jbig.o jnx.o jp2.o jpeg.o label.o locale.o logo.o mac.o map.o mat.o matte.o meta.o miff.o mono.o mpc.o mpeg.o mpr.o msl.o mtv.o mvg.o null.o otb.o palm.o pcd.o pcl.o pcx.o pdb.o pdf.o pict.o pix.o plasma.o png.o pnm.o preview.o ps.o ps2.o ps3.o psd.o pwp.o rgb.o rla.o rle.o sct.o sfw.o sgi.o stegano.o sun.o svg.o tga.o tiff.o tile.o tim.o topol.o ttf.o txt.o uil.o url.o uyvy.o vicar.o vid.o viff.o wbmp.o webp.o wmf.o wpg.o x.o xbm.o xc.o xcf.o xpm.o xtrn.o xwd.o yuv.o static.o -lbzlib -ljbig -ljp2 -lMagick -lpng -lttf -lwebp -lwmf -ltiff -ljpeg -lxml2 -lnanohttp_stream -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' +make -C ./Magick++ install +make -C ./lib install +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' +mkdir -p O.Common +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' +make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. +make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF TypeMetric.d ../TypeMetric.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Thread.d ../Thread.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF STL.d ../STL.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Pixels.d ../Pixels.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Montage.d ../Montage.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Options.d ../Options.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF ImageRef.d ../ImageRef.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Image.d ../Image.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Geometry.d ../Geometry.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Functions.d ../Functions.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Exception.d ../Exception.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Drawable.d ../Drawable.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Color.d ../Color.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF CoderInfo.d ../CoderInfo.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF BlobRef.d ../BlobRef.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Blob.d ../Blob.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +mkdir ../../../../../include/Magick++ +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../BlobRef.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Blob.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../CoderInfo.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Color.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Exception.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Functions.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Geometry.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Drawable.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../ImageRef.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Montage.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Options.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Image.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Pixels.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Thread.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../TypeMetric.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../STL.cpp +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +/usr/bin/ar -rc libMagick++.a Blob.o BlobRef.o CoderInfo.o Color.o Drawable.o Exception.o Functions.o Geometry.o Image.o ImageRef.o Montage.o Options.o Pixels.o STL.o Thread.o TypeMetric.o +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +/usr/bin/ranlib libMagick++.a +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +g++ -o libMagick++.so -shared -fPIC -Wl,-hlibMagick++.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 Blob.o BlobRef.o CoderInfo.o Color.o Drawable.o Exception.o Functions.o Geometry.o Image.o ImageRef.o Montage.o Options.o Pixels.o STL.o Thread.o TypeMetric.o -lMagick -lcoders -Wl,-Bdynamic -lXext -lpthread -lm -lrt -ldl -lgcc +make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' +make -C /builds/DATAnet/adurl/.cache/adcore-R3-10 install +make -C ./configure install +make -C ./ADApp install +make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../.. +make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' +make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' +mkdir -p O.Common +make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' +make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ + T_A=linux-x86_64 install +make -C ./Db install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease +make -C ./ADSrc install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db/O.linux-x86_64' +mkdir ../../../db +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db/O.linux-x86_64' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myAttributeFunctions.d ../myAttributeFunctions.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myTimeStampSource.d ../myTimeStampSource.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DUSE_TYPED_RSET -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parseAreaPrefixes.d ../parseAreaPrefixes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF functAttribute.d ../functAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF PVAttribute.d ../PVAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF CCDMultiTrack.d ../CCDMultiTrack.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF paramAttribute.d ../paramAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ADDriver.d ../ADDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF asynNDArrayDriver.d ../asynNDArrayDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArray.d ../NDArray.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayPool.d ../NDArrayPool.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttributeList.d ../NDAttributeList.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttribute.d ../NDAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make -C ./op install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +Installing CFG file ../../../cfg/commonLibraryMakefile +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +mkdir ../../../cfg +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[3]: Nothing to be done for 'install'. +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +Installing CFG file ../../../cfg/commonDriverMakefile +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +mkdir ../../../dbd +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +mkdir ../../../include +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDAttributeList.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDArray.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../asynNDArrayDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../ADDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../paramAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../CCDMultiTrack.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../PVAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDArrayPool.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../functAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DUSE_TYPED_RSET -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../parseAreaPrefixes.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../myTimeStampSource.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../myAttributeFunctions.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +/usr/bin/ar -rc libADBase.a NDAttribute.o NDAttributeList.o NDArrayPool.o NDArray.o asynNDArrayDriver.o ADDriver.o paramAttribute.o CCDMultiTrack.o PVAttribute.o functAttribute.o parseAreaPrefixes.o myTimeStampSource.o myAttributeFunctions.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +/usr/bin/ranlib libADBase.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +g++ -o libADBase.so -shared -fPIC -Wl,-hlibADBase.so -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 NDAttribute.o NDAttributeList.o NDArrayPool.o NDArray.o asynNDArrayDriver.o ADDriver.o paramAttribute.o CCDMultiTrack.o PVAttribute.o functAttribute.o parseAreaPrefixes.o myTimeStampSource.o myAttributeFunctions.o -lasyn -ldbRecStd -ldbCore -lca -lCom -lxml2 -Wl,-Bdynamic -lpthread -lreadline -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' +make -C ./ntndArrayConverterSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ntndArrayConverter_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ntndArrayConverter.d ../ntndArrayConverter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ntndArrayConverter_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../ntndArrayConverter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +/usr/bin/ar -rc libntndArrayConverter.a ntndArrayConverter.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +/usr/bin/ranlib libntndArrayConverter.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +g++ -o libntndArrayConverter.so -shared -fPIC -Wl,-hlibntndArrayConverter.so -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 ntndArrayConverter.o -lADBase -lpvData -lnt -lasyn -ldbRecStd -ldbCore -lca -lCom -Wl,-Bdynamic -lpthread -lreadline -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' +make -C ./pluginSrc install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileTIFF.d ../NDFileTIFF.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginPva.d ../NDPluginPva.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNexus.d ../NDFileNexus.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNetCDF.d ../NDFileNetCDF.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileJPEG.d ../NDFileJPEG.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Layout.d ../NDFileHDF5Layout.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5LayoutXML.d ../NDFileHDF5LayoutXML.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5AttributeDataset.d ../NDFileHDF5AttributeDataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Dataset.d ../NDFileHDF5Dataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5.d ../NDFileHDF5.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileMagick.d ../NDFileMagick.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNull.d ../NDFileNull.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFile.d ../NDPluginFile.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPluginFileReader.d ../NDPosPluginFileReader.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPlugin.d ../NDPosPlugin.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCodec.d ../NDPluginCodec.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttrPlot.d ../NDPluginAttrPlot.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTransform.d ../NDPluginTransform.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTimeSeries.d ../NDPluginTimeSeries.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStdArrays.d ../NDPluginStdArrays.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStats.d ../NDPluginStats.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginScatter.d ../NDPluginScatter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROIStat.d ../NDPluginROIStat.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROI.d ../NDPluginROI.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlayTextFont.d ../NDPluginOverlayTextFont.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginProcess.d ../NDPluginProcess.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlay.d ../NDPluginOverlay.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fft.d ../fft.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginGather.d ../NDPluginGather.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFFT.d ../NDPluginFFT.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginColorConvert.d ../NDPluginColorConvert.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayRing.d ../NDArrayRing.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCircularBuff.d ../NDPluginCircularBuff.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF throttler.d ../throttler.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttribute.d ../NDPluginAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginDriver.d ../NDPluginDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/dbdExpand.pl -I. -I.. -I../O.Common -I../../../dbd -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/dbd -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/dbd -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/dbd -I/builds/DATAnet/adurl/.cache/asyn-R4-41/dbd -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/dbd -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/dbd -I/builds/DATAnet/adurl/.cache/adcore-R3-10/dbd -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/dbd -o NDPluginSupport.dbd NDPluginAttribute.dbd NDPluginCircularBuff.dbd NDPluginColorConvert.dbd NDPluginFFT.dbd NDPluginGather.dbd NDPluginOverlay.dbd NDPluginProcess.dbd NDPluginROI.dbd NDPluginROIStat.dbd NDPluginScatter.dbd NDPluginStats.dbd NDPluginStdArrays.dbd NDPluginTimeSeries.dbd NDPluginTransform.dbd NDPluginAttrPlot.dbd NDPluginCodec.dbd +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../throttler.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginAttribute.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginDriver.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDArrayRing.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginCircularBuff.cpp +In file included from /usr/include/string.h:495, + from ../NDPluginCircularBuff.cpp:11: +In function ‘char* strncpy(char*, const char*, size_t)’, + inlined from ‘virtual asynStatus NDPluginCircularBuff::writeOctet(asynUser*, const char*, size_t, size_t*)’ at ../NDPluginCircularBuff.cpp:343:14: +/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:34: warning: ‘char* __builtin_strncpy(char*, const char*, long unsigned int)’ specified bound 100 equals destination size [-Wstringop-truncation] + 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); + | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginFFT.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../fft.c +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginGather.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginColorConvert.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginOverlayTextFont.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginProcess.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginOverlay.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginROI.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginScatter.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginROIStat.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginStdArrays.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginStats.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginTimeSeries.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginAttrPlot.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginCodec.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPosPlugin.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginTransform.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPosPluginFileReader.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginFile.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileNull.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileMagick.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5Dataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5AttributeDataset.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5LayoutXML.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileJPEG.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileNetCDF.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5Layout.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileNexus.cpp +../NDFileNexus.cpp: In member function ‘int NDFileNexus::processNode(xmlNode*, NDArray*)’: +../NDFileNexus.cpp:423:36: warning: ‘__builtin___sprintf_chk’ may write a terminating nul past the end of the destination [-Wformat-overflow=] + 423 | sprintf(this->dataPath, "%c%s", '/', dPath); + | ^ +In file included from /usr/include/stdio.h:867, + from ../NDFileNexus.cpp:12: +/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:34: note: ‘__builtin___sprintf_chk’ output between 2 and 129 bytes into a destination of size 128 + 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, + | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 37 | __bos (__s), __fmt, __va_arg_pack ()); + | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileTIFF.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginPva.cpp +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +/usr/bin/ar -rc libNDPlugin.a NDPluginDriver.o throttler.o NDPluginAttribute.o NDPluginCircularBuff.o NDArrayRing.o NDPluginColorConvert.o NDPluginFFT.o fft.o NDPluginGather.o NDPluginOverlay.o NDPluginOverlayTextFont.o NDPluginProcess.o NDPluginROI.o NDPluginROIStat.o NDPluginScatter.o NDPluginStats.o NDPluginStdArrays.o NDPluginTimeSeries.o NDPluginTransform.o NDPluginAttrPlot.o NDPluginCodec.o NDPosPlugin.o NDPosPluginFileReader.o NDPluginFile.o NDFileNull.o NDFileMagick.o NDFileHDF5.o NDFileHDF5Dataset.o NDFileHDF5AttributeDataset.o NDFileHDF5LayoutXML.o NDFileHDF5Layout.o NDFileJPEG.o NDFileNetCDF.o NDFileNexus.o NDFileTIFF.o NDPluginPva.o +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +/usr/bin/ranlib libNDPlugin.a +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +g++ -o libNDPlugin.so -shared -fPIC -Wl,-hlibNDPlugin.so -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 NDPluginDriver.o throttler.o NDPluginAttribute.o NDPluginCircularBuff.o NDArrayRing.o NDPluginColorConvert.o NDPluginFFT.o fft.o NDPluginGather.o NDPluginOverlay.o NDPluginOverlayTextFont.o NDPluginProcess.o NDPluginROI.o NDPluginROIStat.o NDPluginScatter.o NDPluginStats.o NDPluginStdArrays.o NDPluginTimeSeries.o NDPluginTransform.o NDPluginAttrPlot.o NDPluginCodec.o NDPosPlugin.o NDPosPluginFileReader.o NDPluginFile.o NDFileNull.o NDFileMagick.o NDFileHDF5.o NDFileHDF5Dataset.o NDFileHDF5AttributeDataset.o NDFileHDF5LayoutXML.o NDFileHDF5Layout.o NDFileJPEG.o NDFileNetCDF.o NDFileNexus.o NDFileTIFF.o NDPluginPva.o -lADBase -lasyn -lntndArrayConverter -lnt -lpvDatabase -lpvAccess -lpvData -lnetCDF -lMagick++ -lcoders -lMagick -ljbig -ljp2 -lbzlib -lpng -lwebp -llcms -lttf -lwmf -lfilters -ltiff -lxml2 -lNeXus -lhdf5 -lhdf5_hl -lblosc -lszip -lzlib -ljpeg -ldbRecStd -ldbCore -lca -lCom -Wl,-Bdynamic -lX11 -lXext -lpthread -lreadline -lm -lrt -ldl -lgcc +make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' +make -C ./pluginTests install +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginTests' +mkdir -p O.Common +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginTests' +make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginTests' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. +make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginTests' +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Nothing to be done for 'install'. +DEBUG:__main__:EXEC DONE +DEBUG:__main__:EXEC 'make -j2 -Otarget' in /builds/DATAnet/adurl/.cache/adsupport-master +Building dependency ADSUPPORT in /builds/DATAnet/adurl/.cache/adsupport-master +make -C ./configure install +make -C ./supportApp install +make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ + T_A=linux-x86_64 install +make -C ./jpegSrc install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease +make -C ./zlibSrc install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[3]: Nothing to be done for 'install'. +make -C ./szipSrc install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[3]: Nothing to be done for 'install'. +make -C ./bitshuffleSrc install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[3]: Nothing to be done for 'install'. +make -C ./cbfSrc install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[3]: Nothing to be done for 'install'. +make -C ./bloscSrc install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[3]: Nothing to be done for 'install'. +make -C ./tiffSrc install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[3]: Nothing to be done for 'install'. +make -C ./xml2Src install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[3]: Nothing to be done for 'install'. +make -C ./hdf5Src install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[3]: Nothing to be done for 'install'. +make -C ./GraphicsMagickSrc install +make -C ./bzlib install +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make[4]: Nothing to be done for 'install'. +make -C ./lcms install +make -C ./src install +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[3]: Nothing to be done for 'install'. +make -C ./ttf install +make -C ./src install +make[5]: Nothing to be done for 'install'. +make -C ./wmf install +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make -C ./src install +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[5]: Nothing to be done for 'install'. +make -C ./webp install +make -C ./src install +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[5]: Nothing to be done for 'install'. +make -C ./png install +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make[4]: Nothing to be done for 'install'. +make -C ./jp2 install +make -C ./src install +make -C ./libjasper install +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../../.. \ + T_A=linux-x86_64 install +make[5]: Nothing to be done for 'install'. +make -C ./jbig install +make[6]: Nothing to be done for 'install'. +make -C ./hdf5_hlSrc install +make -C ./libjbig install +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[5]: Nothing to be done for 'install'. +make -C ./magick install +make[3]: Nothing to be done for 'install'. +make -C ./hdf5PluginSrc install +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[3]: Nothing to be done for 'install'. +make -C ./netCDFSrc install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[4]: Nothing to be done for 'install'. +make -C ./filters install +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make[4]: Nothing to be done for 'install'. +make -C ./coders install +make[3]: Nothing to be done for 'install'. +make -C ./nexusSrc install +make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ + T_A=linux-x86_64 install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[3]: Nothing to be done for 'install'. +make[4]: Nothing to be done for 'install'. +make -C ./Magick++ install +make -C ./lib install +make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ + T_A=linux-x86_64 install +make[5]: Nothing to be done for 'install'. +DEBUG:__main__:EXEC DONE +DEBUG:__main__:EXEC 'make -j2 -Otarget' in /builds/DATAnet/adurl/.cache/adcore-R3-10 +Building dependency ADCORE in /builds/DATAnet/adurl/.cache/adcore-R3-10 +make -C ./configure install +make -C ./ADApp install +make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ + T_A=linux-x86_64 install +make -C ./Db install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease +make -C ./ADSrc install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[3]: Nothing to be done for 'install'. +make -C ./op install +make[2]: Nothing to be done for 'install'. +make[3]: Nothing to be done for 'install'. +make -C ./ntndArrayConverterSrc install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[3]: Nothing to be done for 'install'. +make -C ./pluginSrc install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[3]: Nothing to be done for 'install'. +make -C ./pluginTests install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[3]: Nothing to be done for 'install'. +DEBUG:__main__:EXEC DONE +Dependency module information +Module Tag Binaries Commit +---------------------------------------------------------------------------------------------------- +BASE R7.0.3.1 from cache 34834df Clear development flags for 7.0.3.1 +SNCSEQ R2-2-9 from cache e5e3615 add cfg directory to boringfile +SSCAN R2-11-5 from cache f4ed91f R2-11-5 Release Notes +CALC R3-7-3 from cache 2a3ceff update gitignore +ASYN R4-41 from cache 0c70f16 Update release to R4-41 +AUTOSAVE R5-7-1 from cache 31e041c R5-7-1 tag +BUSY R1-7-1 from cache adb6da9 R1-7-1 Documentation +AREA_DETECTOR R3-10 rebuilt 9739d42 Notes for R3-10 +ADSUPPORT master rebuilt 1b5b589 Need to define XMLPUBFUN __declspec(dllimport) for DLL importing builds. There's no need for any difference between Visual Studio and MingW build defines. +ADCORE R3-10 rebuilt 7fd8c0f Notes for R3-10 +Contents of RELEASE.local +SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9 +SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5 +CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3 +ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41 +AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1 +BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1 +AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10 +ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master +ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-10 +EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1 +DEBUG:__main__:Detected a build hosted on gitlab, using gcc on linux (x64) configured as shared-optimized (test: True, clean_deps: False) +DEBUG:__main__:Setting up the build environment +DEBUG:__main__:Using EPICS Base at /builds/DATAnet/adurl/.cache/base-R7.0.3.1 +DEBUG:__main__:Running script to detect EPICS host architecture in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 +DEBUG:__main__:/builds/DATAnet/adurl/.cache/base-R7.0.3.1/src/tools/EpicsHostArch.pl returned: linux-x86_64 +DEBUG:__main__:Check if EPICS Base is a 3.14 series: False +DEBUG:__main__:Check if make is a 3.x series: False +DEBUG:__main__:EXEC 'make -j2 -Otarget' in /builds/DATAnet/adurl +make -C ./configure install +make -C ./urlApp install +make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ + T_A=linux-x86_64 install +make -C ./src install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease +make -C ./Db install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +make[3]: Nothing to be done for 'install'. +make -C ./op install +make[2]: Nothing to be done for 'install'. +make[3]: Entering directory '/builds/DATAnet/adurl/urlApp/src/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../URLDriver.cpp +make[3]: Leaving directory '/builds/DATAnet/adurl/urlApp/src/O.linux-x86_64' +make[3]: Entering directory '/builds/DATAnet/adurl/urlApp/src/O.linux-x86_64' +/usr/bin/ar -rc libURLDriver.a URLDriver.o +make[3]: Leaving directory '/builds/DATAnet/adurl/urlApp/src/O.linux-x86_64' +make[3]: Entering directory '/builds/DATAnet/adurl/urlApp/src/O.linux-x86_64' +/usr/bin/ranlib libURLDriver.a +make[3]: Leaving directory '/builds/DATAnet/adurl/urlApp/src/O.linux-x86_64' +make[3]: Entering directory '/builds/DATAnet/adurl/urlApp/src/O.linux-x86_64' +g++ -o libURLDriver.so -shared -fPIC -Wl,-hlibURLDriver.so -L/builds/DATAnet/adurl/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 URLDriver.o -lADBase -lasyn -lntndArrayConverter -lnt -lpvDatabase -lpvAccess -lpvData -lnetCDF -lMagick++ -lcoders -lMagick -ljbig -ljp2 -lbzlib -lpng -lwebp -llcms -lttf -lwmf -lfilters -ltiff -lxml2 -lNeXus -lhdf5 -lhdf5_hl -lblosc -lszip -lzlib -ljpeg -ldbRecStd -ldbCore -lca -lCom -Wl,-Bdynamic -lX11 -lXext -lpthread -lreadline -lm -lrt -ldl -lgcc +make[3]: Leaving directory '/builds/DATAnet/adurl/urlApp/src/O.linux-x86_64' +make -C ./iocs install +make -C ./urlIOC install +make -C ./configure install +make -C ./urlApp install +make -C ./src install +make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ + T_A=linux-x86_64 install +make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ + T_A=linux-x86_64 install +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease +make -C ./iocBoot install +make -C ./iocURLDriver install +make[4]: Nothing to be done for 'install'. +make[5]: Entering directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/dbdExpand.pl -I. -I.. -I../O.Common -I../../../dbd -I../../../../../dbd -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/dbd -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/dbd -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/dbd -I/builds/DATAnet/adurl/.cache/asyn-R4-41/dbd -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/dbd -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/dbd -I/builds/DATAnet/adurl/.cache/adcore-R3-10/dbd -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/dbd -o URLDriverApp.dbd URLDriverSupport.dbd base.dbd NDPluginSupport.dbd ADSupport.dbd NDFileNull.dbd NDPluginPva.dbd PVAServerRegister.dbd NDFileNetCDF.dbd NDFileMagick.dbd NDFileTIFF.dbd NDFileNexus.dbd NDFileHDF5.dbd NDFileJPEG.dbd asyn.dbd asSupport.dbd busySupport.dbd calcSupport.dbd sscanSupport.dbd +make[5]: Leaving directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' +perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/registerRecordDeviceDriver.pl -I. -I.. -I../O.Common -I../../../dbd -I../../../../../dbd -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/dbd -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/dbd -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/dbd -I/builds/DATAnet/adurl/.cache/asyn-R4-41/dbd -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/dbd -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/dbd -I/builds/DATAnet/adurl/.cache/adcore-R3-10/dbd -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/dbd -o URLDriverApp_registerRecordDeviceDriver.cpp ../O.Common/URLDriverApp.dbd URLDriverApp_registerRecordDeviceDriver /builds/DATAnet/adurl/iocs/urlIOC +make[5]: Leaving directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF URLDriverApp_registerRecordDeviceDriver.d URLDriverApp_registerRecordDeviceDriver.cpp +make[5]: Leaving directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' +g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c URLDriverApp_registerRecordDeviceDriver.cpp +make[5]: Leaving directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' +make[5]: Entering directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' +g++ -o URLDriverApp -Wl,-Bstatic -L/builds/DATAnet/adurl/lib/linux-x86_64 -L/builds/DATAnet/adurl/iocs/urlIOC/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/autosave-R5-7-1/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/busy-R1-7-1/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/calc-R3-7-3/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/seq-R2-2-9/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/sscan-R2-11-5/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/iocs/urlIOC/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/autosave-R5-7-1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/busy-R1-7-1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/calc-R3-7-3/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/seq-R2-2-9/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/sscan-R2-11-5/lib/linux-x86_64 -rdynamic -m64 URLDriverApp_registerRecordDeviceDriver.o URLDriverAppMain.o -lURLDriver -lNDPlugin -lADBase -lntndArrayConverter -lnt -lpvDatabase -lpvAccessIOC -lpvAccessCA -lpvAccess -lpvData -lnetCDF -lMagick++ -lcoders -lMagick -ljbig -ljp2 -lbzlib -lpng -lwebp -llcms -lttf -lwmf -lfilters -ltiff -lxml2 -lNeXus -lhdf5 -lhdf5_hl -lblosc -lszip -lzlib -ljpeg -lasyn -lautosave -lbusy -lcalc -lsscan -lseq -lpv -ldbRecStd -ldbCore -lca -lCom -Wl,-Bdynamic -lX11 -lXext -lpthread -lreadline -lm -lrt -ldl -lgcc +/usr/bin/ld: /builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64/libjp2.a(jas_stream.o): in function `jas_stream_tmpfile': +jas_stream.c:(.text+0x7e9): warning: the use of `tmpnam' is dangerous, better use `mkstemp' +/usr/bin/ld: /builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64/libcoders.a(url.o): in function `ReadURLImage': +url.c:(.text+0x1b7): undefined reference to `xmlNanoHTTPFrameState' +/usr/bin/ld: url.c:(.text+0x1c4): undefined reference to `xmlNanoHTTPFrameState' +/usr/bin/ld: url.c:(.text+0x1d9): undefined reference to `xmlNanoHTTPStreamRead' +/usr/bin/ld: url.c:(.text+0x1f8): undefined reference to `xmlNanoHTTPStreaming' +/usr/bin/ld: url.c:(.text+0x329): undefined reference to `xmlNanoHTTPStreamOpen' +/usr/bin/ld: url.c:(.text+0x34e): undefined reference to `xmlNanoHTTPFrameState' +/usr/bin/ld: url.c:(.text+0x3b7): undefined reference to `xmlNanoHTTPStreamClose' +/usr/bin/ld: url.c:(.text+0x3bc): undefined reference to `xmlNanoHTTPStreamCleanup' +collect2: error: ld returned 1 exit status +make[5]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_BUILD:213: URLDriverApp] Error 1 +make[5]: Leaving directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' +make[4]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_ARCHS:58: install.linux-x86_64] Error 2 +make[3]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: src.install] Error 2 +make[2]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: urlApp.install] Error 2 +make[1]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: urlIOC.install] Error 2 +make: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: iocs.install] Error 2 +DEBUG:__main__:EXEC DONE diff --git a/.ci-local/area_detector_hook.sh b/.ci-local/area_detector_hook.sh new file mode 100644 index 00000000..280b7bd3 --- /dev/null +++ b/.ci-local/area_detector_hook.sh @@ -0,0 +1,71 @@ +#!/bin/bash + +# This script configures areadetector R3-11 +# +# check if user has right permissions +if [ "$(id -u)" != "0" ]; then + echo "Sorry, you are not root. Please try again using sudo." + exit 1 +fi + +# terminate script after first line that fails +set -e + +if [ -z "$EPICS_HOST_ARCH" ] +then + EPICS_HOST_ARCH=linux-x86_64 +fi +apt-get install -y libx11-dev libxext-dev + +# The directory above +SUPPORT="$(dirname "${PWD}")" + +# This won't have been set yet on the areaDetector pass. +AREA_DETECTOR=$PWD + +# This file will have been written by ci-scripts cue.py +source $SUPPORT/RELEASE.local + +pushd $AREA_DETECTOR/configure +echo "Copying from example." +./copyFromExample +popd + +#hack config_site.local +sed -i -e "/^WITH_PVA\s*=/ s,=.*,=YES," $AREA_DETECTOR/configure/CONFIG_SITE.local +sed -i -e "/^WITH_OPENCV\s*=/ s,=.*,=NO," $AREA_DETECTOR/configure/CONFIG_SITE.local +sed -i -e "/^WITH_QSRV\s*=/ s,=.*,=NO," $AREA_DETECTOR/configure/CONFIG_SITE.local +sed -i -e "/^WITH_BITSHUFFLE\s*=/ s,=.*,=NO," $AREA_DETECTOR/configure/CONFIG_SITE.local + +# EXAMPLE_CONFIG_SITE.local.linux-x86_64 sets WITH_BOOST. I don't wannit. +if [ -f $AREA_DETECTOR/configure/CONFIG_SITE.local.$EPICS_HOST_ARCH ]; then + rm $AREA_DETECTOR/configure/CONFIG_SITE.local.$EPICS_HOST_ARCH +fi + +# Hack RELEASE.local.linux-x86_64 file +# NB, this file currently points to ADPointGrey, ADEiger and ADAravis. +# I'm not installing these modules. +if [ -f $AREA_DETECTOR/configure/RELEASE.local.$EPICS_HOST_ARCH ]; then + rm $AREA_DETECTOR/configure/RELEASE.local.$EPICS_HOST_ARCH +fi +echo EPICS_BASE=$EPICS_BASE > $AREA_DETECTOR/configure/RELEASE.local + +# Hack RELEASE_LIBS.local file +sed -i -e "/^SUPPORT\s*=/ s,=.*,=$SUPPORT," $AREA_DETECTOR/configure/RELEASE_LIBS.local +sed -i -e "/^ASYN\s*=/ s,=.*,=$ASYN," $AREA_DETECTOR/configure/RELEASE_LIBS.local +sed -i -e "/^EPICS_BASE\s*=/ s,=.*,=$EPICS_BASE," $AREA_DETECTOR/configure/RELEASE_LIBS.local +sed -i -e "/^AREA_DETECTOR\s*=/ s,=.*,=$AREA_DETECTOR," $AREA_DETECTOR/configure/RELEASE_LIBS.local + +# Hack RELEASE_PRODS.local file +sed -i -e "/^SUPPORT\s*=/ s,=.*,=$SUPPORT," $AREA_DETECTOR/configure/RELEASE_PRODS.local +sed -i -e "/^CALC\s*=/ s,=.*,=$CALC," $AREA_DETECTOR/configure/RELEASE_PRODS.local +sed -i -e "/^BUSY\s*=/ s,=.*,=$BUSY," $AREA_DETECTOR/configure/RELEASE_PRODS.local +sed -i -e "/^SSCAN\s*=/ s,=.*,=$SSCAN," $AREA_DETECTOR/configure/RELEASE_PRODS.local +sed -i -e "/^AUTOSAVE\s*=/ s,=.*,=$AUTOSAVE," $AREA_DETECTOR/configure/RELEASE_PRODS.local +sed -i -e "/^SNCSEQ\s*=/ s,=.*,=$SNCSEQ," $AREA_DETECTOR/configure/RELEASE_PRODS.local +sed -i -e "/^EPICS_BASE\s*=/ s,=.*,=$EPICS_BASE," $AREA_DETECTOR/configure/RELEASE_PRODS.local +sed -i -e "/^ASYN\s*=/ s,=.*,=$ASYN," $AREA_DETECTOR/configure/RELEASE_PRODS.local +sed -i -e "/^AREA_DETECTOR\s*=/ s,=.*,=$AREA_DETECTOR," $AREA_DETECTOR/configure/RELEASE_PRODS.local + +# Don't think we need this. +sed -i "s/DEVIOCSTATS/#DEVIOCSTATS/g" $AREA_DETECTOR/configure/RELEASE_PRODS.local diff --git a/.ci-local/hackmake.sh b/.ci-local/hackmake.sh new file mode 100644 index 00000000..22af01f4 --- /dev/null +++ b/.ci-local/hackmake.sh @@ -0,0 +1,4 @@ +sed -i -e '/^include \$(TOP)\/ADApp\/commonLibraryMakefile/i ifeq (mingw, \$(findstring mingw, \$(T_A)))' /builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/Makefile +sed -i -e '/^include \$(TOP)\/ADApp\/commonLibraryMakefile/i \ \ USR_LDFLAGS += -Wl,-allow-multiple-definition' /builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/Makefile +sed -i -e '/^include \$(TOP)\/ADApp\/commonLibraryMakefile/i endif' /builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/Makefile + diff --git a/.ci-local/stable.set b/.ci-local/stable.set new file mode 100644 index 00000000..e12c7597 --- /dev/null +++ b/.ci-local/stable.set @@ -0,0 +1,23 @@ +MODULES=sncseq sscan calc asyn autosave busy area_Detector ADSupport ADCore + +BASE=R7.0.6.1 +SNCSEQ=R2-2-9 +SSCAN=R2-11-5 +CALC=R3-7-4 +ASYN=R4-41 +BUSY=R1-7-1 +AUTOSAVE=R5-7-1 + +AREA_DETECTOR=R3-11 +AREA_DETECTOR_REPOURL=https://github.com/areaDetector/areaDetector +AREA_DETECTOR_RECURSIVE=NO +AREA_DETECTOR_HOOK=.ci-local/area_detector_hook.sh +ADSUPPORT=master +ADSUPPORT_REPOURL=https://github.com/pheest/ADSupport +ADSUPPORT_RECURSIVE=NO +ADSUPPORT_HOOK=.ci-local/adsupport_hook.sh +ADCORE=master +ADCORE_REPOURL=https://github.com/pheest/ADCore +ADCORE_RECURSIVE=NO +ADCORE_HOOK=.ci-local/adcore_hook.sh + diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..2593f718 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,107 @@ +# .gitlab-ci.yml for testing EPICS Base ci-scripts +# (see: https://github.com/epics-base/ci-scripts) + +# This is YAML - indentation levels are crucial + +# GitLab runner can use any Docker container, we're using this one +# to be comparable with the other CI services +image: ubuntu:focal + +cache: + key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG" + paths: + - .cache/ + +variables: + DEBIAN_FRONTEND: noninteractive + GIT_SUBMODULE_STRATEGY: "recursive" + SETUP_PATH: ".ci-local:.ci" + BASE_RECURSIVE: "YES" + # Additional packages needed for + # | EPICS |clang| Windows cross builds |RTEMS testing |sequencer + APT: "libreadline6-dev libncurses5-dev perl clang g++-mingw-w64-i686 g++-mingw-w64-x86-64 qemu-system-x86 re2c" + CMP: "gcc" + BGFC: "default" + SET: stable + CLEAN_DEPS: "NO" + +# Template for build jobs (hidden) +.build: + stage: build + before_script: + - apt-get update -qq && apt-get install -y -qq build-essential git python curl p7zip-full libgtest-dev libxml2-dev + - python .ci/cue.py prepare + script: + - python .ci/cue.py build + - python .ci/cue.py test + - python .ci/cue.py test-results + +# If you need to do more during install and build, +# add a local directory to your module and do e.g. +# - ./.ci-local/travis/install-extras.sh + +# Define build jobs + +# Well-known variables to use +# SET source setup file +# ADD_MODULES extra modules (for a specific job) +# BCFG build configuration (static/debug/static-debug; +# default: shared-optimized) +# TEST set to NO to skip running the tests (default: YES) +# VV set to make build scripts verbose (default: unset) +# EXTRA content will be added to make command line +# EXTRA1..5 more additional arguments for the make command +# (one argument per variable) + +# Usually from setup files, but may be specified or overridden +# on a job line +# MODULES list of dependency modules +# BASE branch or release tag name of the EPICS Base to use +# branch or release tag for a specific module +# ... see README for setup file syntax description + +# Different configurations of gcc and clang +gcc_default: + extends: .build + variables: + +gcc_static: + extends: .build + variables: + BCFG: "static" + +clang_default: + extends: .build + variables: + CMP: "clang" + +clang_static_c++11: + extends: .build + variables: + CMP: "clang" + BCFG: "static" + EXTRA: "CMD_CXXFLAGS=-std=c++11" + +# Cross-compilations to Windows using gcc/MinGW and WINE +wine32_default: + extends: .build + variables: + WINE: "32" + +wine64_default: + extends: .build + variables: + WINE: "64" + +wine64_debug: + extends: .build + variables: + WINE: "64" + BCFG: "debug" + +wine64_static: + extends: .build + variables: + WINE: "64" + BCFG: "static" + diff --git a/iocs/urlIOC/configure/RELEASE b/iocs/urlIOC/configure/RELEASE index 7cc476eb..e451aa2c 100644 --- a/iocs/urlIOC/configure/RELEASE +++ b/iocs/urlIOC/configure/RELEASE @@ -6,4 +6,4 @@ ADURL=$(TOP)/../.. -include $(TOP)/../../../configure/RELEASE_PRODS_INCLUDE -include $(TOP)/RELEASE.local --include $(TOP)/configure/RELEASE.local +-include $(ADURL)/configure/RELEASE.local diff --git a/urlApp/src/Makefile b/urlApp/src/Makefile index 735bc623..518a633c 100644 --- a/urlApp/src/Makefile +++ b/urlApp/src/Makefile @@ -27,6 +27,11 @@ ifeq ($(WITH_GRAPHICSMAGICK), YES) USR_CXXFLAGS_WIN32 += -DWIN32 endif + ifeq (mingw, $(findstring mingw, $(T_A))) + # multiple definition of `_Unwind_Resume on Linux. I don't know how to fix it. + USR_LDFLAGS += -Wl,-allow-multiple-definition + endif + ifeq ($(SHARED_LIBRARIES),YES) USR_CXXFLAGS_WIN32 += -D_DLL else From 64756599203f7ae159f2f2d0bca66bf649f4d66e Mon Sep 17 00:00:00 2001 From: "Heesterman, Peter J" Date: Thu, 16 Jun 2022 16:38:19 +0100 Subject: [PATCH 2/4] Removed log files inadvertently added (copy'n'paste). --- .ci-local/adurl_WINE_install.log | 30534 ---------------------------- .ci-local/adurl_install_Linux.log | 10573 ---------- 2 files changed, 41107 deletions(-) delete mode 100644 .ci-local/adurl_WINE_install.log delete mode 100644 .ci-local/adurl_install_Linux.log diff --git a/.ci-local/adurl_WINE_install.log b/.ci-local/adurl_WINE_install.log deleted file mode 100644 index 5a13c430..00000000 --- a/.ci-local/adurl_WINE_install.log +++ /dev/null @@ -1,30534 +0,0 @@ -DEBUG:__main__:Detected a build hosted on gitlab, using gcc on linux (x64) configured as shared-optimized (test: True, clean_deps: False) -Build using gcc compiler on linux (x64) hosted by gitlab -Python setup -2.7.18 (default, Mar 8 2021, 13:02:45) -[GCC 9.3.0] -PYTHONPATH - /builds/DATAnet/adurl/.ci - /usr/lib/python2.7 - /usr/lib/python2.7/plat-x86_64-linux-gnu - /usr/lib/python2.7/lib-tk - /usr/lib/python2.7/lib-old - /usr/lib/python2.7/lib-dynload - /usr/local/lib/python2.7/dist-packages - /usr/lib/python2.7/dist-packages -platform = linux-x86_64 -Opening setup file .ci-local/stable.set -DEBUG:__main__:.ci-local/stable.set: setup[MODULES] = sncseq sscan calc asyn autosave busy area_Detector ADSupport ADCore -DEBUG:__main__:.ci-local/stable.set: setup[BASE] = R7.0.3.1 -DEBUG:__main__:.ci-local/stable.set: setup[SNCSEQ] = R2-2-9 -DEBUG:__main__:.ci-local/stable.set: setup[SSCAN] = R2-11-5 -DEBUG:__main__:.ci-local/stable.set: setup[CALC] = R3-7-3 -DEBUG:__main__:.ci-local/stable.set: setup[ASYN] = R4-41 -DEBUG:__main__:.ci-local/stable.set: setup[BUSY] = R1-7-1 -DEBUG:__main__:.ci-local/stable.set: setup[AUTOSAVE] = R5-7-1 -DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR] = R3-10 -DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR_REPOURL] = https://github.com/areaDetector/areaDetector -DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR_RECURSIVE] = NO -DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR_HOOK] = .ci-local/area_detector_hook.sh -DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT] = master -DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT_REPOURL] = https://github.com/pheest/ADSupport -DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT_RECURSIVE] = NO -DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT_HOOK] = .ci-local/adsupport_hook.sh -DEBUG:__main__:.ci-local/stable.set: setup[ADCORE] = R3-10 -DEBUG:__main__:.ci-local/stable.set: setup[ADCORE_REPOURL] = https://github.com/areaDetector/ADCore -DEBUG:__main__:.ci-local/stable.set: setup[ADCORE_RECURSIVE] = NO -DEBUG:__main__:.ci-local/stable.set: setup[ADCORE_HOOK] = .ci-local/adcore_hook.sh -DEBUG:__main__:Done with setup file .ci-local/stable.set -Opening setup file .ci/defaults.set -DEBUG:__main__:.ci/defaults.set: setup[BASE_DIRNAME] = base -DEBUG:__main__:.ci/defaults.set: setup[BASE_REPONAME] = epics-base -DEBUG:__main__:.ci/defaults.set: setup[BASE_REPOOWNER] = epics-base -DEBUG:__main__:.ci/defaults.set: setup[BASE_VARNAME] = EPICS_BASE -DEBUG:__main__:.ci/defaults.set: setup[PVDATA_DIRNAME] = pvData -DEBUG:__main__:.ci/defaults.set: setup[PVDATA_REPONAME] = pvDataCPP -DEBUG:__main__:.ci/defaults.set: setup[PVDATA_REPOOWNER] = epics-base -DEBUG:__main__:.ci/defaults.set: setup[PVACCESS_DIRNAME] = pvAccess -DEBUG:__main__:.ci/defaults.set: setup[PVACCESS_REPONAME] = pvAccessCPP -DEBUG:__main__:.ci/defaults.set: setup[PVACCESS_REPOOWNER] = epics-base -DEBUG:__main__:.ci/defaults.set: setup[NTYPES_DIRNAME] = normativeTypes -DEBUG:__main__:.ci/defaults.set: setup[NTYPES_REPONAME] = normativeTypesCPP -DEBUG:__main__:.ci/defaults.set: setup[NTYPES_REPOOWNER] = epics-base -DEBUG:__main__:.ci/defaults.set: setup[SNCSEQ_REPOURL] = https://www-csr.bessy.de/control/SoftDist/sequencer/repo/branch-2-2.git -DEBUG:__main__:.ci/defaults.set: setup[SNCSEQ_DEPTH] = 0 -DEBUG:__main__:.ci/defaults.set: setup[SNCSEQ_DIRNAME] = seq -DEBUG:__main__:.ci/defaults.set: setup[STREAM_REPONAME] = StreamDevice -DEBUG:__main__:.ci/defaults.set: setup[STREAM_REPOOWNER] = paulscherrerinstitute -DEBUG:__main__:Done with setup file .ci/defaults.set -DEBUG:__main__:ENV assignment: BASE_RECURSIVE = YES -DEBUG:__main__:Loaded setup -DEBUG:__main__: ADCORE = "R3-10" -DEBUG:__main__: ADCORE_DEPTH = "-1" -DEBUG:__main__: ADCORE_DIRNAME = "adcore" -DEBUG:__main__: ADCORE_HOOK = ".ci-local/adcore_hook.sh" -DEBUG:__main__: ADCORE_RECURSIVE = "NO" -DEBUG:__main__: ADCORE_REPONAME = "adcore" -DEBUG:__main__: ADCORE_REPOOWNER = "epics-modules" -DEBUG:__main__: ADCORE_REPOURL = "https://github.com/areaDetector/ADCore" -DEBUG:__main__: ADCORE_VARNAME = "ADCORE" -DEBUG:__main__: ADD_MODULES = "" -DEBUG:__main__: ADSUPPORT = "master" -DEBUG:__main__: ADSUPPORT_DEPTH = "-1" -DEBUG:__main__: ADSUPPORT_DIRNAME = "adsupport" -DEBUG:__main__: ADSUPPORT_HOOK = ".ci-local/adsupport_hook.sh" -DEBUG:__main__: ADSUPPORT_RECURSIVE = "NO" -DEBUG:__main__: ADSUPPORT_REPONAME = "adsupport" -DEBUG:__main__: ADSUPPORT_REPOOWNER = "epics-modules" -DEBUG:__main__: ADSUPPORT_REPOURL = "https://github.com/pheest/ADSupport" -DEBUG:__main__: ADSUPPORT_VARNAME = "ADSUPPORT" -DEBUG:__main__: AREA_DETECTOR = "R3-10" -DEBUG:__main__: AREA_DETECTOR_DEPTH = "-1" -DEBUG:__main__: AREA_DETECTOR_DIRNAME = "area_detector" -DEBUG:__main__: AREA_DETECTOR_HOOK = ".ci-local/area_detector_hook.sh" -DEBUG:__main__: AREA_DETECTOR_RECURSIVE = "NO" -DEBUG:__main__: AREA_DETECTOR_REPONAME = "area_detector" -DEBUG:__main__: AREA_DETECTOR_REPOOWNER = "epics-modules" -DEBUG:__main__: AREA_DETECTOR_REPOURL = "https://github.com/areaDetector/areaDetector" -DEBUG:__main__: AREA_DETECTOR_VARNAME = "AREA_DETECTOR" -DEBUG:__main__: ASYN = "R4-41" -DEBUG:__main__: ASYN_DEPTH = "-1" -DEBUG:__main__: ASYN_DIRNAME = "asyn" -DEBUG:__main__: ASYN_RECURSIVE = "YES" -DEBUG:__main__: ASYN_REPONAME = "asyn" -DEBUG:__main__: ASYN_REPOOWNER = "epics-modules" -DEBUG:__main__: ASYN_REPOURL = "https://github.com/epics-modules/asyn.git" -DEBUG:__main__: ASYN_VARNAME = "ASYN" -DEBUG:__main__: AUTOSAVE = "R5-7-1" -DEBUG:__main__: AUTOSAVE_DEPTH = "-1" -DEBUG:__main__: AUTOSAVE_DIRNAME = "autosave" -DEBUG:__main__: AUTOSAVE_RECURSIVE = "YES" -DEBUG:__main__: AUTOSAVE_REPONAME = "autosave" -DEBUG:__main__: AUTOSAVE_REPOOWNER = "epics-modules" -DEBUG:__main__: AUTOSAVE_REPOURL = "https://github.com/epics-modules/autosave.git" -DEBUG:__main__: AUTOSAVE_VARNAME = "AUTOSAVE" -DEBUG:__main__: BASE = "R7.0.3.1" -DEBUG:__main__: BASE_DEPTH = "-1" -DEBUG:__main__: BASE_DIRNAME = "base" -DEBUG:__main__: BASE_RECURSIVE = "YES" -DEBUG:__main__: BASE_REPONAME = "epics-base" -DEBUG:__main__: BASE_REPOOWNER = "epics-base" -DEBUG:__main__: BASE_REPOURL = "https://github.com/epics-base/epics-base.git" -DEBUG:__main__: BASE_VARNAME = "EPICS_BASE" -DEBUG:__main__: BUSY = "R1-7-1" -DEBUG:__main__: BUSY_DEPTH = "-1" -DEBUG:__main__: BUSY_DIRNAME = "busy" -DEBUG:__main__: BUSY_RECURSIVE = "YES" -DEBUG:__main__: BUSY_REPONAME = "busy" -DEBUG:__main__: BUSY_REPOOWNER = "epics-modules" -DEBUG:__main__: BUSY_REPOURL = "https://github.com/epics-modules/busy.git" -DEBUG:__main__: BUSY_VARNAME = "BUSY" -DEBUG:__main__: CALC = "R3-7-3" -DEBUG:__main__: CALC_DEPTH = "-1" -DEBUG:__main__: CALC_DIRNAME = "calc" -DEBUG:__main__: CALC_RECURSIVE = "YES" -DEBUG:__main__: CALC_REPONAME = "calc" -DEBUG:__main__: CALC_REPOOWNER = "epics-modules" -DEBUG:__main__: CALC_REPOURL = "https://github.com/epics-modules/calc.git" -DEBUG:__main__: CALC_VARNAME = "CALC" -DEBUG:__main__: MODULES = "sncseq sscan calc asyn autosave busy area_Detector ADSupport ADCore" -DEBUG:__main__: NTYPES_DIRNAME = "normativeTypes" -DEBUG:__main__: NTYPES_REPONAME = "normativeTypesCPP" -DEBUG:__main__: NTYPES_REPOOWNER = "epics-base" -DEBUG:__main__: PVACCESS_DIRNAME = "pvAccess" -DEBUG:__main__: PVACCESS_REPONAME = "pvAccessCPP" -DEBUG:__main__: PVACCESS_REPOOWNER = "epics-base" -DEBUG:__main__: PVDATA_DIRNAME = "pvData" -DEBUG:__main__: PVDATA_REPONAME = "pvDataCPP" -DEBUG:__main__: PVDATA_REPOOWNER = "epics-base" -DEBUG:__main__: REPOOWNER = "epics-modules" -DEBUG:__main__: SNCSEQ = "R2-2-9" -DEBUG:__main__: SNCSEQ_DEPTH = "0" -DEBUG:__main__: SNCSEQ_DIRNAME = "seq" -DEBUG:__main__: SNCSEQ_RECURSIVE = "YES" -DEBUG:__main__: SNCSEQ_REPONAME = "sncseq" -DEBUG:__main__: SNCSEQ_REPOOWNER = "epics-modules" -DEBUG:__main__: SNCSEQ_REPOURL = "https://www-csr.bessy.de/control/SoftDist/sequencer/repo/branch-2-2.git" -DEBUG:__main__: SNCSEQ_VARNAME = "SNCSEQ" -DEBUG:__main__: SSCAN = "R2-11-5" -DEBUG:__main__: SSCAN_DEPTH = "-1" -DEBUG:__main__: SSCAN_DIRNAME = "sscan" -DEBUG:__main__: SSCAN_RECURSIVE = "YES" -DEBUG:__main__: SSCAN_REPONAME = "sscan" -DEBUG:__main__: SSCAN_REPOOWNER = "epics-modules" -DEBUG:__main__: SSCAN_REPOURL = "https://github.com/epics-modules/sscan.git" -DEBUG:__main__: SSCAN_VARNAME = "SSCAN" -DEBUG:__main__: STREAM_REPONAME = "StreamDevice" -DEBUG:__main__: STREAM_REPOOWNER = "paulscherrerinstitute" -DEBUG:__main__:Effective module list: ['BASE', 'SNCSEQ', 'SSCAN', 'CALC', 'ASYN', 'AUTOSAVE', 'BUSY', 'AREA_DETECTOR', 'ADSUPPORT', 'ADCORE'] -DEBUG:__main__:EXEC 'git config --global advice.detachedHead false' in /builds/DATAnet/adurl -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Adding dependency BASE with tag R7.0.3.1 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-base/epics-base.git R7.0.3.1' in /builds/DATAnet/adurl -9cd04f577222ab0eecae23dfc143d1c494d06e2e refs/tags/R7.0.3.1 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency BASE: directory /builds/DATAnet/adurl/.cache/base-R7.0.3.1 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit 34834dfe973a577f342503441e7b33b7fe322de5, git head is 34834dfe973a577f342503441e7b33b7fe322de5 -Found R7.0.3.1 of dependency BASE up-to-date in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 -DEBUG:__main__:RELEASE.local does not exist, creating it -DEBUG:__main__:Opening RELEASE.local for adding 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding new definition: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency SNCSEQ with tag R2-2-9 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://www-csr.bessy.de/control/SoftDist/sequencer/repo/branch-2-2.git R2-2-9' in /builds/DATAnet/adurl -b21d8a8763599326115ebbba6c62905d814b3ccb refs/tags/R2-2-9 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency SNCSEQ: directory /builds/DATAnet/adurl/.cache/seq-R2-2-9 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/seq-R2-2-9 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit e5e361509df1c0d3c667872243d8f7a9894514b4, git head is e5e361509df1c0d3c667872243d8f7a9894514b4 -Found R2-2-9 of dependency SNCSEQ up-to-date in /builds/DATAnet/adurl/.cache/seq-R2-2-9 -DEBUG:__main__:Opening RELEASE.local for adding 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency SSCAN with tag R2-11-5 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/sscan.git R2-11-5' in /builds/DATAnet/adurl -f4ed91fa90d81eee5ba92d0d0c00d8d5d0b269da refs/tags/R2-11-5 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency SSCAN: directory /builds/DATAnet/adurl/.cache/sscan-R2-11-5 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/sscan-R2-11-5 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit f4ed91fa90d81eee5ba92d0d0c00d8d5d0b269da, git head is f4ed91fa90d81eee5ba92d0d0c00d8d5d0b269da -Found R2-11-5 of dependency SSCAN up-to-date in /builds/DATAnet/adurl/.cache/sscan-R2-11-5 -DEBUG:__main__:Opening RELEASE.local for adding 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency CALC with tag R3-7-3 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/calc.git R3-7-3' in /builds/DATAnet/adurl -2a3ceff7afee73fd82a2c60d637611020cb65bca refs/tags/R3-7-3 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency CALC: directory /builds/DATAnet/adurl/.cache/calc-R3-7-3 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/calc-R3-7-3 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit 2a3ceff7afee73fd82a2c60d637611020cb65bca, git head is 2a3ceff7afee73fd82a2c60d637611020cb65bca -Found R3-7-3 of dependency CALC up-to-date in /builds/DATAnet/adurl/.cache/calc-R3-7-3 -DEBUG:__main__:Opening RELEASE.local for adding 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency ASYN with tag R4-41 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/asyn.git R4-41' in /builds/DATAnet/adurl -0c70f16c4b27f6717920f40e8c8e0fb2182cac64 refs/tags/R4-41 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency ASYN: directory /builds/DATAnet/adurl/.cache/asyn-R4-41 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/asyn-R4-41 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit 0c70f16c4b27f6717920f40e8c8e0fb2182cac64, git head is 0c70f16c4b27f6717920f40e8c8e0fb2182cac64 -Found R4-41 of dependency ASYN up-to-date in /builds/DATAnet/adurl/.cache/asyn-R4-41 -DEBUG:__main__:Opening RELEASE.local for adding 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency AUTOSAVE with tag R5-7-1 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/autosave.git R5-7-1' in /builds/DATAnet/adurl -31e041c2ba4e0212f11ce5cf5541b572d1d1e887 refs/tags/R5-7-1 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency AUTOSAVE: directory /builds/DATAnet/adurl/.cache/autosave-R5-7-1 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/autosave-R5-7-1 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit 31e041c2ba4e0212f11ce5cf5541b572d1d1e887, git head is 31e041c2ba4e0212f11ce5cf5541b572d1d1e887 -Found R5-7-1 of dependency AUTOSAVE up-to-date in /builds/DATAnet/adurl/.cache/autosave-R5-7-1 -DEBUG:__main__:Opening RELEASE.local for adding 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency BUSY with tag R1-7-1 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/busy.git R1-7-1' in /builds/DATAnet/adurl -adb6da968ceac134d4d67be495e9f196c31a1b3d refs/tags/R1-7-1 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency BUSY: directory /builds/DATAnet/adurl/.cache/busy-R1-7-1 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/busy-R1-7-1 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit adb6da968ceac134d4d67be495e9f196c31a1b3d, git head is adb6da968ceac134d4d67be495e9f196c31a1b3d -Found R1-7-1 of dependency BUSY up-to-date in /builds/DATAnet/adurl/.cache/busy-R1-7-1 -DEBUG:__main__:Opening RELEASE.local for adding 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency AREA_DETECTOR with tag R3-10 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/areaDetector/areaDetector R3-10' in /builds/DATAnet/adurl -9739d42659d180f88e08104cad4d02cbd414a75f refs/tags/R3-10 -DEBUG:__main__:EXEC DONE -Cloning R3-10 of dependency AREA_DETECTOR into /builds/DATAnet/adurl/.cache/area_detector-R3-10 -DEBUG:__main__:EXEC 'git clone --quiet --depth 5 --branch R3-10 https://github.com/areaDetector/areaDetector area_detector-R3-10' in /builds/DATAnet/adurl/.cache -DEBUG:__main__:EXEC DONE -commit 9739d42659d180f88e08104cad4d02cbd414a75f -Author: Mark Rivers -Date: Sun Sep 20 15:28:44 2020 -0500 - - Notes for R3-10 -DEBUG:__main__:Setting do_recompile = True (all following modules will be recompiled -Running hook .ci-local/area_detector_hook.sh in /builds/DATAnet/adurl/.cache/area_detector-R3-10 -Reading package lists... -Building dependency tree... -Reading state information... -libxext-dev is already the newest version (2:1.3.4-0ubuntu1). -libx11-dev is already the newest version (2:1.6.9-2ubuntu1.2). -The following package was automatically installed and is no longer required: - libfwupdplugin1 -Use 'sudo apt autoremove' to remove it. -0 to upgrade, 0 to newly install, 0 to remove and 8 not to upgrade. -/builds/DATAnet/adurl/.cache/area_detector-R3-10/configure /builds/DATAnet/adurl/.cache/area_detector-R3-10 -Copying from example. -/builds/DATAnet/adurl/.cache/area_detector-R3-10 -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/area_detector-R3-10 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Writing hash of checked-out dependency (9739d42659d180f88e08104cad4d02cbd414a75f) to marker file -DEBUG:__main__:Opening RELEASE.local for adding 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency ADSUPPORT with tag master -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/pheest/ADSupport master' in /builds/DATAnet/adurl -1b5b589b560b90fb37d152ed7440aef4162119b5 refs/heads/master -DEBUG:__main__:EXEC DONE -Cloning master of dependency ADSUPPORT into /builds/DATAnet/adurl/.cache/adsupport-master -DEBUG:__main__:EXEC 'git clone --quiet --depth 5 --branch master https://github.com/pheest/ADSupport adsupport-master' in /builds/DATAnet/adurl/.cache -DEBUG:__main__:EXEC DONE -commit 1b5b589b560b90fb37d152ed7440aef4162119b5 -Author: Heesterman, Peter J -Date: Thu May 19 16:55:57 2022 +0100 - - Need to define XMLPUBFUN __declspec(dllimport) for DLL importing builds. - There's no need for any difference between Visual Studio and MingW build defines. -DEBUG:__main__:Setting do_recompile = True (all following modules will be recompiled -Running hook .ci-local/adsupport_hook.sh in /builds/DATAnet/adurl/.cache/adsupport-master -Reading package lists... -Building dependency tree... -Reading state information... -libxext-dev is already the newest version (2:1.3.4-0ubuntu1). -libx11-dev is already the newest version (2:1.6.9-2ubuntu1.2). -The following package was automatically installed and is no longer required: - libfwupdplugin1 -Use 'sudo apt autoremove' to remove it. -0 to upgrade, 0 to newly install, 0 to remove and 8 not to upgrade. -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/adsupport-master -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Writing hash of checked-out dependency (1b5b589b560b90fb37d152ed7440aef4162119b5) to marker file -DEBUG:__main__:Opening RELEASE.local for adding 'ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency ADCORE with tag R3-10 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/areaDetector/ADCore R3-10' in /builds/DATAnet/adurl -7fd8c0f2f3c96083193d5eaee61e85ea5f5e9fe1 refs/tags/R3-10 -DEBUG:__main__:EXEC DONE -Cloning R3-10 of dependency ADCORE into /builds/DATAnet/adurl/.cache/adcore-R3-10 -DEBUG:__main__:EXEC 'git clone --quiet --depth 5 --branch R3-10 https://github.com/areaDetector/ADCore adcore-R3-10' in /builds/DATAnet/adurl/.cache -DEBUG:__main__:EXEC DONE -commit 7fd8c0f2f3c96083193d5eaee61e85ea5f5e9fe1 -Author: Mark Rivers -Date: Sun Sep 20 12:35:28 2020 -0500 - - Notes for R3-10 -DEBUG:__main__:Setting do_recompile = True (all following modules will be recompiled -Running hook .ci-local/adcore_hook.sh in /builds/DATAnet/adurl/.cache/adcore-R3-10 -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/adcore-R3-10 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Writing hash of checked-out dependency (7fd8c0f2f3c96083193d5eaee61e85ea5f5e9fe1) to marker file -DEBUG:__main__:Opening RELEASE.local for adding 'ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-10' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' -DEBUG:__main__:Writing line to RELEASE.local: 'ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-10' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Setting up the build environment -DEBUG:__main__:Using EPICS Base at /builds/DATAnet/adurl/.cache/base-R7.0.3.1 -DEBUG:__main__:Running script to detect EPICS host architecture in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 -DEBUG:__main__:/builds/DATAnet/adurl/.cache/base-R7.0.3.1/src/tools/EpicsHostArch.pl returned: linux-x86_64 -DEBUG:__main__:Check if EPICS Base is a 3.14 series: False -DEBUG:__main__:Check if make is a 3.x series: False -EPICS_HOST_ARCH = linux-x86_64 -$ make --version -DEBUG:__main__:EXEC 'make --version' in /builds/DATAnet/adurl -GNU Make 4.2.1 -Built for x86_64-pc-linux-gnu -Copyright (C) 1988-2016 Free Software Foundation, Inc. -Licence GPLv3+: GNU GPL version 3 or later -This is free software: you are free to change and redistribute it. -There is NO WARRANTY, to the extent permitted by law. -DEBUG:__main__:EXEC DONE -$ perl --version - -This is perl 5, version 30, subversion 0 (v5.30.0) built for x86_64-linux-gnu-thread-multi -(with 50 registered patches, see perl -V for more detail) - -Copyright 1987-2019, Larry Wall - -Perl may be copied only under the terms of either the Artistic License or the -GNU General Public License, which may be found in the Perl 5 source kit. - -Complete documentation for Perl, including FAQ lists, should be found on -this system using "man perl" or "perldoc perl". If you have access to the -Internet, point your browser at http://www.perl.org/, the Perl Home Page. - -$ gcc --version -gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 -Copyright (C) 2019 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. - -$ g++ --version -g++ (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 -Copyright (C) 2019 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. - -SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9 -SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5 -CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3 -ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41 -AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1 -BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1 -AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10 -ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master -ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-10 -EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1 - --include $(TOP)/../RELEASE.local - --include $(TOP)/../RELEASE.local - -9739d42659d180f88e08104cad4d02cbd414a75f - -7fd8c0f2f3c96083193d5eaee61e85ea5f5e9fe1 - -1b5b589b560b90fb37d152ed7440aef4162119b5 - --include $(TOP)/../RELEASE.local - -DEBUG:__main__:EXEC 'make -j2 -Otarget' in /builds/DATAnet/adurl/.cache/area_detector-R3-10 -Building dependency AREA_DETECTOR in /builds/DATAnet/adurl/.cache/area_detector-R3-10 -make -C /builds/DATAnet/adurl/.cache/adsupport-master install -make -C ./configure install -make -C ./supportApp install -make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../.. -make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' -make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../.. -make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' -make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' -mkdir -p O.Common -make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' -make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ - T_A=linux-x86_64 install -make -C ./jpegSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease -make -C O.windows-x64-mingw -f ../Makefile TOP=../.. \ - T_A=windows-x64-mingw install -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompressJPEG.d ../decompressJPEG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemnobs.d ../jmemnobs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemmgr.d ../jmemmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jutils.d ../jutils.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant2.d ../jquant2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant1.d ../jquant1.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctfst.d ../jidctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctint.d ../jidctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctflt.d ../jidctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctint.d ../jfdctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctfst.d ../jfdctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctflt.d ../jfdctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jerror.d ../jerror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdtrans.d ../jdtrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdsample.d ../jdsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdpostct.d ../jdpostct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmerge.d ../jdmerge.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmaster.d ../jdmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmarker.d ../jdmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmainct.d ../jdmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdinput.d ../jdinput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdhuff.d ../jdhuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jddctmgr.d ../jddctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcolor.d ../jdcolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcoefct.d ../jdcoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatasrc.d ../jdatasrc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatadst.d ../jdatadst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdarith.d ../jdarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapistd.d ../jdapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapimin.d ../jdapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jctrans.d ../jctrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcsample.d ../jcsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcprepct.d ../jcprepct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcparam.d ../jcparam.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcomapi.d ../jcomapi.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmaster.d ../jcmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmarker.d ../jcmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmainct.d ../jcmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcinit.d ../jcinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jchuff.d ../jchuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcdctmgr.d ../jcdctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccolor.d ../jccolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccoefct.d ../jccoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcarith.d ../jcarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapistd.d ../jcapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapimin.d ../jcapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make -C ./zlibSrc install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jaricom.d ../jaricom.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zutil.d ../zutil.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uncompr.d ../uncompr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -mkdir ../../../include -mkdir ../../../include/os -mkdir ../../../include/os/Linux -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF trees.d ../trees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inftrees.d ../inftrees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inflate.d ../inflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inffast.d ../inffast.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF infback.d ../infback.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzwrite.d ../gzwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzread.d ../gzread.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzlib.d ../gzlib.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzclose.d ../gzclose.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF deflate.d ../deflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crc32.d ../crc32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d ../compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF adler32.d ../adler32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../decompressJPEG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jaricom.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../adler32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../crc32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jccoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jccolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../deflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcdctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzclose.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzlib.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzread.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jchuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../infback.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../inffast.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcomapi.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../inflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcparam.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../inftrees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcprepct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../trees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../uncompr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../zutil.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jctrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -/usr/bin/ar -rc libzlib.a adler32.o compress.o crc32.o deflate.o gzclose.o gzlib.o gzread.o gzwrite.o infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -/usr/bin/ranlib libzlib.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -g++ -o libzlib.so -shared -fPIC -Wl,-hlibzlib.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 adler32.o compress.o crc32.o deflate.o gzclose.o gzlib.o gzread.o gzwrite.o infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdatadst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zutil.d -MT zutil.obj ../zutil.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uncompr.d -MT uncompr.obj ../uncompr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdatasrc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF trees.d -MT trees.obj ../trees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inftrees.d -MT inftrees.obj ../inftrees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inflate.d -MT inflate.obj ../inflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inffast.d -MT inffast.obj ../inffast.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF infback.d -MT infback.obj ../infback.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzwrite.d -MT gzwrite.obj ../gzwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzread.d -MT gzread.obj ../gzread.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzlib.d -MT gzlib.obj ../gzlib.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzclose.d -MT gzclose.obj ../gzclose.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF deflate.d -MT deflate.obj ../deflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crc32.d -MT crc32.obj ../crc32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d -MT compress.obj ../compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdcoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF adler32.d -MT adler32.obj ../adler32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -mkdir ../../../include/os/WIN32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdcolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o adler32.obj -c ../adler32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o compress.obj -c ../compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jddctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o crc32.obj -c ../crc32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdhuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdinput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o deflate.obj -c ../deflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o gzclose.obj -c ../gzclose.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o gzlib.obj -c ../gzlib.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o gzread.obj -c ../gzread.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o gzwrite.obj -c ../gzwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o infback.obj -c ../infback.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmerge.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdpostct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o inffast.obj -c ../inffast.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdtrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jerror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jfdctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jfdctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o inflate.obj -c ../inflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o inftrees.obj -c ../inftrees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o trees.obj -c ../trees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o uncompr.obj -c ../uncompr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zutil.obj -c ../zutil.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o zlib.dll -shared -Wl,--out-implib,libzlib.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -mkdir ../../../bin -mkdir ../../../bin/windows-x64-mingw -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make -C ./szipSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF sz_api.d ../sz_api.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF rice.d ../rice.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d ../encoding.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jfdctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../encoding.c -../encoding.c:16:15: warning: ‘szip_encoder_status’ initialized and declared ‘extern’ - 16 | extern char * szip_encoder_status = "SZIP ENCODER ENABLED"; - | ^~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jidctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jidctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jidctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jquant1.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jquant2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jutils.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jmemmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jmemnobs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../rice.c -../rice.c: In function ‘encode_scanline’: -../rice.c:1478:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1478 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1479:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1479 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1480:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1480 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1481:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1481 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1482:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1482 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1483:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1483 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1484:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1484 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1492:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1492 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1519:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1519 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1520:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1520 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1521:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1521 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1522:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1522 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1523:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1523 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1524:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1524 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1525:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1525 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1533:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1533 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1560:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1560 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1561:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1561 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1562:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1562 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1563:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1563 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1567:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1567 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1568:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1568 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1576:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1576 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1603:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1603 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1604:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1604 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1605:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1605 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1609:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1609 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1610:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1610 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1611:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1611 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1619:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1619 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1646:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1646 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1647:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1647 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1651:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1651 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1652:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1652 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1656:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1656 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1664:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1664 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1689:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1689 | value = (value << 6) | *s++ & 0x3f; - | ~~~~~^~~~~~ -../rice.c:1706:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1706 | value = (value << 7) | *s++ & 0x7f; - | ~~~~~^~~~~~ -../rice.c:1723:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1723 | value = (value << 8) | *s++ & 0xff; - | ~~~~~^~~~~~ -../rice.c: In function ‘rice_decode’: -../rice.c:4977:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4977 | *(s+1) = (*(s+1) << 1) | (data_word >> 30) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4978:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4978 | *(s+2) = (*(s+2) << 1) | (data_word >> 29) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4979:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4979 | *(s+3) = (*(s+3) << 1) | (data_word >> 28) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4980:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4980 | *(s+4) = (*(s+4) << 1) | (data_word >> 27) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4981:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4981 | *(s+5) = (*(s+5) << 1) | (data_word >> 26) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4982:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4982 | *(s+6) = (*(s+6) << 1) | (data_word >> 25) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4983:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4983 | *(s+7) = (*(s+7) << 1) | (data_word >> 24) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4998:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4998 | *(s+0) = (*(s+0) << 2) | (data_word >> 30) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4999:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4999 | *(s+1) = (*(s+1) << 2) | (data_word >> 28) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5000:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5000 | *(s+2) = (*(s+2) << 2) | (data_word >> 26) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5001:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5001 | *(s+3) = (*(s+3) << 2) | (data_word >> 24) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5002:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5002 | *(s+4) = (*(s+4) << 2) | (data_word >> 22) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5003:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5003 | *(s+5) = (*(s+5) << 2) | (data_word >> 20) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5004:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5004 | *(s+6) = (*(s+6) << 2) | (data_word >> 18) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5005:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5005 | *(s+7) = (*(s+7) << 2) | (data_word >> 16) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5017:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5017 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5018:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5018 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5019:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5019 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5020:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5020 | *(s+3) = (*(s+3) << 3) | (data_word >> 20) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5021:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5021 | *(s+4) = (*(s+4) << 3) | (data_word >> 17) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5031:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5031 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5032:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5032 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5033:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5033 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5048:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5048 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5049:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5049 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5050:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5050 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5051:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5051 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5058:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5058 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5059:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5059 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5060:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5060 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5061:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5061 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5073:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5073 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5074:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5074 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5075:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5075 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5085:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5085 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5086:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5086 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5087:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5087 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5097:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5097 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5098:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5098 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5113:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5113 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5114:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5114 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5124:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5124 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5125:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5125 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5135:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5135 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5136:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5136 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5146:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5146 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5147:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5147 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5162:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5162 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5163:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5163 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5173:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5173 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5174:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5174 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5184:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5184 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5185:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5185 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5195:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5195 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5196:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5196 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5211:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5211 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5212:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5212 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5219:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5219 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5220:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5220 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5227:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5227 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5228:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5228 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5235:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5235 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5236:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5236 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5358:8: warning: ‘ext2_bit’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 5358 | if (ext2_bit) - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -/usr/bin/ar -rc libjpeg.a jaricom.o jcapimin.o jcapistd.o jcarith.o jccoefct.o jccolor.o jcdctmgr.o jchuff.o jcinit.o jcmainct.o jcmarker.o jcmaster.o jcomapi.o jcparam.o jcprepct.o jcsample.o jctrans.o jdapimin.o jdapistd.o jdarith.o jdatadst.o jdatasrc.o jdcoefct.o jdcolor.o jddctmgr.o jdhuff.o jdinput.o jdmainct.o jdmarker.o jdmaster.o jdmerge.o jdpostct.o jdsample.o jdtrans.o jerror.o jfdctflt.o jfdctfst.o jfdctint.o jidctflt.o jidctfst.o jidctint.o jquant1.o jquant2.o jutils.o jmemmgr.o jmemnobs.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -/usr/bin/ranlib libjpeg.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../sz_api.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -g++ -o libjpeg.so -shared -fPIC -Wl,-hlibjpeg.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jaricom.o jcapimin.o jcapistd.o jcarith.o jccoefct.o jccolor.o jcdctmgr.o jchuff.o jcinit.o jcmainct.o jcmarker.o jcmaster.o jcomapi.o jcparam.o jcprepct.o jcsample.o jctrans.o jdapimin.o jdapistd.o jdarith.o jdatadst.o jdatasrc.o jdcoefct.o jdcolor.o jddctmgr.o jdhuff.o jdinput.o jdmainct.o jdmarker.o jdmaster.o jdmerge.o jdpostct.o jdsample.o jdtrans.o jerror.o jfdctflt.o jfdctfst.o jfdctint.o jidctflt.o jidctfst.o jidctint.o jquant1.o jquant2.o jutils.o jmemmgr.o jmemnobs.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -/usr/bin/ar -rc libszip.a encoding.o rice.o sz_api.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -/usr/bin/ranlib libszip.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -g++ -o libszip.so -shared -fPIC -Wl,-hlibszip.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 encoding.o rice.o sz_api.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -/usr/bin/ar -rc libdecompressJPEG.a decompressJPEG.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -/usr/bin/ranlib libdecompressJPEG.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -g++ -o libdecompressJPEG.so -shared -fPIC -Wl,-hlibdecompressJPEG.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 decompressJPEG.o -ljpeg -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF sz_api.d -MT sz_api.obj ../sz_api.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF rice.d -MT rice.obj ../rice.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompressJPEG.d -MT decompressJPEG.obj ../decompressJPEG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemnobs.d -MT jmemnobs.obj ../jmemnobs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d -MT encoding.obj ../encoding.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemmgr.d -MT jmemmgr.obj ../jmemmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jutils.d -MT jutils.obj ../jutils.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant2.d -MT jquant2.obj ../jquant2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant1.d -MT jquant1.obj ../jquant1.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctint.d -MT jidctint.obj ../jidctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctfst.d -MT jidctfst.obj ../jidctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctflt.d -MT jidctflt.obj ../jidctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctint.d -MT jfdctint.obj ../jfdctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctfst.d -MT jfdctfst.obj ../jfdctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctflt.d -MT jfdctflt.obj ../jfdctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o encoding.obj -c ../encoding.c -../encoding.c:16:15: warning: ‘szip_encoder_status’ initialized and declared ‘extern’ - 16 | extern char * szip_encoder_status = "SZIP ENCODER ENABLED"; - | ^~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jerror.d -MT jerror.obj ../jerror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdtrans.d -MT jdtrans.obj ../jdtrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdsample.d -MT jdsample.obj ../jdsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdpostct.d -MT jdpostct.obj ../jdpostct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmerge.d -MT jdmerge.obj ../jdmerge.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmaster.d -MT jdmaster.obj ../jdmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmarker.d -MT jdmarker.obj ../jdmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmainct.d -MT jdmainct.obj ../jdmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdinput.d -MT jdinput.obj ../jdinput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdhuff.d -MT jdhuff.obj ../jdhuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jddctmgr.d -MT jddctmgr.obj ../jddctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcolor.d -MT jdcolor.obj ../jdcolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcoefct.d -MT jdcoefct.obj ../jdcoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatasrc.d -MT jdatasrc.obj ../jdatasrc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatadst.d -MT jdatadst.obj ../jdatadst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdarith.d -MT jdarith.obj ../jdarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapistd.d -MT jdapistd.obj ../jdapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapimin.d -MT jdapimin.obj ../jdapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jctrans.d -MT jctrans.obj ../jctrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcsample.d -MT jcsample.obj ../jcsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcprepct.d -MT jcprepct.obj ../jcprepct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcparam.d -MT jcparam.obj ../jcparam.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcomapi.d -MT jcomapi.obj ../jcomapi.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmaster.d -MT jcmaster.obj ../jcmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmarker.d -MT jcmarker.obj ../jcmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmainct.d -MT jcmainct.obj ../jcmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcinit.d -MT jcinit.obj ../jcinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jchuff.d -MT jchuff.obj ../jchuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcdctmgr.d -MT jcdctmgr.obj ../jcdctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccolor.d -MT jccolor.obj ../jccolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccoefct.d -MT jccoefct.obj ../jccoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcarith.d -MT jcarith.obj ../jcarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapistd.d -MT jcapistd.obj ../jcapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapimin.d -MT jcapimin.obj ../jcapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jaricom.d -MT jaricom.obj ../jaricom.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Circular libjpeg.dll.a <- decompressJPEG.dll dependency dropped. -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jaricom.obj -c ../jaricom.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcapimin.obj -c ../jcapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcapistd.obj -c ../jcapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcarith.obj -c ../jcarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jccoefct.obj -c ../jccoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jccolor.obj -c ../jccolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcdctmgr.obj -c ../jcdctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jchuff.obj -c ../jchuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcinit.obj -c ../jcinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcmainct.obj -c ../jcmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o rice.obj -c ../rice.c -../rice.c: In function ‘encode_scanline’: -../rice.c:1478:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1478 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1479:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1479 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1480:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1480 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1481:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1481 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1482:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1482 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1483:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1483 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1484:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1484 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1492:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1492 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1519:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1519 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1520:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1520 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1521:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1521 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1522:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1522 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1523:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1523 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1524:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1524 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1525:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1525 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1533:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1533 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1560:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1560 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1561:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1561 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1562:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1562 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1563:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1563 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1567:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1567 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1568:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1568 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1576:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1576 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1603:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1603 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1604:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1604 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1605:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1605 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1609:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1609 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1610:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1610 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1611:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1611 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1619:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1619 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1646:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1646 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1647:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1647 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1651:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1651 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1652:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1652 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1656:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1656 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1664:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1664 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1689:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1689 | value = (value << 6) | *s++ & 0x3f; - | ~~~~~^~~~~~ -../rice.c:1706:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1706 | value = (value << 7) | *s++ & 0x7f; - | ~~~~~^~~~~~ -../rice.c:1723:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1723 | value = (value << 8) | *s++ & 0xff; - | ~~~~~^~~~~~ -../rice.c: In function ‘rice_decode’: -../rice.c:4977:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4977 | *(s+1) = (*(s+1) << 1) | (data_word >> 30) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4978:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4978 | *(s+2) = (*(s+2) << 1) | (data_word >> 29) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4979:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4979 | *(s+3) = (*(s+3) << 1) | (data_word >> 28) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4980:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4980 | *(s+4) = (*(s+4) << 1) | (data_word >> 27) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4981:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4981 | *(s+5) = (*(s+5) << 1) | (data_word >> 26) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4982:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4982 | *(s+6) = (*(s+6) << 1) | (data_word >> 25) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4983:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4983 | *(s+7) = (*(s+7) << 1) | (data_word >> 24) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4998:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4998 | *(s+0) = (*(s+0) << 2) | (data_word >> 30) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4999:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4999 | *(s+1) = (*(s+1) << 2) | (data_word >> 28) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5000:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5000 | *(s+2) = (*(s+2) << 2) | (data_word >> 26) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5001:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5001 | *(s+3) = (*(s+3) << 2) | (data_word >> 24) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5002:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5002 | *(s+4) = (*(s+4) << 2) | (data_word >> 22) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5003:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5003 | *(s+5) = (*(s+5) << 2) | (data_word >> 20) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5004:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5004 | *(s+6) = (*(s+6) << 2) | (data_word >> 18) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5005:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5005 | *(s+7) = (*(s+7) << 2) | (data_word >> 16) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5017:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5017 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5018:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5018 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5019:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5019 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5020:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5020 | *(s+3) = (*(s+3) << 3) | (data_word >> 20) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5021:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5021 | *(s+4) = (*(s+4) << 3) | (data_word >> 17) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5031:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5031 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5032:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5032 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5033:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5033 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5048:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5048 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5049:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5049 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5050:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5050 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5051:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5051 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5058:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5058 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5059:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5059 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5060:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5060 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5061:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5061 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5073:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5073 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5074:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5074 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5075:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5075 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5085:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5085 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5086:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5086 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5087:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5087 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5097:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5097 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5098:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5098 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5113:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5113 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5114:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5114 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5124:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5124 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5125:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5125 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5135:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5135 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5136:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5136 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5146:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5146 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5147:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5147 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5162:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5162 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5163:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5163 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5173:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5173 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5174:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5174 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5184:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5184 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5185:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5185 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5195:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5195 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5196:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5196 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5211:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5211 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5212:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5212 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5219:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5219 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5220:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5220 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5227:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5227 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5228:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5228 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5235:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5235 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5236:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5236 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5358:8: warning: ‘ext2_bit’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 5358 | if (ext2_bit) - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o sz_api.obj -c ../sz_api.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o szip.dll -shared -Wl,--out-implib,libszip.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ encoding.obj rice.obj sz_api.obj -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -make -C ./bitshuffleSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcmarker.obj -c ../jcmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Nothing to be done for 'install'. -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Nothing to be done for 'install'. -make -C ./cbfSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF md5c.d ../md5c.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_ws.d ../cbf_ws.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_write_binary.d ../cbf_write_binary.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_write.d ../cbf_write.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_uncompressed.d ../cbf_uncompressed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcmaster.obj -c ../jcmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_tree.d ../cbf_tree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_stx.d ../cbf_stx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_string.d ../cbf_string.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcomapi.obj -c ../jcomapi.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_simple.d ../cbf_simple.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_read_mime.d ../cbf_read_mime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_read_binary.d ../cbf_read_binary.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_predictor.d ../cbf_predictor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_packed.d ../cbf_packed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_lex.d ../cbf_lex.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_getopt.d ../cbf_getopt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_file.d ../cbf_file.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_context.d ../cbf_context.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_compress.d ../cbf_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_codes.d ../cbf_codes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_canonical.d ../cbf_canonical.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_byte_offset.d ../cbf_byte_offset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcparam.obj -c ../jcparam.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_binary.d ../cbf_binary.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_ascii.d ../cbf_ascii.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_alloc.d ../cbf_alloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf.d ../cbf.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcprepct.obj -c ../jcprepct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcsample.obj -c ../jcsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jctrans.obj -c ../jctrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdapimin.obj -c ../jdapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdapistd.obj -c ../jdapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdarith.obj -c ../jdarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdatadst.obj -c ../jdatadst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdatasrc.obj -c ../jdatasrc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdcoefct.obj -c ../jdcoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdcolor.obj -c ../jdcolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jddctmgr.obj -c ../jddctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf.c -../cbf.c: In function ‘cbf_validate’: -../cbf.c:7388:8: warning: ignoring return value of ‘fscanf’, declared with attribute warn_unused_result [-Wunused-result] - 7388 | fscanf(fout, "%s", output); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cbf.c:7493:8: warning: ignoring return value of ‘fscanf’, declared with attribute warn_unused_result [-Wunused-result] - 7493 | fscanf(fout, "%s", output); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cbf.c: In function ‘cbf_drel’: -../cbf.c:8417:2: warning: ignoring return value of ‘system’, declared with attribute warn_unused_result [-Wunused-result] - 8417 | system(preprocess); - | ^~~~~~~~~~~~~~~~~~ -../cbf.c:8425:2: warning: ignoring return value of ‘system’, declared with attribute warn_unused_result [-Wunused-result] - 8425 | system(evaluate); - | ^~~~~~~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from ../cbf.c:264: -In function ‘strncpy’, - inlined from ‘cbf_validate’ at ../cbf.c:7362:6: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 80 bytes from a string of length 81 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘cbf_validate’ at ../cbf.c:7441:19: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 80 bytes from a string of length 81 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_alloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdhuff.obj -c ../jdhuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_ascii.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdinput.obj -c ../jdinput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_binary.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdmainct.obj -c ../jdmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_byte_offset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdmarker.obj -c ../jdmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_canonical.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdmaster.obj -c ../jdmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdmerge.obj -c ../jdmerge.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdpostct.obj -c ../jdpostct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdsample.obj -c ../jdsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdtrans.obj -c ../jdtrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jerror.obj -c ../jerror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jfdctflt.obj -c ../jfdctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jfdctfst.obj -c ../jfdctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_codes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_context.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_file.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_getopt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jfdctint.obj -c ../jfdctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jidctflt.obj -c ../jidctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_lex.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jidctfst.obj -c ../jidctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_packed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_predictor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_read_binary.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_read_mime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_simple.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_string.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jidctint.obj -c ../jidctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jquant1.obj -c ../jquant1.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_stx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_tree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_uncompressed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jquant2.obj -c ../jquant2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_write.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jutils.obj -c ../jutils.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_write_binary.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jmemmgr.obj -c ../jmemmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jmemnobs.obj -c ../jmemnobs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o decompressJPEG.obj -c ../decompressJPEG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o jpeg.dll -shared -Wl,--out-implib,libjpeg.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ jaricom.obj jcapimin.obj jcapistd.obj jcarith.obj jccoefct.obj jccolor.obj jcdctmgr.obj jchuff.obj jcinit.obj jcmainct.obj jcmarker.obj jcmaster.obj jcomapi.obj jcparam.obj jcprepct.obj jcsample.obj jctrans.obj jdapimin.obj jdapistd.obj jdarith.obj jdatadst.obj jdatasrc.obj jdcoefct.obj jdcolor.obj jddctmgr.obj jdhuff.obj jdinput.obj jdmainct.obj jdmarker.obj jdmaster.obj jdmerge.obj jdpostct.obj jdsample.obj jdtrans.obj jerror.obj jfdctflt.obj jfdctfst.obj jfdctint.obj jidctflt.obj jidctfst.obj jidctint.obj jquant1.obj jquant2.obj jutils.obj jmemmgr.obj jmemnobs.obj -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_ws.c -../cbf_ws.c: In function ‘cbf_find_bracketstring’: -../cbf_ws.c:1087:26: warning: ‘tokentype’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1087 | tokentype[depth-1]= *stringtype; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o decompressJPEG.dll -shared -Wl,--out-implib,libdecompressJPEG.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ decompressJPEG.obj -ljpeg -lws2_32 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make -C ./bloscSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../md5c.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle.d ../../../supportApp/bloscSrc/blosc/shuffle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bitshuffle-generic.d ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle-generic.d ../../../supportApp/bloscSrc/blosc/shuffle-generic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -/usr/bin/ar -rc libcbfad.a cbf.o cbf_alloc.o cbf_ascii.o cbf_binary.o cbf_byte_offset.o cbf_canonical.o cbf_codes.o cbf_compress.o cbf_context.o cbf_file.o cbf_getopt.o cbf_lex.o cbf_packed.o cbf_predictor.o cbf_read_binary.o cbf_read_mime.o cbf_simple.o cbf_string.o cbf_stx.o cbf_tree.o cbf_uncompressed.o cbf_write.o cbf_write_binary.o cbf_ws.o md5c.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -/usr/bin/ranlib libcbfad.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosclz.d ../../../supportApp/bloscSrc/blosc/blosclz.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc.d ../../../supportApp/bloscSrc/blosc/blosc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -g++ -o libcbfad.so -shared -fPIC -Wl,-hlibcbfad.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 cbf.o cbf_alloc.o cbf_ascii.o cbf_binary.o cbf_byte_offset.o cbf_canonical.o cbf_codes.o cbf_compress.o cbf_context.o cbf_file.o cbf_getopt.o cbf_lex.o cbf_packed.o cbf_predictor.o cbf_read_binary.o cbf_read_mime.o cbf_simple.o cbf_string.o cbf_stx.o cbf_tree.o cbf_uncompressed.o cbf_write.o cbf_write_binary.o cbf_ws.o md5c.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4hc.d ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4.d ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Nothing to be done for 'install'. -make -C ./tiffSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_unix.d ../tif_unix.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_zip.d ../tif_zip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_write.d ../tif_write.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_warning.d ../tif_warning.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_version.d ../tif_version.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_tile.d ../tif_tile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-stubs-internal.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-sinksource.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_thunder.d ../tif_thunder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_swab.d ../tif_swab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_strip.d ../tif_strip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-c.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_read.d ../tif_read.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_print.d ../tif_print.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_predict.d ../tif_predict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_decompress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_pixarlog.d ../tif_pixarlog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_decompress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_packbits.d ../tif_packbits.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstdmt_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_open.d ../tif_open.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_ojpeg.d ../tif_ojpeg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_next.d ../tif_next.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_lzw.d ../tif_lzw.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_common.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xxhash.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_luv.d ../tif_luv.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threading.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg_12.d ../tif_jpeg_12.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pool.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_decompress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg.d ../tif_jpeg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error_private.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jbig.d ../tif_jbig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_getimage.d ../tif_getimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_flush.d ../tif_flush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3sm.d ../tif_fax3sm.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3.d ../tif_fax3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_extension.d ../tif_extension.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entropy_common.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_error.d ../tif_error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dumpmode.d ../tif_dumpmode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirwrite.d ../tif_dirwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirread.d ../tif_dirread.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirinfo.d ../tif_dirinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dir.d ../tif_dir.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_compress.d ../tif_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_color.d ../tif_color.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_codec.d ../tif_codec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_close.d ../tif_close.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_aux.d ../tif_aux.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_aux.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_close.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_codec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_color.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dir.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dirinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dirread.c -../tif_dirread.c: In function ‘EstimateStripByteCounts’: -../tif_dirread.c:4272:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 4272 | if( !_TIFFFillStriles( tif ) ) - | ^~ -../tif_dirread.c:4275:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 4275 | if (td->td_stripbytecount) - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dirwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dumpmode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_extension.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_fax3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_fax3sm.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_flush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_getimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_jbig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_jpeg.c -In file included from ../../../include/os/Linux/jpeglib.h:27, - from ../tif_jpeg.c:88: -../../../include/os/Linux/jmorecfg.h:248: warning: "EXTERN" redefined - 248 | #define EXTERN(type) extern type - | -In file included from ../tiffiop.h:66, - from ../tif_jpeg.c:30: -../os/default/tiffio.h:91: note: this is the location of the previous definition - 91 | # define EXTERN extern - | -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_jpeg_12.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_luv.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_lzw.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_next.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_ojpeg.c -In file included from ../../../include/os/Linux/jpeglib.h:27, - from ../tif_ojpeg.c:217: -../../../include/os/Linux/jmorecfg.h:248: warning: "EXTERN" redefined - 248 | #define EXTERN(type) extern type - | -In file included from ../tiffiop.h:66, - from ../tif_ojpeg.c:126: -../os/default/tiffio.h:91: note: this is the location of the previous definition - 91 | # define EXTERN extern - | -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_open.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_packbits.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_pixarlog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_predict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_print.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_read.c -../tif_read.c: In function ‘TIFFFillStrip’: -../tif_read.c:495:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 495 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) - | ^~ -../tif_read.c:498:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 498 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) - | ^~ -../tif_read.c: In function ‘TIFFFillTile’: -../tif_read.c:798:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 798 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) - | ^~ -../tif_read.c:801:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 801 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) - | ^~ -../tif_read.c: In function ‘TIFFStartStrip’: -../tif_read.c:960:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 960 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) - | ^~ -../tif_read.c:963:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 963 | if ((tif->tif_flags & TIFF_CODERSETUP) == 0) { - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_strip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_swab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_thunder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_tile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_version.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_warning.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::Append(const char*, size_t)’: -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1013:33: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long unsigned int’} [-Wsign-compare] - 1013 | if (curr_iov_index_ + 1 >= output_iov_count_) { - | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::AppendFromSelf(size_t, size_t)’: -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1095:35: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long unsigned int’} [-Wsign-compare] - 1095 | if (curr_iov_index_ + 1 >= output_iov_count_) { - | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: At global scope: -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:567:13: warning: ‘void snappy::ComputeTable()’ defined but not used [-Wunused-function] - 567 | static void ComputeTable() { - | ^~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_write.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_zip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_unix.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -/usr/bin/ar -rc libtiff.a tif_aux.o tif_close.o tif_codec.o tif_color.o tif_compress.o tif_dir.o tif_dirinfo.o tif_dirread.o tif_dirwrite.o tif_dumpmode.o tif_error.o tif_extension.o tif_fax3.o tif_fax3sm.o tif_flush.o tif_getimage.o tif_jbig.o tif_jpeg.o tif_jpeg_12.o tif_luv.o tif_lzw.o tif_next.o tif_ojpeg.o tif_open.o tif_packbits.o tif_pixarlog.o tif_predict.o tif_print.o tif_read.o tif_strip.o tif_swab.o tif_thunder.o tif_tile.o tif_version.o tif_warning.o tif_write.o tif_zip.o tif_unix.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -/usr/bin/ranlib libtiff.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -g++ -o libtiff.so -shared -fPIC -Wl,-hlibtiff.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 tif_aux.o tif_close.o tif_codec.o tif_color.o tif_compress.o tif_dir.o tif_dirinfo.o tif_dirread.o tif_dirwrite.o tif_dumpmode.o tif_error.o tif_extension.o tif_fax3.o tif_fax3sm.o tif_flush.o tif_getimage.o tif_jbig.o tif_jpeg.o tif_jpeg_12.o tif_luv.o tif_lzw.o tif_next.o tif_ojpeg.o tif_open.o tif_packbits.o tif_pixarlog.o tif_predict.o tif_print.o tif_read.o tif_strip.o tif_swab.o tif_thunder.o tif_tile.o tif_version.o tif_warning.o tif_write.o tif_zip.o tif_unix.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_win32.d -MT tif_win32.obj ../tif_win32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_zip.d -MT tif_zip.obj ../tif_zip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_write.d -MT tif_write.obj ../tif_write.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_warning.d -MT tif_warning.obj ../tif_warning.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_version.d -MT tif_version.obj ../tif_version.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_tile.d -MT tif_tile.obj ../tif_tile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_thunder.d -MT tif_thunder.obj ../tif_thunder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_swab.d -MT tif_swab.obj ../tif_swab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_strip.d -MT tif_strip.obj ../tif_strip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_read.d -MT tif_read.obj ../tif_read.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_print.d -MT tif_print.obj ../tif_print.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_predict.d -MT tif_predict.obj ../tif_predict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_pixarlog.d -MT tif_pixarlog.obj ../tif_pixarlog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_packbits.d -MT tif_packbits.obj ../tif_packbits.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_open.d -MT tif_open.obj ../tif_open.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_ojpeg.d -MT tif_ojpeg.obj ../tif_ojpeg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_next.d -MT tif_next.obj ../tif_next.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_lzw.d -MT tif_lzw.obj ../tif_lzw.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_luv.d -MT tif_luv.obj ../tif_luv.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg_12.d -MT tif_jpeg_12.obj ../tif_jpeg_12.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg.d -MT tif_jpeg.obj ../tif_jpeg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jbig.d -MT tif_jbig.obj ../tif_jbig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_getimage.d -MT tif_getimage.obj ../tif_getimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_flush.d -MT tif_flush.obj ../tif_flush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3sm.d -MT tif_fax3sm.obj ../tif_fax3sm.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3.d -MT tif_fax3.obj ../tif_fax3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_extension.d -MT tif_extension.obj ../tif_extension.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_error.d -MT tif_error.obj ../tif_error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dumpmode.d -MT tif_dumpmode.obj ../tif_dumpmode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirwrite.d -MT tif_dirwrite.obj ../tif_dirwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirread.d -MT tif_dirread.obj ../tif_dirread.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirinfo.d -MT tif_dirinfo.obj ../tif_dirinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dir.d -MT tif_dir.obj ../tif_dir.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_compress.d -MT tif_compress.obj ../tif_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_color.d -MT tif_color.obj ../tif_color.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_codec.d -MT tif_codec.obj ../tif_codec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_close.d -MT tif_close.obj ../tif_close.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_aux.d -MT tif_aux.obj ../tif_aux.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_aux.obj -c ../tif_aux.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_close.obj -c ../tif_close.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_codec.obj -c ../tif_codec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_color.obj -c ../tif_color.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_compress.obj -c ../tif_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dir.obj -c ../tif_dir.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dirinfo.obj -c ../tif_dirinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dirread.obj -c ../tif_dirread.c -../tif_dirread.c: In function ‘EstimateStripByteCounts’: -../tif_dirread.c:4272:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 4272 | if( !_TIFFFillStriles( tif ) ) - | ^~ -../tif_dirread.c:4275:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 4275 | if (td->td_stripbytecount) - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/blosc.c -In file included from /usr/include/stdio.h:867, - from ../../../supportApp/bloscSrc/blosc/blosc.c:11: -In function ‘fprintf’, - inlined from ‘blosc_d.isra.0’ at ../../../supportApp/bloscSrc/blosc/blosc.c:752:9: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:100:10: warning: ‘%s’ directive argument is null [-Wformat-overflow=] - 100 | return __fprintf_chk (__stream, __USE_FORTIFY_LEVEL - 1, __fmt, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 101 | __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘blosc_d.isra.0’: -../../../supportApp/bloscSrc/blosc/blosc.c:754:31: note: format string is defined here - 754 | "support for '%s' format. ", compname); - | ^~ -In file included from /usr/include/stdio.h:867, - from ../../../supportApp/bloscSrc/blosc/blosc.c:11: -In function ‘fprintf’, - inlined from ‘write_compression_header.isra.0’ at ../../../supportApp/bloscSrc/blosc/blosc.c:1105:5: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:100:10: warning: ‘%s’ directive argument is null [-Wformat-overflow=] - 100 | return __fprintf_chk (__stream, __USE_FORTIFY_LEVEL - 1, __fmt, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 101 | __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/blosclz.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/shuffle-generic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/shuffle.c -../../../supportApp/bloscSrc/blosc/shuffle.c:288:4: warning: #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. [-Wcpp] - 288 | #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. - | ^~~~~~~ -../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘get_shuffle_implementation’: -../../../supportApp/bloscSrc/blosc/shuffle.c:298:22: warning: unused variable ‘cpu_features’ [-Wunused-variable] - 298 | blosc_cpu_features cpu_features = blosc_get_cpu_features(); - | ^~~~~~~~~~~~ -In file included from ../../../supportApp/bloscSrc/blosc/shuffle.c:12: -At top level: -../../../supportApp/bloscSrc/blosc/shuffle-generic.h:61:13: warning: ‘unshuffle_generic_inline’ defined but not used [-Wunused-function] - 61 | static void unshuffle_generic_inline(const size_t type_size, - | ^~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/blosc/shuffle-generic.h:32:13: warning: ‘shuffle_generic_inline’ defined but not used [-Wunused-function] - 32 | static void shuffle_generic_inline(const size_t type_size, - | ^~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -/usr/bin/ar -rc libblosc.a entropy_common.o error_private.o fse_decompress.o pool.o threading.o xxhash.o zstd_common.o fse_compress.o zstd_compress.o huf_compress.o zstdmt_compress.o huf_decompress.o zstd_decompress.o snappy.o snappy-c.o snappy-sinksource.o snappy-stubs-internal.o lz4.o lz4hc.o blosc.o blosclz.o shuffle-generic.o bitshuffle-generic.o shuffle.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -/usr/bin/ranlib libblosc.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -o libblosc.so -shared -fPIC -Wl,-hlibblosc.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 entropy_common.o error_private.o fse_decompress.o pool.o threading.o xxhash.o zstd_common.o fse_compress.o zstd_compress.o huf_compress.o zstdmt_compress.o huf_decompress.o zstd_decompress.o snappy.o snappy-c.o snappy-sinksource.o snappy-stubs-internal.o lz4.o lz4hc.o blosc.o blosclz.o shuffle-generic.o bitshuffle-generic.o shuffle.o -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle.d -MT shuffle.obj ../../../supportApp/bloscSrc/blosc/shuffle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bitshuffle-generic.d -MT bitshuffle-generic.obj ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle-generic.d -MT shuffle-generic.obj ../../../supportApp/bloscSrc/blosc/shuffle-generic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosclz.d -MT blosclz.obj ../../../supportApp/bloscSrc/blosc/blosclz.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dirwrite.obj -c ../tif_dirwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc.d -MT blosc.obj ../../../supportApp/bloscSrc/blosc/blosc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4hc.d -MT lz4hc.obj ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4.d -MT lz4.obj ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dumpmode.obj -c ../tif_dumpmode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_error.obj -c ../tif_error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_extension.obj -c ../tif_extension.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-stubs-internal.d -MT snappy-stubs-internal.obj ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-sinksource.d -MT snappy-sinksource.obj ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-c.d -MT snappy-c.obj ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy.d -MT snappy.obj ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_decompress.d -MT zstd_decompress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_decompress.d -MT huf_decompress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstdmt_compress.d -MT zstdmt_compress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_compress.d -MT huf_compress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_compress.d -MT zstd_compress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_compress.d -MT fse_compress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_common.d -MT zstd_common.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xxhash.d -MT xxhash.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threading.d -MT threading.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pool.d -MT pool.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_decompress.d -MT fse_decompress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error_private.d -MT error_private.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entropy_common.d -MT entropy_common.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o entropy_common.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o error_private.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o fse_decompress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pool.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o threading.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_fax3.obj -c ../tif_fax3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xxhash.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zstd_common.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_fax3sm.obj -c ../tif_fax3sm.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_flush.obj -c ../tif_flush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o fse_compress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_getimage.obj -c ../tif_getimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_jbig.obj -c ../tif_jbig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_jpeg.obj -c ../tif_jpeg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_jpeg_12.obj -c ../tif_jpeg_12.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_luv.obj -c ../tif_luv.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_lzw.obj -c ../tif_lzw.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_next.obj -c ../tif_next.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_ojpeg.obj -c ../tif_ojpeg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_open.obj -c ../tif_open.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_packbits.obj -c ../tif_packbits.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_pixarlog.obj -c ../tif_pixarlog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_predict.obj -c ../tif_predict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_print.obj -c ../tif_print.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_read.obj -c ../tif_read.c -../tif_read.c: In function ‘TIFFFillStrip’: -../tif_read.c:495:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 495 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) - | ^~ -../tif_read.c:498:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 498 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) - | ^~ -../tif_read.c: In function ‘TIFFFillTile’: -../tif_read.c:798:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 798 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) - | ^~ -../tif_read.c:801:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 801 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) - | ^~ -../tif_read.c: In function ‘TIFFStartStrip’: -../tif_read.c:960:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 960 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) - | ^~ -../tif_read.c:963:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 963 | if ((tif->tif_flags & TIFF_CODERSETUP) == 0) { - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_strip.obj -c ../tif_strip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_swab.obj -c ../tif_swab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_thunder.obj -c ../tif_thunder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_tile.obj -c ../tif_tile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_version.obj -c ../tif_version.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_warning.obj -c ../tif_warning.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_write.obj -c ../tif_write.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_zip.obj -c ../tif_zip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_win32.obj -c ../tif_win32.c -../tif_win32.c: In function ‘TIFFFdOpen’: -../tif_win32.c:242:35: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 242 | tif = TIFFClientOpen(name, mode, (thandle_t)ifd, /* FIXME: WIN64 cast to pointer warning */ - | ^ -../tif_win32.c: In function ‘TIFFOpen’: -../tif_win32.c:287:19: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 287 | tif = TIFFFdOpen((int)fd, name, mode); /* FIXME: WIN64 cast from pointer to int warning */ - | ^ -../tif_win32.c: In function ‘TIFFOpenW’: -../tif_win32.c:342:19: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 342 | tif = TIFFFdOpen((int)fd, /* FIXME: WIN64 cast from pointer to int warning */ - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o tiff.dll -shared -Wl,--out-implib,libtiff.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ tif_aux.obj tif_close.obj tif_codec.obj tif_color.obj tif_compress.obj tif_dir.obj tif_dirinfo.obj tif_dirread.obj tif_dirwrite.obj tif_dumpmode.obj tif_error.obj tif_extension.obj tif_fax3.obj tif_fax3sm.obj tif_flush.obj tif_getimage.obj tif_jbig.obj tif_jpeg.obj tif_jpeg_12.obj tif_luv.obj tif_lzw.obj tif_next.obj tif_ojpeg.obj tif_open.obj tif_packbits.obj tif_pixarlog.obj tif_predict.obj tif_print.obj tif_read.obj tif_strip.obj tif_swab.obj tif_thunder.obj tif_tile.obj tif_version.obj tif_warning.obj tif_write.obj tif_zip.obj tif_win32.obj -luser32 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make -C ./xml2Src install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp_stream.d ../nanohttp_stream.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlstring.d ../xmlstring.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpointer.d ../xpointer.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpath.d ../xpath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlwriter.d ../xmlwriter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlunicode.d ../xmlunicode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemastypes.d ../xmlschemastypes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemas.d ../xmlschemas.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlsave.d ../xmlsave.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmodule.d ../xmlmodule.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlregexp.d ../xmlregexp.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlreader.d ../xmlreader.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmemory.d ../xmlmemory.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlIO.d ../xmlIO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xlink.d ../xlink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xinclude.d ../xinclude.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF valid.d ../valid.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uri.d ../uri.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tree.d ../tree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threads.d ../threads.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF schematron.d ../schematron.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX.d ../SAX.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX2.d ../SAX2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF relaxng.d ../relaxng.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pattern.d ../pattern.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zstd_compress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parserInternals.d ../parserInternals.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parser.d ../parser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp.d ../nanohttp.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanoftp.d ../nanoftp.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF list.d ../list.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF legacy.d ../legacy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLtree.d ../HTMLtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLparser.d ../HTMLparser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF hash.d ../hash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF globals.d ../globals.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error.d ../error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o huf_compress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entities.d ../entities.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d ../encoding.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF DOCBparser.d ../DOCBparser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dict.d ../dict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF debugXML.d ../debugXML.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF chvalid.d ../chvalid.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF catalog.d ../catalog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF c14n.d ../c14n.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF buf.d ../buf.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zstdmt_compress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -mkdir ../../../include/os/Linux/libxml -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../buf.c -../buf.c: In function ‘xmlBufMemoryError’: -../buf.c:94:5: warning: too many arguments for format [-Wformat-extra-args] - 94 | __xmlSimpleError(XML_FROM_BUFFER, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../buf.c: In function ‘xmlBufOverflowError’: -../buf.c:109:5: warning: too many arguments for format [-Wformat-extra-args] - 109 | __xmlSimpleError(XML_FROM_BUFFER, XML_BUF_OVERFLOW, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o huf_decompress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../c14n.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../catalog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zstd_decompress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../chvalid.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o snappy.obj -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::Append(const char*, size_t)’: -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1013:33: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long long unsigned int’} [-Wsign-compare] - 1013 | if (curr_iov_index_ + 1 >= output_iov_count_) { - | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::AppendFromSelf(size_t, size_t)’: -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1095:35: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long long unsigned int’} [-Wsign-compare] - 1095 | if (curr_iov_index_ + 1 >= output_iov_count_) { - | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: At global scope: -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:567:13: warning: ‘void snappy::ComputeTable()’ defined but not used [-Wunused-function] - 567 | static void ComputeTable() { - | ^~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o snappy-c.obj -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o snappy-sinksource.obj -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../debugXML.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o snappy-stubs-internal.obj -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../dict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../DOCBparser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../encoding.c -../encoding.c: In function ‘xmlEncodingErrMemory’: -../encoding.c:86:5: warning: too many arguments for format [-Wformat-extra-args] - 86 | __xmlSimpleError(XML_FROM_I18N, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../encoding.c: In function ‘xmlCharEncCloseFunc__internal_alias’: -../encoding.c:2856:12: warning: variable ‘handler_in_list’ set but not used [-Wunused-but-set-variable] - 2856 | int i, handler_in_list = 0; - | ^~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../entities.c -../entities.c: In function ‘xmlEntitiesErrMemory’: -../entities.c:76:5: warning: too many arguments for format [-Wformat-extra-args] - 76 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../globals.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../hash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../HTMLparser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../HTMLtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../legacy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../list.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o lz4.obj -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nanoftp.c -../nanoftp.c: In function ‘xmlFTPErrMemory’: -../nanoftp.c:176:5: warning: too many arguments for format [-Wformat-extra-args] - 176 | __xmlSimpleError(XML_FROM_FTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nanohttp.c -../nanohttp.c: In function ‘xmlHTTPErrMemory’: -../nanohttp.c:177:5: warning: too many arguments for format [-Wformat-extra-args] - 177 | __xmlSimpleError(XML_FROM_HTTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o lz4hc.obj -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosc.obj -c ../../../supportApp/bloscSrc/blosc/blosc.c -../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘parallel_blosc’: -../../../supportApp/bloscSrc/blosc/blosc.c:858:7: warning: unused variable ‘rc’ [-Wunused-variable] - 858 | int rc; - | ^~ -../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘t_blosc’: -../../../supportApp/bloscSrc/blosc/blosc.c:1583:7: warning: unused variable ‘rc’ [-Wunused-variable] - 1583 | int rc; - | ^~ -../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘blosc_release_threadpool’: -../../../supportApp/bloscSrc/blosc/blosc.c:2062:7: warning: unused variable ‘rc’ [-Wunused-variable] - 2062 | int rc; - | ^~ -../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘blosc_d.isra.0’: -../../../supportApp/bloscSrc/blosc/blosc.c:752:9: warning: ‘%s’ directive argument is null [-Wformat-overflow=] - 752 | fprintf(stderr, - | ^~~~~~~~~~~~~~~ - 753 | "Blosc has not been compiled with decompression " - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 754 | "support for '%s' format. ", compname); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/blosc/blosc.c:754:31: note: format string is defined here - 754 | "support for '%s' format. ", compname); - | ^~ -../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘write_compression_header.isra.0’: -../../../supportApp/bloscSrc/blosc/blosc.c:1105:5: warning: ‘%s’ directive argument is null [-Wformat-overflow=] - 1105 | fprintf(stderr, "Blosc has not been compiled with '%s' ", compname); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘blosc_c’: -../../../supportApp/bloscSrc/blosc/blosc.c:648:7: warning: ‘%s’ directive argument is null [-Wformat-overflow=] - 648 | fprintf(stderr, "Blosc has not been compiled with '%s' ", compname); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosclz.obj -c ../../../supportApp/bloscSrc/blosc/blosclz.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o shuffle-generic.obj -c ../../../supportApp/bloscSrc/blosc/shuffle-generic.c -../../../supportApp/bloscSrc/blosc/shuffle-generic.c: In function ‘shuffle_generic’: -../../../supportApp/bloscSrc/blosc/shuffle-generic.c:17:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 17 | } - | ^ -../../../supportApp/bloscSrc/blosc/shuffle-generic.c: In function ‘unshuffle_generic’: -../../../supportApp/bloscSrc/blosc/shuffle-generic.c:25:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 25 | } - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o bitshuffle-generic.obj -c ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_byte_elem_remainder’: -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:40:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 40 | } - | ^ -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_byte_elem_scal’: -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:48:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 48 | } - | ^ -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_bit_byte_remainder’: -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:85:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 85 | } - | ^ -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_elem’: -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:110:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 110 | } - | ^ -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_bitrow_eight’: -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:122:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 122 | } - | ^ -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_bit_elem_scal’: -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:140:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 140 | } - | ^ -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_shuffle_bit_eightelem_scal’: -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:205:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 205 | } - | ^ -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_untrans_bit_elem_scal’: -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:221:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 221 | } - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o shuffle.obj -c ../../../supportApp/bloscSrc/blosc/shuffle.c -../../../supportApp/bloscSrc/blosc/shuffle.c:288:4: warning: #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. [-Wcpp] - 288 | #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. - | ^~~~~~~ -../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘get_shuffle_implementation’: -../../../supportApp/bloscSrc/blosc/shuffle.c:298:22: warning: unused variable ‘cpu_features’ [-Wunused-variable] - 298 | blosc_cpu_features cpu_features = blosc_get_cpu_features(); - | ^~~~~~~~~~~~ -In file included from ../../../supportApp/bloscSrc/blosc/shuffle.c:12: -At top level: -../../../supportApp/bloscSrc/blosc/shuffle-generic.h:61:13: warning: ‘unshuffle_generic_inline’ defined but not used [-Wunused-function] - 61 | static void unshuffle_generic_inline(const size_t type_size, - | ^~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/blosc/shuffle-generic.h:32:13: warning: ‘shuffle_generic_inline’ defined but not used [-Wunused-function] - 32 | static void shuffle_generic_inline(const size_t type_size, - | ^~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘shuffle’: -../../../supportApp/bloscSrc/blosc/shuffle.c:387:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 387 | } - | ^ -../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘unshuffle’: -../../../supportApp/bloscSrc/blosc/shuffle.c:400:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 400 | } - | ^ -../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘bitshuffle’: -../../../supportApp/bloscSrc/blosc/shuffle.c:421:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 421 | } - | ^ -../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘bitunshuffle’: -../../../supportApp/bloscSrc/blosc/shuffle.c:442:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 442 | } - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o blosc.dll -shared -Wl,--out-implib,libblosc.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ entropy_common.obj error_private.obj fse_decompress.obj pool.obj threading.obj xxhash.obj zstd_common.obj fse_compress.obj zstd_compress.obj huf_compress.obj zstdmt_compress.obj huf_decompress.obj zstd_decompress.obj snappy.obj snappy-c.obj snappy-sinksource.obj snappy-stubs-internal.obj lz4.obj lz4hc.obj blosc.obj blosclz.obj shuffle-generic.obj bitshuffle-generic.obj shuffle.obj -lzlib -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make -C ./hdf5Src install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5detect.d ../H5detect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d ../jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d ../blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5lib_settings.d ../H5lib_settings.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tinit.d ../os/Linux/H5Tinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ztrans.d ../H5Ztrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zszip.d ../H5Zszip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zshuffle.d ../H5Zshuffle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zscaleoffset.d ../H5Zscaleoffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Znbit.d ../H5Znbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zfletcher32.d ../H5Zfletcher32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zdeflate.d ../H5Zdeflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Z.d ../H5Z.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5WB.d ../H5WB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5VM.d ../H5VM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5TS.d ../H5TS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvlen.d ../H5Tvlen.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvisit.d ../H5Tvisit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tstrpad.d ../H5Tstrpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tprecis.d ../H5Tprecis.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tpad.d ../H5Tpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Torder.d ../H5Torder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Topaque.d ../H5Topaque.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toh.d ../H5Toh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toffset.d ../H5Toffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tnative.d ../H5Tnative.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfloat.d ../H5Tfloat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfixed.d ../H5Tfixed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfields.d ../H5Tfields.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tenum.d ../H5Tenum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdeprec.d ../H5Tdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdbg.d ../H5Tdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcset.d ../H5Tcset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tconv.d ../H5Tconv.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcompound.d ../H5Tcompound.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcommit.d ../H5Tcommit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tbit.d ../H5Tbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tarray.d ../H5Tarray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5T.d ../H5T.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ST.d ../H5ST.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMtest.d ../H5SMtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMmessage.d ../H5SMmessage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMcache.d ../H5SMcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMbtree2.d ../H5SMbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SM.d ../H5SM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SL.d ../H5SL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Stest.d ../H5Stest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sselect.d ../H5Sselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Spoint.d ../H5Spoint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Snone.d ../H5Snone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Shyper.d ../H5Shyper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sdbg.d ../H5Sdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sall.d ../H5Sall.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5S.d ../H5S.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5RS.d ../H5RS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5UC.d ../H5UC.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Rdeprec.d ../H5Rdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5R.d ../H5R.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PL.d ../H5PL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PB.d ../H5PB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ptest.d ../H5Ptest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pstrcpl.d ../H5Pstrcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpypl.d ../H5Pocpypl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpl.d ../H5Pocpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plcpl.d ../H5Plcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plapl.d ../H5Plapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pint.d ../H5Pint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pgcpl.d ../H5Pgcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfmpl.d ../H5Pfmpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfcpl.d ../H5Pfcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfapl.d ../H5Pfapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pencdec.d ../H5Pencdec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdxpl.d ../H5Pdxpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdeprec.d ../H5Pdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdcpl.d ../H5Pdcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdapl.d ../H5Pdapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pacpl.d ../H5Pacpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5P.d ../H5P.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ounknown.d ../H5Ounknown.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../parser.c -../parser.c: In function ‘xmlParseReference__internal_alias’: -../parser.c:7258:44: warning: ‘%d’ directive output may be truncated writing between 3 and 10 bytes into a region of size 9 [-Wformat-truncation=] - 7258 | snprintf((char *)out, sizeof(out), "#%d", value); - | ^~ -../parser.c:7258:42: note: directive argument in the range [256, 2147483647] - 7258 | snprintf((char *)out, sizeof(out), "#%d", value); - | ^~~~~ -In file included from /usr/include/stdio.h:867, - from ../libxml.h:51, - from ../parser.c:34: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output between 5 and 12 bytes into a destination of size 10 - 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 68 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../parser.c:7256:47: warning: ‘__builtin___snprintf_chk’ output may be truncated before the last format character [-Wformat-truncation=] - 7256 | snprintf((char *)out, sizeof(out), "#x%X", value); - | ^ -In file included from /usr/include/stdio.h:867, - from ../libxml.h:51, - from ../parser.c:34: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output between 6 and 11 bytes into a destination of size 10 - 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 68 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Otest.d ../H5Otest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ostab.d ../H5Ostab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshmesg.d ../H5Oshmesg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshared.d ../H5Oshared.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Osdspace.d ../H5Osdspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Orefcount.d ../H5Orefcount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Opline.d ../H5Opline.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Onull.d ../H5Onull.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oname.d ../H5Oname.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omtime.d ../H5Omtime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omessage.d ../H5Omessage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olink.d ../H5Olink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../parserInternals.c -../parserInternals.c: In function ‘xmlNextChar__internal_alias’: -../parserInternals.c:473:9: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 473 | if (c == 0xC0) - | ^~ -../parserInternals.c:475:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 475 | if (cur[1] == 0) { - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olinfo.d ../H5Olinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olayout.d ../H5Olayout.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oginfo.d ../H5Oginfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofsinfo.d ../H5Ofsinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oflush.d ../H5Oflush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofill.d ../H5Ofill.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oefl.d ../H5Oefl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odtype.d ../H5Odtype.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odrvinfo.d ../H5Odrvinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odbg.d ../H5Odbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocopy.d ../H5Ocopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocont.d ../H5Ocont.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ochunk.d ../H5Ochunk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache_image.d ../H5Ocache_image.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache.d ../H5Ocache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obtreek.d ../H5Obtreek.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pattern.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obogus.d ../H5Obogus.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattribute.d ../H5Oattribute.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattr.d ../H5Oattr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oalloc.d ../H5Oalloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oainfo.d ../H5Oainfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5O.d ../H5O.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MPtest.d ../H5MPtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MP.d ../H5MP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MM.d ../H5MM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFsection.d ../H5MFsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFdbg.d ../H5MFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFaggr.d ../H5MFaggr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MF.d ../H5MF.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Lexternal.d ../H5Lexternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5L.d ../H5L.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Itest.d ../H5Itest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5I.d ../H5I.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HP.d ../H5HP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdblk.d ../H5HLdblk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLprfx.d ../H5HLprfx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLint.d ../H5HLint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdbg.d ../H5HLdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLcache.d ../H5HLcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HL.d ../H5HL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGquery.d ../H5HGquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGdbg.d ../H5HGdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGcache.d ../H5HGcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HG.d ../H5HG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtiny.d ../H5HFtiny.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtest.d ../H5HFtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFstat.d ../H5HFstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFspace.d ../H5HFspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFsection.d ../H5HFsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFman.d ../H5HFman.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiter.d ../H5HFiter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiblock.d ../H5HFiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhuge.d ../H5HFhuge.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhdr.d ../H5HFhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdtable.d ../H5HFdtable.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdblock.d ../H5HFdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdbg.d ../H5HFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFcache.d ../H5HFcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFbtree2.d ../H5HFbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HF.d ../H5HF.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtraverse.d ../H5Gtraverse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtest.d ../H5Gtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gstab.d ../H5Gstab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Groot.d ../H5Groot.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Goh.d ../H5Goh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gobj.d ../H5Gobj.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gnode.d ../H5Gnode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gname.d ../H5Gname.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gloc.d ../H5Gloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Glink.d ../H5Glink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gint.d ../H5Gint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gent.d ../H5Gent.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdeprec.d ../H5Gdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdense.d ../H5Gdense.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcompact.d ../H5Gcompact.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcache.d ../H5Gcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gbtree2.d ../H5Gbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5G.d ../H5G.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FStest.d ../H5FStest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSstat.d ../H5FSstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSsection.d ../H5FSsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSint.d ../H5FSint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSdbg.d ../H5FSdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FScache.d ../H5FScache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FS.d ../H5FS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FO.d ../H5FO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FL.d ../H5FL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../relaxng.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDtest.d ../H5FDtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDstdio.d ../H5FDstdio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDspace.d ../H5FDspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDsec2.d ../H5FDsec2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDmulti.d ../H5FDmulti.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDlog.d ../H5FDlog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDint.d ../H5FDint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDfamily.d ../H5FDfamily.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDcore.d ../H5FDcore.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FD.d ../H5FD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAtest.d ../H5FAtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAstat.d ../H5FAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAint.d ../H5FAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAhdr.d ../H5FAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblkpage.d ../H5FAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblock.d ../H5FAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../SAX2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdbg.d ../H5FAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAcache.d ../H5FAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../SAX.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FA.d ../H5FA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ftest.d ../H5Ftest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper_cache.d ../H5Fsuper_cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper.d ../H5Fsuper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fspace.d ../H5Fspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsfile.d ../H5Fsfile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fquery.d ../H5Fquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fmount.d ../H5Fmount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fio.d ../H5Fio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fint.d ../H5Fint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../schematron.c -../schematron.c: In function ‘xmlSchematronPErrMemory’: -../schematron.c:234:22: warning: too many arguments for format [-Wformat-extra-args] - 234 | extra); - | ^~~~~ -../schematron.c: In function ‘xmlSchematronVErrMemory’: -../schematron.c:284:22: warning: too many arguments for format [-Wformat-extra-args] - 284 | extra); - | ^~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ffake.d ../H5Ffake.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fefc.d ../H5Fefc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdeprec.d ../H5Fdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdbg.d ../H5Fdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../threads.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fcwfs.d ../H5Fcwfs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Faccum.d ../H5Faccum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5F.d ../H5F.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAtest.d ../H5EAtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAstat.d ../H5EAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAsblock.d ../H5EAsblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAint.d ../H5EAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAiblock.d ../H5EAiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAhdr.d ../H5EAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblock.d ../H5EAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblkpage.d ../H5EAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdbg.d ../H5EAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAcache.d ../H5EAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EA.d ../H5EA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Eint.d ../H5Eint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Edeprec.d ../H5Edeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5E.d ../H5E.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dvirtual.d ../H5Dvirtual.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dtest.d ../H5Dtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dsingle.d ../H5Dsingle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dselect.d ../H5Dselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dscatgath.d ../H5Dscatgath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Doh.d ../H5Doh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dnone.d ../H5Dnone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dlayout.d ../H5Dlayout.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dio.d ../H5Dio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dint.d ../H5Dint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfill.d ../H5Dfill.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfarray.d ../H5Dfarray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Defl.d ../H5Defl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dearray.d ../H5Dearray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddeprec.d ../H5Ddeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddbg.d ../H5Ddbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcontig.d ../H5Dcontig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcompact.d ../H5Dcompact.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dchunk.d ../H5Dchunk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree2.d ../H5Dbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree.d ../H5Dbtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5D.d ../H5D.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5CS.d ../H5CS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctest.d ../H5Ctest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctag.d ../H5Ctag.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cquery.d ../H5Cquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cprefetched.d ../H5Cprefetched.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Clog.d ../H5Clog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cimage.d ../H5Cimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cepoch.d ../H5Cepoch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cdbg.d ../H5Cdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5C.d ../H5C.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2test.d ../H5B2test.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2stat.d ../H5B2stat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2leaf.d ../H5B2leaf.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2internal.d ../H5B2internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2int.d ../H5B2int.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2hdr.d ../H5B2hdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2dbg.d ../H5B2dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2cache.d ../H5B2cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2.d ../H5B2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bdbg.d ../H5Bdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tree.c -../tree.c: In function ‘xmlTreeErrMemory’: -../tree.c:74:5: warning: too many arguments for format [-Wformat-extra-args] - 74 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../tree.c: In function ‘xmlGetNodePath__internal_alias’: -../tree.c:4758:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 4758 | if (tmp->type == XML_COMMENT_NODE) - | ^~ -../tree.c:4760:21: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 4760 | tmp = tmp->next; - | ^~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bcache.d ../H5Bcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B.d ../H5B.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACproxy_entry.d ../H5ACproxy_entry.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACdbg.d ../H5ACdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AClog.d ../H5AClog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AC.d ../H5AC.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Atest.d ../H5Atest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Aint.d ../H5Aint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adeprec.d ../H5Adeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adense.d ../H5Adense.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Abtree2.d ../H5Abtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5A.d ../H5A.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5trace.d ../H5trace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5timer.d ../H5timer.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5system.d ../H5system.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5dbg.d ../H5dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5checksum.d ../H5checksum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../uri.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5.d ../H5.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5checksum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../valid.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5system.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5system.c:33: -In function ‘strncat’, - inlined from ‘H5_build_extpath’ at ../H5system.c:1116:13: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5system.c:33: -../H5system.c: In function ‘H5_build_extpath’: -../H5private.h:1358:31: note: length computed here - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5system.c:1116:13: note: in expansion of macro ‘HDstrncat’ - 1116 | HDstrncat(full_path, new_name, HDstrlen(new_name)); - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5timer.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xinclude.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xlink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5trace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlIO.c -../xmlIO.c: In function ‘xmlIOErrMemory’: -../xmlIO.c:256:5: warning: too many arguments for format [-Wformat-extra-args] - 256 | __xmlSimpleError(XML_FROM_IO, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlmemory.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5A.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5A.c:25: -In function ‘strncpy’, - inlined from ‘H5Aget_name_by_idx’ at ../H5A.c:937:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5A.c:25: -../H5A.c: In function ‘H5Aget_name_by_idx’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5A.c:933:26: note: in expansion of macro ‘HDstrlen’ - 933 | ret_value = (ssize_t)HDstrlen(attr->shared->name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Abtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Adense.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlreader.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Adeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Aint.c -../H5Aint.c: In function ‘H5A_create’: -../H5Aint.c:200:45: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 200 | if(NULL == (attr->shared->dt = H5T_copy(type, H5T_COPY_ALL))) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Aprivate.h:25, - from ../H5Apkg.h:37, - from ../H5Aint.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Aint.c: In function ‘H5A__read’: -../H5Aint.c:532:71: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 532 | (dst_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0) - | ^~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Aprivate.h:25, - from ../H5Apkg.h:37, - from ../H5Aint.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Aint.c: In function ‘H5A__write’: -../H5Aint.c:632:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 632 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0 || - | ^~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Aprivate.h:25, - from ../H5Apkg.h:37, - from ../H5Aint.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Atest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5AC.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5AClog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5ACdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlregexp.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5ACproxy_entry.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlmodule.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B.c -../H5B.c: In function ‘H5B_valid’: -../H5B.c:2038:26: warning: variable ‘shared’ set but not used [-Wunused-but-set-variable] - 2038 | H5B_shared_t *shared; /* Pointer to shared B-tree info */ - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlsave.c -../xmlsave.c: In function ‘xmlSaveErrMemory’: -../xmlsave.c:111:5: warning: too many arguments for format [-Wformat-extra-args] - 111 | __xmlSimpleError(XML_FROM_OUTPUT, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Bcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Bdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2hdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2int.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2leaf.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2stat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2test.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5C.c -../H5C.c: In function ‘H5C_flush_cache’: -../H5C.c:1057:14: warning: variable ‘ignore_protected’ set but not used [-Wunused-but-set-variable] - 1057 | hbool_t ignore_protected; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cepoch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Clog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cprefetched.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ctag.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ctest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5CS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlschemas.c -../xmlschemas.c: In function ‘xmlSchemaPSimpleErr’: -../xmlschemas.c:1861:22: warning: too many arguments for format [-Wformat-extra-args] - 1861 | msg); - | ^~~ -../xmlschemas.c: In function ‘xmlSchemaPErrMemory’: -../xmlschemas.c:1878:22: warning: too many arguments for format [-Wformat-extra-args] - 1878 | extra); - | ^~~~~ -../xmlschemas.c: In function ‘xmlSchemaVErrMemory’: -../xmlschemas.c:2002:22: warning: too many arguments for format [-Wformat-extra-args] - 2002 | extra); - | ^~~~~ -../xmlschemas.c: In function ‘xmlSchemaPResCompAttrErr’: -../xmlschemas.c:2834:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 2834 | if (refTypeStr == NULL) - | ^~ -../xmlschemas.c:2836:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 2836 | xmlSchemaPErrExt(ctxt, ownerElem, error, - | ^~~~~~~~~~~~~~~~ -../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeQNameValue’: -../xmlschemas.c:5824:6: warning: too many arguments for format [-Wformat-extra-args] - 5824 | NULL, value, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlGetMaxOccurs’: -../xmlschemas.c:6047:3: warning: too many arguments for format [-Wformat-extra-args] - 6047 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:6061:6: warning: too many arguments for format [-Wformat-extra-args] - 6061 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:6078:6: warning: too many arguments for format [-Wformat-extra-args] - 6078 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c: In function ‘xmlGetMinOccurs’: -../xmlschemas.c:6113:6: warning: too many arguments for format [-Wformat-extra-args] - 6113 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:6130:6: warning: too many arguments for format [-Wformat-extra-args] - 6130 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c: In function ‘xmlSchemaPGetBoolNodeValue’: -../xmlschemas.c:6175:6: warning: too many arguments for format [-Wformat-extra-args] - 6175 | NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlGetBooleanProp’: -../xmlschemas.c:6223:6: warning: too many arguments for format [-Wformat-extra-args] - 6223 | NULL, val, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeValue’: -../xmlschemas.c:6328:6: warning: too many arguments for format [-Wformat-extra-args] - 6328 | type, NULL, value, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaParseWildcardNs’: -../xmlschemas.c:6763:6: warning: too many arguments for format [-Wformat-extra-args] - 6763 | NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c:6801:7: warning: too many arguments for format [-Wformat-extra-args] - 6801 | nsItem, NULL, NULL, NULL); - | ^~~~~~ -../xmlschemas.c: In function ‘xmlSchemaParseLocalAttribute’: -../xmlschemas.c:7188:8: warning: too many arguments for format [-Wformat-extra-args] - 7188 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:7208:4: warning: too many arguments for format [-Wformat-extra-args] - 7208 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:7366:2: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 7366 | if (defValue != NULL) - | ^~ -../xmlschemas.c:7368:6: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 7368 | if (defValueType == WXS_ATTR_DEF_VAL_FIXED) - | ^~ -../xmlschemas.c: In function ‘xmlSchemaParseElement’: -../xmlschemas.c:8629:4: warning: too many arguments for format [-Wformat-extra-args] - 8629 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:8708:4: warning: too many arguments for format [-Wformat-extra-args] - 8708 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:8738:7: warning: too many arguments for format [-Wformat-extra-args] - 8738 | NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaParseSimpleType’: -../xmlschemas.c:9294:7: warning: too many arguments for format [-Wformat-extra-args] - 9294 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c: In function ‘xmlSchemaParseSchemaElement’: -../xmlschemas.c:9693:3: warning: too many arguments for format [-Wformat-extra-args] - 9693 | "(qualified | unqualified)", val, NULL, NULL, NULL); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -../xmlschemas.c:9706:3: warning: too many arguments for format [-Wformat-extra-args] - 9706 | "(qualified | unqualified)", val, NULL, NULL, NULL); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -../xmlschemas.c:9724:3: warning: too many arguments for format [-Wformat-extra-args] - 9724 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:9740:3: warning: too many arguments for format [-Wformat-extra-args] - 9740 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c: In function ‘xmlSchemaParseImport’: -../xmlschemas.c:10763:6: warning: too many arguments for format [-Wformat-extra-args] -10763 | NULL, namespaceName, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c:10774:6: warning: too many arguments for format [-Wformat-extra-args] -10774 | NULL, schemaLocation, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaParseComplexType’: -../xmlschemas.c:12233:8: warning: too many arguments for format [-Wformat-extra-args] -12233 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:12251:8: warning: too many arguments for format [-Wformat-extra-args] -12251 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c: In function ‘xmlSchemaValidateFacets’: -../xmlschemas.c:24253:3: warning: too many arguments for format [-Wformat-extra-args] -24253 | value, len, type, facetLink->facet, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c:24289:3: warning: too many arguments for format [-Wformat-extra-args] -24289 | value, length, type, facetLink->facet, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c:24341:7: warning: too many arguments for format [-Wformat-extra-args] -24341 | value, 0, type, NULL, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c:24386:4: warning: too many arguments for format [-Wformat-extra-args] -24386 | value, 0, type, facet, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c: In function ‘xmlSchemaSetValidStructuredErrors__internal_alias’: -../xmlschemas.c:27790:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] -27790 | if (ctxt == NULL) - | ^~ -../xmlschemas.c:27792:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ -27792 | ctxt->serror = serror; - | ^~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5D.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dbtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlschemastypes.c -../xmlschemastypes.c: In function ‘xmlSchemaTypeErrMemory’: -../xmlschemastypes.c:204:5: warning: too many arguments for format [-Wformat-extra-args] - 204 | __xmlSimpleError(XML_FROM_DATATYPE, XML_ERR_NO_MEMORY, node, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dchunk.c -../H5Dchunk.c: In function ‘H5D__chunk_init’: -../H5Dchunk.c:724:26: warning: unused variable ‘sc’ [-Wunused-variable] - 724 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_is_space_alloc’: -../H5Dchunk.c:816:32: warning: unused variable ‘sc’ [-Wunused-variable] - 816 | const H5O_storage_chunk_t *sc = &(storage->u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_dest’: -../H5Dchunk.c:2371:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2371 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_create’: -../H5Dchunk.c:2582:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2582 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_lookup’: -../H5Dchunk.c:2683:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2683 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_flush_entry’: -../H5Dchunk.c:2806:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2806 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_allocated’: -../H5Dchunk.c:3716:26: warning: unused variable ‘sc’ [-Wunused-variable] - 3716 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_allocate’: -../H5Dchunk.c:3809:32: warning: unused variable ‘sc’ [-Wunused-variable] - 3809 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_update_old_edge_chunks’: -../H5Dchunk.c:4242:32: warning: unused variable ‘sc’ [-Wunused-variable] - 4242 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c:4229:24: warning: unused variable ‘pline’ [-Wunused-variable] - 4229 | const H5O_pline_t *pline = &(dset->shared->dcpl_cache.pline); /* I/O pipeline info */ - | ^~~~~ -../H5Dchunk.c: In function ‘H5D__chunk_prune_by_extent’: -../H5Dchunk.c:4797:32: warning: unused variable ‘sc’ [-Wunused-variable] - 4797 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_delete’: -../H5Dchunk.c:5203:26: warning: unused variable ‘sc’ [-Wunused-variable] - 5203 | H5O_storage_chunk_t *sc = &(storage->u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_copy_cb’: -../H5Dchunk.c:5550:111: warning: passing argument 5 of ‘H5D__chunk_file_alloc’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 5550 | if(H5D__chunk_file_alloc(udata->idx_info_dst, NULL, &udata_dst.chunk_block, &need_insert, udata_dst.common.scaled) < 0) - | ~~~~~~~~~~~~~~~~^~~~~~~ -../H5Dchunk.c:300:13: note: expected ‘hsize_t *’ {aka ‘long long unsigned int *’} but argument is of type ‘const hsize_t *’ {aka ‘const long long unsigned int *’} - 300 | hsize_t scaled[]); - | ~~~~~~~~^~~~~~~~ -../H5Dchunk.c: In function ‘H5D__chunk_copy’: -../H5Dchunk.c:5689:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 5689 | if(NULL == (dt_mem = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) - | ^~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dchunk.c:55: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dchunk.c:5697:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 5697 | if(NULL == (dt_dst = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) - | ^~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dchunk.c:55: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dchunk.c: In function ‘H5D__chunk_bh_info’: -../H5Dchunk.c:5856:26: warning: unused variable ‘sc’ [-Wunused-variable] - 5856 | H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_dump_index’: -../H5Dchunk.c:5979:26: warning: unused variable ‘sc’ [-Wunused-variable] - 5979 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dcompact.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlunicode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dcontig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ddbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ddeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlwriter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dearray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Defl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dfarray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dfill.c -../H5Dfill.c: In function ‘H5D__fill’: -../H5Dfill.c:238:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 238 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(fill_type, H5T_COPY_ALL), FALSE)) < 0) - | ^~~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dfill.c:36: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dfill.c:241:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 241 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(buf_type, H5T_COPY_ALL), FALSE)) < 0) - | ^~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dfill.c:36: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dfill.c: In function ‘H5D__fill_init’: -../H5Dfill.c:413:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 413 | if(NULL == (fb_info->mem_type = H5T_copy(dset_type, H5T_COPY_REOPEN))) - | ^~~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dfill.c:36: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dint.c -../H5Dint.c: In function ‘H5D__init_type’: -../H5Dint.c:681:43: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 681 | if((dset->shared->type = H5T_copy(type, H5T_COPY_ALL)) == NULL) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dint.c:25: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dint.c: In function ‘H5D__mark’: -../H5Dint.c:3174:37: warning: passing argument 1 of ‘H5D__layout_oh_write’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 3174 | if(H5D__layout_oh_write(dataset, dxpl_id, oh, update_flags) < 0) - | ^~~~~~~ -In file included from ../H5Dint.c:25: -../H5Dpkg.h:638:43: note: expected ‘H5D_t *’ {aka ‘struct H5D_t *’} but argument is of type ‘const H5D_t *’ {aka ‘const struct H5D_t *’} - 638 | H5_DLL herr_t H5D__layout_oh_write(H5D_t *dataset, hid_t dxpl_id, H5O_t *oh, - | ~~~~~~~^~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dlayout.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dnone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Doh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dscatgath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dsingle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xpath.c -In file included from ../xpath.c:462: -../timsort.h: In function ‘libxml_domnode_tim_sort_collapse’: -../timsort.h:397:19: warning: variable ‘BD’ set but not used [-Wunused-but-set-variable] - 397 | int ABC, BCD, BD, CD; - | ^~ -../xpath.c: In function ‘xmlXPathNodeCollectAndTest’: -../xpath.c:12409:28: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘xmlXPathTypeVal’ {aka ‘enum ’} [-Wenum-compare] -12409 | } else if (cur->type == type) { - | ^~ -In file included from ../xpath.c:476: -At top level: -../trionan.c:218:1: warning: ‘trio_is_negative’ defined but not used [-Wunused-function] - 218 | trio_is_negative - | ^~~~~~~~~~~~~~~~ -../trionan.c:194:1: warning: ‘trio_is_special_quantity’ defined but not used [-Wunused-function] - 194 | trio_is_special_quantity - | ^~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dvirtual.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xpointer.c -../xpointer.c: In function ‘xmlXPtrNewRangeNodePoint__internal_alias’: -../xpointer.c:451:21: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘enum ’ [-Wenum-compare] - 451 | if (start->type != XPATH_POINT) - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlstring.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nanohttp_stream.c -../nanohttp_stream.c: In function ‘xmlParseJpegHeader’: -../nanohttp_stream.c:628:40: warning: pointer targets in passing argument 1 of ‘xmlStrncmp__internal_alias’ differ in signedness [-Wpointer-sign] - 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { - | ~~~~^~~~~~~~~~~~~~ - | | - | char * -In file included from ../libxml.h:106, - from ../nanohttp_stream.c:16: -../elfgcchack.h:11051:30: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘char *’ -11051 | extern __typeof (xmlStrncmp) xmlStrncmp__internal_alias __attribute((visibility("hidden"))); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../nanohttp_stream.c:628:56: warning: pointer targets in passing argument 2 of ‘xmlStrncmp__internal_alias’ differ in signedness [-Wpointer-sign] - 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { - | ^~~~~~~~~~~~ - | | - | const char * -In file included from ../libxml.h:106, - from ../nanohttp_stream.c:16: -../elfgcchack.h:11051:30: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘const char *’ -11051 | extern __typeof (xmlStrncmp) xmlStrncmp__internal_alias __attribute((visibility("hidden"))); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../nanohttp_stream.c: In function ‘xmlNanoHTTPScanAnswer’: -../elfgcchack.h:11072:19: warning: pointer targets in initialization of ‘const char *’ from ‘const xmlChar *’ {aka ‘const unsigned char *’} differ in signedness [-Wpointer-sign] -11072 | #define xmlStrstr xmlStrstr__internal_alias - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../nanohttp_stream.c:979:30: note: in expansion of macro ‘xmlStrstr’ - 979 | const char* boundaryName = xmlStrstr(BAD_CAST ctxt->contentType, BAD_CAST "boundary"); - | ^~~~~~~~~ -../nanohttp_stream.c:981:17: warning: pointer targets in assignment from ‘const xmlChar *’ {aka ‘const unsigned char *’} to ‘const char *’ differ in signedness [-Wpointer-sign] - 981 | boundaryName = xmlStrstr(BAD_CAST boundaryName, BAD_CAST "="); - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -g++ -o libxml2.so -shared -fPIC -Wl,-hlibxml2.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -/usr/bin/ar -rc libxml2.a buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -/usr/bin/ranlib libxml2.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -/usr/bin/ar -rc libnanohttp_stream.a nanohttp_stream.o buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -/usr/bin/ranlib libnanohttp_stream.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -g++ -o libnanohttp_stream.so -shared -fPIC -Wl,-hlibnanohttp_stream.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 nanohttp_stream.o buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o -lxml2 -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5E.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5E.c:52: -In function ‘strncpy’, - inlined from ‘H5E_get_class_name’ at ../H5E.c:646:8, - inlined from ‘H5Eget_class_name’ at ../H5E.c:610:21: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5E.c:52: -../H5E.c: In function ‘H5Eget_class_name’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5E.c:642:20: note: in expansion of macro ‘HDstrlen’ - 642 | len = (ssize_t)HDstrlen(cls->cls_name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Edeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Eint.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Eint.c:35: -In function ‘strncpy’, - inlined from ‘H5E_get_msg’ at ../H5Eint.c:143:8: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Eint.c:35: -../H5Eint.c: In function ‘H5E_get_msg’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Eint.c:139:20: note: in expansion of macro ‘HDstrlen’ - 139 | len = (ssize_t)HDstrlen(msg->msg); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp_stream.d -MT nanohttp_stream.obj ../nanohttp_stream.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlstring.d -MT xmlstring.obj ../xmlstring.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpointer.d -MT xpointer.obj ../xpointer.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpath.d -MT xpath.obj ../xpath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlwriter.d -MT xmlwriter.obj ../xmlwriter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlunicode.d -MT xmlunicode.obj ../xmlunicode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemastypes.d -MT xmlschemastypes.obj ../xmlschemastypes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemas.d -MT xmlschemas.obj ../xmlschemas.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlsave.d -MT xmlsave.obj ../xmlsave.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmodule.d -MT xmlmodule.obj ../xmlmodule.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlregexp.d -MT xmlregexp.obj ../xmlregexp.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlreader.d -MT xmlreader.obj ../xmlreader.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmemory.d -MT xmlmemory.obj ../xmlmemory.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlIO.d -MT xmlIO.obj ../xmlIO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xlink.d -MT xlink.obj ../xlink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xinclude.d -MT xinclude.obj ../xinclude.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF valid.d -MT valid.obj ../valid.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uri.d -MT uri.obj ../uri.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tree.d -MT tree.obj ../tree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threads.d -MT threads.obj ../threads.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF schematron.d -MT schematron.obj ../schematron.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX.d -MT SAX.obj ../SAX.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX2.d -MT SAX2.obj ../SAX2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF relaxng.d -MT relaxng.obj ../relaxng.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pattern.d -MT pattern.obj ../pattern.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parserInternals.d -MT parserInternals.obj ../parserInternals.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAsblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parser.d -MT parser.obj ../parser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp.d -MT nanohttp.obj ../nanohttp.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanoftp.d -MT nanoftp.obj ../nanoftp.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF list.d -MT list.obj ../list.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF legacy.d -MT legacy.obj ../legacy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLtree.d -MT HTMLtree.obj ../HTMLtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLparser.d -MT HTMLparser.obj ../HTMLparser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF hash.d -MT hash.obj ../hash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF globals.d -MT globals.obj ../globals.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error.d -MT error.obj ../error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entities.d -MT entities.obj ../entities.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d -MT encoding.obj ../encoding.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5F.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5F.c:24: -In function ‘strncpy’, - inlined from ‘H5Fget_name’ at ../H5F.c:1311:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5F.c:24: -../H5F.c: In function ‘H5Fget_name’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5F.c:1308:11: note: in expansion of macro ‘HDstrlen’ - 1308 | len = HDstrlen(H5F_OPEN_NAME(f)); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF DOCBparser.d -MT DOCBparser.obj ../DOCBparser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dict.d -MT dict.obj ../dict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF debugXML.d -MT debugXML.obj ../debugXML.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF chvalid.d -MT chvalid.obj ../chvalid.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF catalog.d -MT catalog.obj ../catalog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF c14n.d -MT c14n.obj ../c14n.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF buf.d -MT buf.obj ../buf.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Faccum.c -../H5Faccum.c: In function ‘H5F__accum_read’: -../H5Faccum.c:129:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 129 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5Faccum.c:130:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 130 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -../H5Faccum.c: In function ‘H5F__accum_write’: -../H5Faccum.c:442:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 442 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5Faccum.c:443:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 443 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -../H5Faccum.c: In function ‘H5F__accum_free’: -../H5Faccum.c:877:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 877 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5Faccum.c:878:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 878 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -../H5Faccum.c: In function ‘H5F__accum_flush’: -../H5Faccum.c:1045:29: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1045 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5Faccum.c:1046:28: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1046 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -mkdir ../../../include/os/WIN32/libxml -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fcwfs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fefc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Circular libxml2.dll.a <- nanohttp_stream.dll dependency dropped. -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ffake.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o buf.obj -c ../buf.c -../buf.c: In function ‘xmlBufMemoryError’: -../buf.c:94:5: warning: too many arguments for format [-Wformat-extra-args] - 94 | __xmlSimpleError(XML_FROM_BUFFER, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../buf.c: In function ‘xmlBufOverflowError’: -../buf.c:109:5: warning: too many arguments for format [-Wformat-extra-args] - 109 | __xmlSimpleError(XML_FROM_BUFFER, XML_BUF_OVERFLOW, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -In file included from ../buf.c:30: -../buf.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o c14n.obj -c ../c14n.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fmount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fsfile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o catalog.obj -c ../catalog.c -In file included from ../catalog.c:38: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o chvalid.obj -c ../chvalid.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fsuper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fsuper_cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ftest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o debugXML.obj -c ../debugXML.c -In file included from ../debugXML.c:24: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dict.obj -c ../dict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o DOCBparser.obj -c ../DOCBparser.c -In file included from ../os/default/libxml/DOCBparser.h:18, - from ../DOCBparser.c:18: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o encoding.obj -c ../encoding.c -../encoding.c: In function ‘xmlEncodingErrMemory’: -../encoding.c:86:5: warning: too many arguments for format [-Wformat-extra-args] - 86 | __xmlSimpleError(XML_FROM_I18N, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../encoding.c: In function ‘xmlCharEncCloseFunc’: -../encoding.c:2856:12: warning: variable ‘handler_in_list’ set but not used [-Wunused-but-set-variable] - 2856 | int i, handler_in_list = 0; - | ^~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o entities.obj -c ../entities.c -../entities.c: In function ‘xmlEntitiesErrMemory’: -../entities.c:76:5: warning: too many arguments for format [-Wformat-extra-args] - 76 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -In file included from ../entities.c:20: -../entities.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o error.obj -c ../error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o globals.obj -c ../globals.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o hash.obj -c ../hash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o HTMLparser.obj -c ../HTMLparser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o HTMLtree.obj -c ../HTMLtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDcore.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o legacy.obj -c ../legacy.c -In file included from ../legacy.c:19: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDfamily.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o list.obj -c ../list.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDlog.c -../H5FDlog.c: In function ‘H5FD_log_open’: -../H5FDlog.c:630:95: warning: ‘stat_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDlog.c:630:59: warning: ‘stat_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDlog.c:628:95: warning: ‘open_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDlog.c:628:59: warning: ‘open_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDmulti.c -In file included from /usr/include/string.h:495, - from ../H5FDmulti.c:27: -In function ‘strncpy’, - inlined from ‘H5FD_multi_sb_encode’ at ../H5FDmulti.c:697:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDmulti.c: In function ‘H5FD_multi_sb_encode’: -../H5FDmulti.c:696:20: note: length computed here - 696 | size_t n = strlen(file->fa.memb_name[mt]) + 1; - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nanoftp.obj -c ../nanoftp.c -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:45: warning: "EINPROGRESS" redefined - 45 | #define EINPROGRESS WSAEINPROGRESS - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:158: note: this is the location of the previous definition - 158 | #define EINPROGRESS 112 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:46: warning: "EALREADY" redefined - 46 | #define EALREADY WSAEALREADY - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:106: note: this is the location of the previous definition - 106 | #define EALREADY 103 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:47: warning: "ENOTSOCK" redefined - 47 | #define ENOTSOCK WSAENOTSOCK - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:146: note: this is the location of the previous definition - 146 | #define ENOTSOCK 128 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:48: warning: "EDESTADDRREQ" redefined - 48 | #define EDESTADDRREQ WSAEDESTADDRREQ - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:118: note: this is the location of the previous definition - 118 | #define EDESTADDRREQ 109 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:49: warning: "EMSGSIZE" redefined - 49 | #define EMSGSIZE WSAEMSGSIZE - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:126: note: this is the location of the previous definition - 126 | #define EMSGSIZE 115 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:50: warning: "EPROTOTYPE" redefined - 50 | #define EPROTOTYPE WSAEPROTOTYPE - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:231: note: this is the location of the previous definition - 231 | #define EPROTOTYPE 136 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:51: warning: "ENOPROTOOPT" redefined - 51 | #define ENOPROTOOPT WSAENOPROTOOPT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:142: note: this is the location of the previous definition - 142 | #define ENOPROTOOPT 123 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:52: warning: "EPROTONOSUPPORT" redefined - 52 | #define EPROTONOSUPPORT WSAEPROTONOSUPPORT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:178: note: this is the location of the previous definition - 178 | #define EPROTONOSUPPORT 135 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:54: warning: "EOPNOTSUPP" redefined - 54 | #define EOPNOTSUPP WSAEOPNOTSUPP - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:162: note: this is the location of the previous definition - 162 | #define EOPNOTSUPP 130 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:56: warning: "EAFNOSUPPORT" redefined - 56 | #define EAFNOSUPPORT WSAEAFNOSUPPORT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:82: note: this is the location of the previous definition - 82 | #define EAFNOSUPPORT 102 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:57: warning: "EADDRINUSE" redefined - 57 | #define EADDRINUSE WSAEADDRINUSE - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:86: note: this is the location of the previous definition - 86 | #define EADDRINUSE 100 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:58: warning: "EADDRNOTAVAIL" redefined - 58 | #define EADDRNOTAVAIL WSAEADDRNOTAVAIL - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:90: note: this is the location of the previous definition - 90 | #define EADDRNOTAVAIL 101 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:59: warning: "ENETDOWN" redefined - 59 | #define ENETDOWN WSAENETDOWN - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:130: note: this is the location of the previous definition - 130 | #define ENETDOWN 116 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:60: warning: "ENETUNREACH" redefined - 60 | #define ENETUNREACH WSAENETUNREACH - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:138: note: this is the location of the previous definition - 138 | #define ENETUNREACH 118 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:61: warning: "ENETRESET" redefined - 61 | #define ENETRESET WSAENETRESET - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:134: note: this is the location of the previous definition - 134 | #define ENETRESET 117 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:62: warning: "ECONNABORTED" redefined - 62 | #define ECONNABORTED WSAECONNABORTED - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:102: note: this is the location of the previous definition - 102 | #define ECONNABORTED 106 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:63: warning: "ECONNRESET" redefined - 63 | #define ECONNRESET WSAECONNRESET - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:114: note: this is the location of the previous definition - 114 | #define ECONNRESET 108 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:64: warning: "ENOBUFS" redefined - 64 | #define ENOBUFS WSAENOBUFS - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:98: note: this is the location of the previous definition - 98 | #define ENOBUFS 119 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:65: warning: "EISCONN" redefined - 65 | #define EISCONN WSAEISCONN - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:94: note: this is the location of the previous definition - 94 | #define EISCONN 113 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:66: warning: "ENOTCONN" redefined - 66 | #define ENOTCONN WSAENOTCONN - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:150: note: this is the location of the previous definition - 150 | #define ENOTCONN 126 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:68: warning: "ETIMEDOUT" redefined - 68 | #define ETIMEDOUT WSAETIMEDOUT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:223: note: this is the location of the previous definition - 223 | #define ETIMEDOUT 138 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:69: warning: "ECONNREFUSED" redefined - 69 | #define ECONNREFUSED WSAECONNREFUSED - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:110: note: this is the location of the previous definition - 110 | #define ECONNREFUSED 107 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:70: warning: "ELOOP" redefined - 70 | #define ELOOP WSAELOOP - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:227: note: this is the location of the previous definition - 227 | #define ELOOP 114 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:72: warning: "EHOSTUNREACH" redefined - 72 | #define EHOSTUNREACH WSAEHOSTUNREACH - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:122: note: this is the location of the previous definition - 122 | #define EHOSTUNREACH 110 - | -../nanoftp.c: In function ‘xmlFTPErrMemory’: -../nanoftp.c:176:5: warning: too many arguments for format [-Wformat-extra-args] - 176 | __xmlSimpleError(XML_FROM_FTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../nanoftp.c: In function ‘xmlNanoFTPGetConnection’: -../nanoftp.c:1479:66: warning: pointer targets in passing argument 3 of ‘getsockname’ differ in signedness [-Wpointer-sign] - 1479 | getsockname(ctxt->dataFd, (struct sockaddr *) &dataAddr, &dataAddrLen); - | ^~~~~~~~~~~~ - | | - | unsigned int * -In file included from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/winsock2.h:1009:82: note: expected ‘int *’ but argument is of type ‘unsigned int *’ - 1009 | WINSOCK_API_LINKAGE int WSAAPI getsockname(SOCKET s,struct sockaddr *name,int *namelen); - | ~~~~~^~~~~~~ -../nanoftp.c:1492:66: warning: pointer targets in passing argument 3 of ‘getsockname’ differ in signedness [-Wpointer-sign] - 1492 | getsockname(ctxt->dataFd, (struct sockaddr *) &dataAddr, &dataAddrLen); - | ^~~~~~~~~~~~ - | | - | unsigned int * -In file included from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/winsock2.h:1009:82: note: expected ‘int *’ but argument is of type ‘unsigned int *’ - 1009 | WINSOCK_API_LINKAGE int WSAAPI getsockname(SOCKET s,struct sockaddr *name,int *namelen); - | ~~~~~^~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDsec2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDspace.c -../H5FDspace.c: In function ‘H5FD_extend’: -../H5FDspace.c:104:13: warning: unused variable ‘extra’ [-Wunused-variable] - 104 | hsize_t extra; /* Extra space to allocate, to align request */ - | ^~~~~ -../H5FDspace.c:102:13: warning: unused variable ‘orig_size’ [-Wunused-variable] - 102 | hsize_t orig_size = size; /* Original allocation size */ - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDstdio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nanohttp.obj -c ../nanohttp.c -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:45: warning: "EINPROGRESS" redefined - 45 | #define EINPROGRESS WSAEINPROGRESS - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:158: note: this is the location of the previous definition - 158 | #define EINPROGRESS 112 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:46: warning: "EALREADY" redefined - 46 | #define EALREADY WSAEALREADY - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:106: note: this is the location of the previous definition - 106 | #define EALREADY 103 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:47: warning: "ENOTSOCK" redefined - 47 | #define ENOTSOCK WSAENOTSOCK - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:146: note: this is the location of the previous definition - 146 | #define ENOTSOCK 128 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:48: warning: "EDESTADDRREQ" redefined - 48 | #define EDESTADDRREQ WSAEDESTADDRREQ - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:118: note: this is the location of the previous definition - 118 | #define EDESTADDRREQ 109 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:49: warning: "EMSGSIZE" redefined - 49 | #define EMSGSIZE WSAEMSGSIZE - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:126: note: this is the location of the previous definition - 126 | #define EMSGSIZE 115 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:50: warning: "EPROTOTYPE" redefined - 50 | #define EPROTOTYPE WSAEPROTOTYPE - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:231: note: this is the location of the previous definition - 231 | #define EPROTOTYPE 136 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:51: warning: "ENOPROTOOPT" redefined - 51 | #define ENOPROTOOPT WSAENOPROTOOPT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:142: note: this is the location of the previous definition - 142 | #define ENOPROTOOPT 123 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:52: warning: "EPROTONOSUPPORT" redefined - 52 | #define EPROTONOSUPPORT WSAEPROTONOSUPPORT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:178: note: this is the location of the previous definition - 178 | #define EPROTONOSUPPORT 135 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:54: warning: "EOPNOTSUPP" redefined - 54 | #define EOPNOTSUPP WSAEOPNOTSUPP - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:162: note: this is the location of the previous definition - 162 | #define EOPNOTSUPP 130 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:56: warning: "EAFNOSUPPORT" redefined - 56 | #define EAFNOSUPPORT WSAEAFNOSUPPORT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:82: note: this is the location of the previous definition - 82 | #define EAFNOSUPPORT 102 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:57: warning: "EADDRINUSE" redefined - 57 | #define EADDRINUSE WSAEADDRINUSE - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:86: note: this is the location of the previous definition - 86 | #define EADDRINUSE 100 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:58: warning: "EADDRNOTAVAIL" redefined - 58 | #define EADDRNOTAVAIL WSAEADDRNOTAVAIL - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:90: note: this is the location of the previous definition - 90 | #define EADDRNOTAVAIL 101 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:59: warning: "ENETDOWN" redefined - 59 | #define ENETDOWN WSAENETDOWN - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:130: note: this is the location of the previous definition - 130 | #define ENETDOWN 116 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:60: warning: "ENETUNREACH" redefined - 60 | #define ENETUNREACH WSAENETUNREACH - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:138: note: this is the location of the previous definition - 138 | #define ENETUNREACH 118 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:61: warning: "ENETRESET" redefined - 61 | #define ENETRESET WSAENETRESET - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:134: note: this is the location of the previous definition - 134 | #define ENETRESET 117 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:62: warning: "ECONNABORTED" redefined - 62 | #define ECONNABORTED WSAECONNABORTED - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:102: note: this is the location of the previous definition - 102 | #define ECONNABORTED 106 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:63: warning: "ECONNRESET" redefined - 63 | #define ECONNRESET WSAECONNRESET - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:114: note: this is the location of the previous definition - 114 | #define ECONNRESET 108 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:64: warning: "ENOBUFS" redefined - 64 | #define ENOBUFS WSAENOBUFS - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:98: note: this is the location of the previous definition - 98 | #define ENOBUFS 119 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:65: warning: "EISCONN" redefined - 65 | #define EISCONN WSAEISCONN - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:94: note: this is the location of the previous definition - 94 | #define EISCONN 113 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:66: warning: "ENOTCONN" redefined - 66 | #define ENOTCONN WSAENOTCONN - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:150: note: this is the location of the previous definition - 150 | #define ENOTCONN 126 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:68: warning: "ETIMEDOUT" redefined - 68 | #define ETIMEDOUT WSAETIMEDOUT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:223: note: this is the location of the previous definition - 223 | #define ETIMEDOUT 138 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:69: warning: "ECONNREFUSED" redefined - 69 | #define ECONNREFUSED WSAECONNREFUSED - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:110: note: this is the location of the previous definition - 110 | #define ECONNREFUSED 107 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:70: warning: "ELOOP" redefined - 70 | #define ELOOP WSAELOOP - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:227: note: this is the location of the previous definition - 227 | #define ELOOP 114 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:72: warning: "EHOSTUNREACH" redefined - 72 | #define EHOSTUNREACH WSAEHOSTUNREACH - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:122: note: this is the location of the previous definition - 122 | #define EHOSTUNREACH 110 - | -../nanohttp.c: In function ‘xmlHTTPErrMemory’: -../nanohttp.c:177:5: warning: too many arguments for format [-Wformat-extra-args] - 177 | __xmlSimpleError(XML_FROM_HTTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../nanohttp.c: In function ‘xmlNanoHTTPConnectAttempt’: -../nanohttp.c:1002:67: warning: pointer targets in passing argument 5 of ‘getsockopt’ differ in signedness [-Wpointer-sign] - 1002 | if (getsockopt(s, SOL_SOCKET, SO_ERROR, (char *) &status, &len) < - | ^~~~ - | | - | unsigned int * -In file included from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/winsock2.h:1010:94: note: expected ‘int *’ but argument is of type ‘unsigned int *’ - 1010 | WINSOCK_API_LINKAGE int WSAAPI getsockopt(SOCKET s,int level,int optname,char *optval,int *optlen); - | ~~~~~^~~~~~ -../nanohttp.c: In function ‘xmlNanoHTTPConnectHost’: -../nanohttp.c:1050:9: warning: unused variable ‘i’ [-Wunused-variable] - 1050 | int i; - | ^ -../nanohttp.c:1043:20: warning: unused variable ‘ia’ [-Wunused-variable] - 1043 | struct in_addr ia; - | ^~ -../nanohttp.c:1041:21: warning: unused variable ‘h’ [-Wunused-variable] - 1041 | struct hostent *h; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FScache.c -../H5FScache.c: In function ‘H5FS__cache_sinfo_deserialize’: -../H5FScache.c:1013:17: warning: variable ‘old_tot_space’ set but not used [-Wunused-but-set-variable] - 1013 | hsize_t old_tot_space; /* Total space managed from header */ - | ^~~~~~~~~~~~~ -../H5FScache.c:1012:17: warning: variable ‘old_ghost_sect_count’ set but not used [-Wunused-but-set-variable] - 1012 | hsize_t old_ghost_sect_count; /* Total ghost section count from header */ - | ^~~~~~~~~~~~~~~~~~~~ -../H5FScache.c:1011:17: warning: variable ‘old_serial_sect_count’ set but not used [-Wunused-but-set-variable] - 1011 | hsize_t old_serial_sect_count; /* Total serializable section count from header */ - | ^~~~~~~~~~~~~~~~~~~~~ -../H5FScache.c:1010:17: warning: variable ‘old_tot_sect_count’ set but not used [-Wunused-but-set-variable] - 1010 | hsize_t old_tot_sect_count; /* Total section count from header */ - | ^~~~~~~~~~~~~~~~~~ -../H5FScache.c: In function ‘H5FS__cache_sinfo_image_len’: -../H5FScache.c:1119:19: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] - 1119 | const H5FS_t *fspace; /* Free space header */ - | ^~~~~~ -../H5FScache.c: In function ‘H5FS__cache_sinfo_serialize’: -../H5FScache.c:1249:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] - 1249 | H5FS_t *fspace; /* Free space header */ - | ^~~~~~ -../H5FScache.c: In function ‘H5FS__cache_sinfo_free_icr’: -../H5FScache.c:1396:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] - 1396 | H5FS_t *fspace; /* Free space header */ - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FStest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5G.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gcompact.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Gcompact.c:28: -In function ‘strncpy’, - inlined from ‘H5G__compact_get_name_by_idx’ at ../H5Gcompact.c:246:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Gcompact.c:28: -../H5Gcompact.c: In function ‘H5G__compact_get_name_by_idx’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gcompact.c:242:26: note: in expansion of macro ‘HDstrlen’ - 242 | ret_value = (ssize_t)HDstrlen(ltable.lnks[idx].name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gdense.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Gdense.c:35: -In function ‘strncpy’, - inlined from ‘H5G__dense_get_name_by_idx’ at ../H5Gdense.c:1278:13: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Gdense.c:35: -../H5Gdense.c: In function ‘H5G__dense_get_name_by_idx’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gdense.c:1274:30: note: in expansion of macro ‘HDstrlen’ - 1274 | ret_value = (ssize_t)HDstrlen(ltable.lnks[n].name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gent.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Glink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o parser.obj -c ../parser.c -../parser.c: In function ‘xmlAddSpecialAttr’: -../parser.c:1327:22: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 1327 | (void *) (long) type); - | ^ -../parser.c: In function ‘xmlCleanSpecialAttrCallback’: -../parser.c:1346:10: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1346 | if (((long) payload) == XML_ATTRIBUTE_CDATA) { - | ^ -../parser.c: In function ‘nameNsPush’: -../parser.c:1858:43: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 1858 | ctxt->pushTab[ctxt->nameNr * 3 + 2] = (void *) (long) nsNr; - | ^ -../parser.c: In function ‘xmlParseAttribute2’: -../parser.c:9262:22: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 9262 | type = (int) (long) xmlHashQLookup2(ctxt->attsSpecial, - | ^ -../parser.c: In function ‘xmlParseTryOrFinish’: -../parser.c:11788:16: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] -11788 | (int) (long) ctxt->pushTab[ctxt->nameNr * 3 - 1], 0); - | ^ -In file included from ../parser.c:51: -../parser.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gname.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Gname.c:35: -In function ‘strncat’, - inlined from ‘H5G_build_fullpath’ at ../H5Gname.c:327:5, - inlined from ‘H5G_build_fullpath_refstr_str’ at ../H5Gname.c:367:17: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Gname.c:35: -../H5Gname.c: In function ‘H5G_build_fullpath_refstr_str’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gname.c:316:16: note: in expansion of macro ‘HDstrlen’ - 316 | name_len = HDstrlen(name); - | ^~~~~~~~ -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Gname.c:35: -In function ‘strncat’, - inlined from ‘H5G_name_move_path’ at ../H5Gname.c:771:13, - inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:1028:24, - inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Gname.c:35: -../H5Gname.c: In function ‘H5G_name_replace_cb’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gname.c:717:23: note: in expansion of macro ‘HDstrlen’ - 717 | full_suffix_len = HDstrlen(full_suffix); - | ^~~~~~~~ -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Gname.c:35: -In function ‘strncat’, - inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:1040:17, - inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Gname.c:35: -../H5Gname.c: In function ‘H5G_name_replace_cb’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gname.c:1024:35: note: in expansion of macro ‘HDstrlen’ - 1024 | full_suffix_len = HDstrlen(full_suffix); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gnode.c -../H5Gnode.c: In function ‘H5G_node_remove’: -../H5Gnode.c:790:21: warning: unused variable ‘lt_key’ [-Wunused-variable] - 790 | H5G_node_key_t *lt_key = (H5G_node_key_t *)_lt_key; - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o parserInternals.obj -c ../parserInternals.c -../parserInternals.c: In function ‘xmlNextChar’: -../parserInternals.c:473:9: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 473 | if (c == 0xC0) - | ^~ -../parserInternals.c:475:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 475 | if (cur[1] == 0) { - | ^~ -In file included from ../parserInternals.c:42: -../parserInternals.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gobj.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Goh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Groot.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pattern.obj -c ../pattern.c -In file included from ../pattern.c:35: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gstab.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Gstab.c:29: -In function ‘strncpy’, - inlined from ‘H5G__stab_get_name_by_idx’ at ../H5Gstab.c:803:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Gstab.c:29: -../H5Gstab.c: In function ‘H5G__stab_get_name_by_idx’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gstab.c:799:26: note: in expansion of macro ‘HDstrlen’ - 799 | ret_value = (ssize_t)HDstrlen(udata.name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gtraverse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HF.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFcache.c -../H5HFcache.c: In function ‘H5HF__cache_hdr_serialize’: -../H5HFcache.c:774:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 774 | hdr->f = f; - | ^ -../H5HFcache.c: In function ‘H5HF__cache_iblock_serialize’: -../H5HFcache.c:1361:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1361 | hdr->f = f; - | ^ -../H5HFcache.c: In function ‘H5HF__cache_iblock_notify’: -../H5HFcache.c:1477:18: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] - 1477 | unsigned indir_idx; /* Index in parent's child iblock pointer array */ - | ^~~~~~~~~ -../H5HFcache.c:1476:26: warning: unused variable ‘par_iblock’ [-Wunused-variable] - 1476 | H5HF_indirect_t *par_iblock = iblock->parent; - | ^~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFdtable.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o relaxng.obj -c ../relaxng.c -../relaxng.c: In function ‘xmlRelaxNGComputeInterleaves’: -../relaxng.c:4407:44: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 4407 | (void *) (long) (i + 1)); - | ^ -../relaxng.c:4415:48: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 4415 | (void *) (long) (i + 1)); - | ^ -../relaxng.c:4419:48: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 4419 | (void *) (long) (i + 1)); - | ^ -../relaxng.c:4426:48: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 4426 | (void *) (long) (i + 1)); - | ^ -../relaxng.c:4430:48: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 4430 | (void *) (long) (i + 1)); - | ^ -../relaxng.c: In function ‘xmlRelaxNGValidateInterleave’: -../relaxng.c:9390:22: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 9390 | i = ((long) tmp) - 1; - | ^ -In file included from ../relaxng.c:25: -../relaxng.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFhuge.c -../H5HFhuge.c: In function ‘H5HF_huge_write’: -../H5HFhuge.c:890:8: warning: ‘obj_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 890 | if(H5F_block_write(hdr->f, H5FD_MEM_FHEAP_HUGE_OBJ, obj_addr, obj_size, H5AC_rawdata_dxpl_id, obj) < 0) - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o SAX2.obj -c ../SAX2.c -../SAX2.c: In function ‘xmlSAX2TextNode’: -../SAX2.c:1911:19: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 1911 | ret->psvi = (void *) (long) ctxt->input->line; - | ^ -In file included from ../SAX2.c:18: -../SAX2.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o SAX.obj -c ../SAX.c -In file included from ../SAX.c:18: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o schematron.obj -c ../schematron.c -../schematron.c: In function ‘xmlSchematronPErrMemory’: -../schematron.c:234:22: warning: too many arguments for format [-Wformat-extra-args] - 234 | extra); - | ^~~~~ -../schematron.c: In function ‘xmlSchematronVErrMemory’: -../schematron.c:284:22: warning: too many arguments for format [-Wformat-extra-args] - 284 | extra); - | ^~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFiter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFman.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o threads.obj -c ../threads.c -../threads.c: In function ‘__xmlGlobalInitMutexLock’: -../threads.c:461:43: warning: passing argument 1 of ‘_InterlockedCompareExchangePointer’ from incompatible pointer type [-Wincompatible-pointer-types] - 461 | InterlockedCompareExchangePointer(&global_init_lock, cs, NULL); - | ^~~~~~~~~~~~~~~~~ - | | - | struct _RTL_CRITICAL_SECTION * volatile* -In file included from /usr/share/mingw-w64/include/winnt.h:27, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from ../threads.c:30: -/usr/share/mingw-w64/include/psdk_inc/intrin-impl.h:1571:58: note: expected ‘void * volatile*’ but argument is of type ‘struct _RTL_CRITICAL_SECTION * volatile*’ - 1571 | void *_InterlockedCompareExchangePointer(void *volatile *Destination, void *ExChange, void *Comperand) { - | ~~~~~~~~~~~~~~~~^~~~~~~~~~~ -../threads.c: In function ‘xmlOnceInit’: -../threads.c:962:34: warning: pointer targets in passing argument 1 of ‘_InterlockedIncrement’ differ in signedness [-Wpointer-sign] - 962 | if (InterlockedIncrement(&run_once.control) == 1) { - | ^~~~~~~~~~~~~~~~~ - | | - | DWORD * {aka long unsigned int *} -In file included from /usr/share/mingw-w64/include/winnt.h:27, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from ../threads.c:30: -/usr/share/mingw-w64/include/psdk_inc/intrin-impl.h:1505:51: note: expected ‘volatile long int *’ but argument is of type ‘DWORD *’ {aka ‘long unsigned int *’} - 1505 | __LONG32 _InterlockedIncrement(__LONG32 volatile *Addend) { - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFsection.c -../H5HFsection.c: In function ‘H5HF_sect_single_valid’: -../H5HFsection.c:1191:20: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] - 1191 | herr_t status; /* Generic status value */ - | ^~~~~~ -../H5HFsection.c:1189:20: warning: variable ‘dblock_overhead’ set but not used [-Wunused-but-set-variable] - 1189 | size_t dblock_overhead; /* Direct block's overhead */ - | ^~~~~~~~~~~~~~~ -../H5HFsection.c: In function ‘H5HF_sect_row_valid’: -../H5HFsection.c:2000:14: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] - 2000 | unsigned indir_idx; /* Index of row in underlying indirect section's row array */ - | ^~~~~~~~~ -../H5HFsection.c: In function ‘H5HF_sect_indirect_valid’: -../H5HFsection.c:4107:44: warning: variable ‘tmp_row_sect2’ set but not used [-Wunused-but-set-variable] - 4107 | const H5HF_free_section_t *tmp_row_sect2; /* Pointer to row section */ - | ^~~~~~~~~~~~~ -../H5HFsection.c:4099:40: warning: variable ‘tmp_row_sect’ set but not used [-Wunused-but-set-variable] - 4099 | const H5HF_free_section_t *tmp_row_sect; /* Pointer to row section */ - | ^~~~~~~~~~~~ -../H5HFsection.c:4134:44: warning: variable ‘tmp_child_sect2’ set but not used [-Wunused-but-set-variable] - 4134 | const H5HF_free_section_t *tmp_child_sect2; /* Pointer to child indirect section */ - | ^~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFtiny.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HGcache.c -../H5HGcache.c: In function ‘H5HG__cache_heap_get_final_load_size’: -../H5HGcache.c:225:17: warning: ‘*((void *)&heap+280)’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 225 | *actual_len = heap.size; - | ~~~~~~~~~~~~^~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HGdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HGquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tree.obj -c ../tree.c -../tree.c: In function ‘xmlTreeErrMemory’: -../tree.c:74:5: warning: too many arguments for format [-Wformat-extra-args] - 74 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../tree.c: In function ‘xmlGetLineNoInternal’: -../tree.c:4599:19: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 4599 | result = (long) node->psvi; - | ^ -../tree.c: In function ‘xmlGetNodePath’: -../tree.c:4758:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 4758 | if (tmp->type == XML_COMMENT_NODE) - | ^~ -../tree.c:4760:21: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 4760 | tmp = tmp->next; - | ^~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLprfx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLdblk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o uri.obj -c ../uri.c -../uri.c: In function ‘xmlCanonicPath’: -../uri.c:2475:14: warning: pointer targets in assignment from ‘xmlChar *’ {aka ‘unsigned char *’} to ‘char *’ differ in signedness [-Wpointer-sign] - 2475 | uri->scheme = xmlStrdup(BAD_CAST "file"); - | ^ -../uri.c:2484:4: warning: pointer targets in assignment from ‘char *’ to ‘xmlChar *’ {aka ‘unsigned char *’} differ in signedness [-Wpointer-sign] - 2484 | p = uri->path + 1; - | ^ -../uri.c:2485:10: warning: pointer targets in passing argument 1 of ‘strncpy’ differ in signedness [-Wpointer-sign] - 2485 | strncpy(p, path, len + 1); - | ^ - | | - | xmlChar * {aka unsigned char *} -In file included from /usr/share/mingw-w64/include/io.h:10, - from ../os/WIN32/config.h:23, - from ../libxml.h:39, - from ../uri.c:12: -/usr/share/mingw-w64/include/string.h:89:9: note: expected ‘char * restrict’ but argument is of type ‘xmlChar *’ {aka ‘unsigned char *’} - 89 | char *strncpy(char * __restrict__ _Dest,const char * __restrict__ _Source,size_t _Count) __MINGW_ATTRIB_DEPRECATED_SEC_WARN; - | ^~~~~~~ -../uri.c:2485:13: warning: pointer targets in passing argument 2 of ‘strncpy’ differ in signedness [-Wpointer-sign] - 2485 | strncpy(p, path, len + 1); - | ^~~~ - | | - | const xmlChar * {aka const unsigned char *} -In file included from /usr/share/mingw-w64/include/io.h:10, - from ../os/WIN32/config.h:23, - from ../libxml.h:39, - from ../uri.c:12: -/usr/share/mingw-w64/include/string.h:89:9: note: expected ‘const char * restrict’ but argument is of type ‘const xmlChar *’ {aka ‘const unsigned char *’} - 89 | char *strncpy(char * __restrict__ _Dest,const char * __restrict__ _Source,size_t _Count) __MINGW_ATTRIB_DEPRECATED_SEC_WARN; - | ^~~~~~~ -../uri.c:2487:12: warning: pointer targets in assignment from ‘xmlChar *’ {aka ‘unsigned char *’} to ‘char *’ differ in signedness [-Wpointer-sign] - 2487 | uri->path = xmlStrdup(path); - | ^ -../uri.c:2492:4: warning: pointer targets in assignment from ‘char *’ to ‘xmlChar *’ {aka ‘unsigned char *’} differ in signedness [-Wpointer-sign] - 2492 | p = uri->path; - | ^ -../uri.c:2393:9: warning: unused variable ‘i’ [-Wunused-variable] - 2393 | int i = 0; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5I.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Itest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5L.c -../H5L.c: In function ‘H5L_move_cb’: -../H5L.c:2639:41: warning: passing argument 1 of ‘H5RS_wrap’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 2639 | dst_name_r = H5RS_wrap(udata->dst_name); - | ~~~~~^~~~~~~~~~ -In file included from ../H5Gprivate.h:35, - from ../H5Tprivate.h:28, - from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5L.c:26: -../H5RSprivate.h:47:20: note: expected ‘char *’ but argument is of type ‘const char *’ - 47 | H5_DLL H5RS_str_t *H5RS_wrap(char *s); - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Lexternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o valid.obj -c ../valid.c -In file included from ../valid.c:24: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MF.c -../H5MF.c: In function ‘H5MF_settle_meta_data_fsm’: -../H5MF.c:3249:17: warning: unused variable ‘fs_stat’ [-Wunused-variable] - 3249 | H5FS_stat_t fs_stat; /* Information for hdr FSM */ - | ^~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MFaggr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xinclude.obj -c ../xinclude.c -In file included from ../xinclude.c:22: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xlink.obj -c ../xlink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MFsection.c -../H5MFsection.c: In function ‘H5MF_sect_split’: -../H5MFsection.c:376:22: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 376 | FUNC_LEAVE_NOAPI((H5FS_section_info_t *)ret_value) - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MPtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlIO.obj -c ../xmlIO.c -../xmlIO.c:63: warning: "stat" redefined - 63 | # define stat _stat - | -In file included from ../xmlIO.c:24: -/usr/share/mingw-w64/include/sys/stat.h:279: note: this is the location of the previous definition - 279 | #define stat _stat64 - | -In file included from ../os/default/libxml/nanoftp.h:20, - from ../xmlIO.c:92: -/usr/share/mingw-w64/include/winsock2.h:15:2: warning: #warning Please include winsock2.h before windows.h [-Wcpp] - 15 | #warning Please include winsock2.h before windows.h - | ^~~~~~~ -../xmlIO.c: In function ‘xmlIOErrMemory’: -../xmlIO.c:256:5: warning: too many arguments for format [-Wformat-extra-args] - 256 | __xmlSimpleError(XML_FROM_IO, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../xmlIO.c: In function ‘xmlFdRead’: -../xmlIO.c:829:22: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 829 | ret = read((int) (long) context, &buffer[0], len); - | ^ -../xmlIO.c: In function ‘xmlFdWrite’: -../xmlIO.c:850:20: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 850 | ret = write((int) (long) context, &buffer[0], len); - | ^ -../xmlIO.c: In function ‘xmlFdClose’: -../xmlIO.c:868:23: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 868 | ret = close((int) (long) context); - | ^ -../xmlIO.c: In function ‘xmlZMemBuffExtend’: -../xmlIO.c:1675:33: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘size_t’ {aka ‘long long unsigned int’} [-Wformat=] - 1675 | "xmlZMemBuffExtend: %s %lu bytes.\n", - | ~~^ - | | - | long unsigned int - | %I64u - 1676 | "Allocation failure extending output buffer to", - 1677 | new_size ); - | ~~~~~~~~ - | | - | size_t {aka long long unsigned int} -../xmlIO.c: In function ‘xmlParserInputBufferCreateFd’: -../xmlIO.c:3006:24: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 3006 | ret->context = (void *) (long) fd; - | ^ -../xmlIO.c: In function ‘xmlOutputBufferCreateFd’: -../xmlIO.c:3112:24: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 3112 | ret->context = (void *) (long) fd; - | ^ -In file included from ../xmlIO.c:88: -../xmlIO.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5O.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlmemory.obj -c ../xmlmemory.c -../xmlmemory.c: In function ‘xmlMemFree’: -../xmlmemory.c:476:33: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 476 | "xmlMemFree(%lX) error\n", (unsigned long) ptr); - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oainfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oalloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlreader.obj -c ../xmlreader.c -In file included from ../xmlreader.c:34: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oattr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oattribute.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Obogus.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Obtreek.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocache_image.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ochunk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocont.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlregexp.obj -c ../xmlregexp.c -In file included from ../xmlregexp.c:31: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlmodule.obj -c ../xmlmodule.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Odbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Odrvinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlsave.obj -c ../xmlsave.c -../xmlsave.c: In function ‘xmlSaveErrMemory’: -../xmlsave.c:111:5: warning: too many arguments for format [-Wformat-extra-args] - 111 | __xmlSimpleError(XML_FROM_OUTPUT, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -In file included from ../xmlsave.c:14: -../xmlsave.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Odtype.c -../H5Odtype.c: In function ‘H5O_dtype_copy’: -../H5Odtype.c:1192:32: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1192 | if(NULL == (dst = H5T_copy(src, H5T_COPY_ALL))) - | ^~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Odtype.c:19: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Odtype.c: In function ‘H5O_dtype_pre_copy_file’: -../H5Odtype.c:1541:49: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1541 | if(NULL == (udata->src_dtype = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) - | ^~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Odtype.c:19: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oefl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ofill.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oflush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ofsinfo.c -../H5Ofsinfo.c: In function ‘H5O_fsinfo_decode’: -../H5Ofsinfo.c:132:35: warning: ‘threshold’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 132 | fsinfo->threshold = threshold; - | ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oginfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Olayout.c -../H5Olayout.c: In function ‘H5O__layout_decode’: -../H5Olayout.c:412:90: warning: ‘tmp_hsize’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 412 | if(NULL == (mesg->storage.u.virt.list = (H5O_storage_virtual_ent_t *)H5MM_calloc((size_t)tmp_hsize * sizeof(H5O_storage_virtual_ent_t)))) - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Olinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Olink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Omessage.c -../H5Omessage.c: In function ‘H5O_msg_reset_share’: -../H5Omessage.c:1691:28: warning: variable ‘type’ set but not used [-Wunused-but-set-variable] - 1691 | const H5O_msg_class_t *type; /* Actual H5O class type for the ID */ - | ^~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Omtime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oname.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Onull.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Opline.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Orefcount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Osdspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oshared.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oshmesg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ostab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Otest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ounknown.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5P.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pacpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdapl.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Pdapl.c:35: -In function ‘strncpy’, - inlined from ‘H5Pget_efile_prefix’ at ../H5Pdapl.c:1280:13: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Pdapl.c:35: -../H5Pdapl.c: In function ‘H5Pget_efile_prefix’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Pdapl.c:1278:15: note: in expansion of macro ‘HDstrlen’ - 1278 | len = HDstrlen(my_prefix); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlschemas.obj -c ../xmlschemas.c -../xmlschemas.c: In function ‘xmlSchemaPSimpleErr’: -../xmlschemas.c:1861:22: warning: too many arguments for format [-Wformat-extra-args] - 1861 | msg); - | ^~~ -../xmlschemas.c: In function ‘xmlSchemaPErrMemory’: -../xmlschemas.c:1878:22: warning: too many arguments for format [-Wformat-extra-args] - 1878 | extra); - | ^~~~~ -../xmlschemas.c: In function ‘xmlSchemaVErrMemory’: -../xmlschemas.c:2002:22: warning: too many arguments for format [-Wformat-extra-args] - 2002 | extra); - | ^~~~~ -../xmlschemas.c: In function ‘xmlSchemaPResCompAttrErr’: -../xmlschemas.c:2834:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 2834 | if (refTypeStr == NULL) - | ^~ -../xmlschemas.c:2836:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 2836 | xmlSchemaPErrExt(ctxt, ownerElem, error, - | ^~~~~~~~~~~~~~~~ -../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeQNameValue’: -../xmlschemas.c:5824:6: warning: too many arguments for format [-Wformat-extra-args] - 5824 | NULL, value, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlGetMaxOccurs’: -../xmlschemas.c:6047:3: warning: too many arguments for format [-Wformat-extra-args] - 6047 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:6061:6: warning: too many arguments for format [-Wformat-extra-args] - 6061 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:6078:6: warning: too many arguments for format [-Wformat-extra-args] - 6078 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c: In function ‘xmlGetMinOccurs’: -../xmlschemas.c:6113:6: warning: too many arguments for format [-Wformat-extra-args] - 6113 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:6130:6: warning: too many arguments for format [-Wformat-extra-args] - 6130 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c: In function ‘xmlSchemaPGetBoolNodeValue’: -../xmlschemas.c:6175:6: warning: too many arguments for format [-Wformat-extra-args] - 6175 | NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlGetBooleanProp’: -../xmlschemas.c:6223:6: warning: too many arguments for format [-Wformat-extra-args] - 6223 | NULL, val, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeValue’: -../xmlschemas.c:6328:6: warning: too many arguments for format [-Wformat-extra-args] - 6328 | type, NULL, value, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaParseWildcardNs’: -../xmlschemas.c:6763:6: warning: too many arguments for format [-Wformat-extra-args] - 6763 | NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c:6801:7: warning: too many arguments for format [-Wformat-extra-args] - 6801 | nsItem, NULL, NULL, NULL); - | ^~~~~~ -../xmlschemas.c: In function ‘xmlSchemaParseLocalAttribute’: -../xmlschemas.c:7188:8: warning: too many arguments for format [-Wformat-extra-args] - 7188 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:7208:4: warning: too many arguments for format [-Wformat-extra-args] - 7208 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:7366:2: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 7366 | if (defValue != NULL) - | ^~ -../xmlschemas.c:7368:6: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 7368 | if (defValueType == WXS_ATTR_DEF_VAL_FIXED) - | ^~ -../xmlschemas.c: In function ‘xmlSchemaParseElement’: -../xmlschemas.c:8629:4: warning: too many arguments for format [-Wformat-extra-args] - 8629 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:8708:4: warning: too many arguments for format [-Wformat-extra-args] - 8708 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:8738:7: warning: too many arguments for format [-Wformat-extra-args] - 8738 | NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaParseSimpleType’: -../xmlschemas.c:9294:7: warning: too many arguments for format [-Wformat-extra-args] - 9294 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c: In function ‘xmlSchemaParseSchemaElement’: -../xmlschemas.c:9693:3: warning: too many arguments for format [-Wformat-extra-args] - 9693 | "(qualified | unqualified)", val, NULL, NULL, NULL); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -../xmlschemas.c:9706:3: warning: too many arguments for format [-Wformat-extra-args] - 9706 | "(qualified | unqualified)", val, NULL, NULL, NULL); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -../xmlschemas.c:9724:3: warning: too many arguments for format [-Wformat-extra-args] - 9724 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:9740:3: warning: too many arguments for format [-Wformat-extra-args] - 9740 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c: In function ‘xmlSchemaParseImport’: -../xmlschemas.c:10763:6: warning: too many arguments for format [-Wformat-extra-args] -10763 | NULL, namespaceName, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c:10774:6: warning: too many arguments for format [-Wformat-extra-args] -10774 | NULL, schemaLocation, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaParseComplexType’: -../xmlschemas.c:12233:8: warning: too many arguments for format [-Wformat-extra-args] -12233 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:12251:8: warning: too many arguments for format [-Wformat-extra-args] -12251 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c: In function ‘xmlSchemaValidateFacets’: -../xmlschemas.c:24253:3: warning: too many arguments for format [-Wformat-extra-args] -24253 | value, len, type, facetLink->facet, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c:24289:3: warning: too many arguments for format [-Wformat-extra-args] -24289 | value, length, type, facetLink->facet, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c:24341:7: warning: too many arguments for format [-Wformat-extra-args] -24341 | value, 0, type, NULL, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c:24386:4: warning: too many arguments for format [-Wformat-extra-args] -24386 | value, 0, type, facet, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c: In function ‘xmlSchemaSetValidStructuredErrors’: -../xmlschemas.c:27790:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] -27790 | if (ctxt == NULL) - | ^~ -../xmlschemas.c:27792:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ -27792 | ctxt->serror = serror; - | ^~~~ -In file included from ../xmlschemas.c:55: -../xmlschemas.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdcpl.c -../H5Pdcpl.c: In function ‘H5P_get_fill_value’: -../H5Pdcpl.c:3329:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 3329 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(type, H5T_COPY_TRANSIENT), FALSE)) < 0) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Pdcpl.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdxpl.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Pdxpl.c:35: -In function ‘strncpy’, - inlined from ‘H5Pget_data_transform’ at ../H5Pdxpl.c:1129:2: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Pdxpl.c:35: -../H5Pdxpl.c: In function ‘H5Pget_data_transform’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Pdxpl.c:1127:11: note: in expansion of macro ‘HDstrlen’ - 1127 | len = HDstrlen(pexp); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pencdec.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Pencdec.c:29: -In function ‘strncpy’, - inlined from ‘H5P__encode_cb’ at ../H5Pencdec.c:351:13, - inlined from ‘H5P__encode_cb’ at ../H5Pencdec.c:332:1: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Pencdec.c:29: -../H5Pencdec.c: In function ‘H5P__encode_cb’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Pencdec.c:349:25: note: in expansion of macro ‘HDstrlen’ - 349 | prop_name_len = HDstrlen(prop->name) + 1; - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlschemastypes.obj -c ../xmlschemastypes.c -../xmlschemastypes.c: In function ‘xmlSchemaTypeErrMemory’: -../xmlschemastypes.c:204:5: warning: too many arguments for format [-Wformat-extra-args] - 204 | __xmlSimpleError(XML_FROM_DATATYPE, XML_ERR_NO_MEMORY, node, NULL, extra); - | ^~~~~~~~~~~~~~~~ -In file included from ../xmlschemastypes.c:18: -../xmlschemastypes.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pfapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlunicode.obj -c ../xmlunicode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pfcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pfmpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pgcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlwriter.obj -c ../xmlwriter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pint.c -../H5Pint.c: In function ‘H5P__iterate_pclass_cb’: -../H5Pint.c:4066:11: warning: unused variable ‘key’ [-Wunused-variable] - 4066 | char *key = (char *)_key; /* Pointer to the property's name */ - | ^~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Plapl.c -../H5Plapl.c: In function ‘H5P__lacc_elink_fapl_cmp’: -../H5Plapl.c:570:16: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] - 570 | herr_t status; - | ^~~~~~ -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Plapl.c:35: -In function ‘strncpy’, - inlined from ‘H5Pget_elink_prefix’ at ../H5Plapl.c:1062:13: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Plapl.c:35: -../H5Plapl.c: In function ‘H5Pget_elink_prefix’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Plapl.c:1060:15: note: in expansion of macro ‘HDstrlen’ - 1060 | len = HDstrlen(my_prefix); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Plcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pocpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pocpypl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pstrcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ptest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5PB.c -../H5PB.c: In function ‘H5PB_dest’: -../H5PB.c:487:7: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 487 | f = fio_info->f; - | ^ -../H5PB.c: In function ‘H5PB_read’: -../H5PB.c:793:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 793 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5PB.c:794:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 794 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -../H5PB.c: In function ‘H5PB_write’: -../H5PB.c:1100:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1100 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5PB.c:1101:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1101 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -../H5PB.c: In function ‘H5PB__write_entry’: -../H5PB.c:1525:29: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1525 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5PB.c:1526:28: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1526 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5PL.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5PL.c:23: -In function ‘strncpy’, - inlined from ‘H5PLget’ at ../H5PL.c:623:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5PL.c:23: -../H5PL.c: In function ‘H5PLget’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5PL.c:621:11: note: in expansion of macro ‘HDstrlen’ - 621 | len = HDstrlen(dl_path); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5R.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Rdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5UC.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5RS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xpath.obj -c ../xpath.c -../xpath.c: In function ‘xmlXPathCmpNodesExt’: -../xpath.c:170:12: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 170 | if ((0 > (long) node1->content) && /* TODO: Would a != 0 suffice here? */ - | ^ -../xpath.c:171:12: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 171 | (0 > (long) node2->content) && - | ^ -../xpath.c:174:14: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 174 | l1 = -((long) node1->content); - | ^ -../xpath.c:175:14: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 175 | l2 = -((long) node2->content); - | ^ -../xpath.c:220:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 220 | (0 <= (long) node1->content)) { - | ^ -../xpath.c:270:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 270 | (0 <= (long) node2->content)) - | ^ -../xpath.c:343:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 343 | (0 > (long) node1->content) && - | ^ -../xpath.c:344:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 344 | (0 > (long) node2->content) && - | ^ -../xpath.c:347:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 347 | l1 = -((long) node1->content); - | ^ -../xpath.c:348:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 348 | l2 = -((long) node2->content); - | ^ -../xpath.c:411:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 411 | (0 > (long) node1->content) && - | ^ -../xpath.c:412:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 412 | (0 > (long) node2->content) && - | ^ -../xpath.c:415:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 415 | l1 = -((long) node1->content); - | ^ -../xpath.c:416:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 416 | l2 = -((long) node2->content); - | ^ -In file included from ../xpath.c:462: -../timsort.h: In function ‘libxml_domnode_tim_sort_resize’: -../timsort.h:326:80: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 3 has type ‘long long unsigned int’ [-Wformat=] - 326 | fprintf(stderr, "Error allocating temporary storage for tim sort: need %lu bytes", sizeof(SORT_TYPE) * new_size); - | ~~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - | | | - | long unsigned int long long unsigned int - | %I64u -../timsort.h:326:80: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 3 has type ‘long long unsigned int’ [-Wformat=] - 326 | fprintf(stderr, "Error allocating temporary storage for tim sort: need %lu bytes", sizeof(SORT_TYPE) * new_size); - | ~~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - | | | - | long unsigned int long long unsigned int - | %I64u -../timsort.h: In function ‘libxml_domnode_tim_sort_collapse’: -../timsort.h:397:19: warning: variable ‘BD’ set but not used [-Wunused-but-set-variable] - 397 | int ABC, BCD, BD, CD; - | ^~ -../xpath.c: In function ‘xmlXPathOrderDocElems’: -../xpath.c:3236:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 3236 | cur->content = (void *) (-(++count)); - | ^ -../xpath.c: In function ‘xmlXPathCmpNodes’: -../xpath.c:3328:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 3328 | (0 > (long) node1->content) && - | ^ -../xpath.c:3329:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 3329 | (0 > (long) node2->content) && - | ^ -../xpath.c:3333:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 3333 | l1 = -((long) node1->content); - | ^ -../xpath.c:3334:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 3334 | l2 = -((long) node2->content); - | ^ -../xpath.c:3391:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 3391 | (0 > (long) node1->content) && - | ^ -../xpath.c:3392:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 3392 | (0 > (long) node2->content) && - | ^ -../xpath.c:3396:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 3396 | l1 = -((long) node1->content); - | ^ -../xpath.c:3397:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 3397 | l2 = -((long) node2->content); - | ^ -../xpath.c: In function ‘xmlXPathNodeCollectAndTest’: -../xpath.c:12409:28: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘xmlXPathTypeVal’ {aka ‘enum ’} [-Wenum-compare] -12409 | } else if (cur->type == type) { - | ^~ -In file included from ../xpath.c:43: -../xpath.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -In file included from ../xpath.c:476: -../trionan.c:218:1: warning: ‘trio_is_negative’ defined but not used [-Wunused-function] - 218 | trio_is_negative - | ^~~~~~~~~~~~~~~~ -../trionan.c:194:1: warning: ‘trio_is_special_quantity’ defined but not used [-Wunused-function] - 194 | trio_is_special_quantity - | ^~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5S.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Sall.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Sdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xpointer.obj -c ../xpointer.c -../xpointer.c: In function ‘xmlXPtrNewRangeNodePoint’: -../xpointer.c:451:21: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘enum ’ [-Wenum-compare] - 451 | if (start->type != XPATH_POINT) - | ^~ -In file included from ../xpointer.c:31: -../xpointer.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlstring.obj -c ../xmlstring.c -In file included from ../xmlstring.c:22: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nanohttp_stream.obj -c ../nanohttp_stream.c -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:45: warning: "EINPROGRESS" redefined - 45 | #define EINPROGRESS WSAEINPROGRESS - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:158: note: this is the location of the previous definition - 158 | #define EINPROGRESS 112 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:46: warning: "EALREADY" redefined - 46 | #define EALREADY WSAEALREADY - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:106: note: this is the location of the previous definition - 106 | #define EALREADY 103 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:47: warning: "ENOTSOCK" redefined - 47 | #define ENOTSOCK WSAENOTSOCK - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:146: note: this is the location of the previous definition - 146 | #define ENOTSOCK 128 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:48: warning: "EDESTADDRREQ" redefined - 48 | #define EDESTADDRREQ WSAEDESTADDRREQ - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:118: note: this is the location of the previous definition - 118 | #define EDESTADDRREQ 109 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:49: warning: "EMSGSIZE" redefined - 49 | #define EMSGSIZE WSAEMSGSIZE - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:126: note: this is the location of the previous definition - 126 | #define EMSGSIZE 115 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:50: warning: "EPROTOTYPE" redefined - 50 | #define EPROTOTYPE WSAEPROTOTYPE - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:231: note: this is the location of the previous definition - 231 | #define EPROTOTYPE 136 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:51: warning: "ENOPROTOOPT" redefined - 51 | #define ENOPROTOOPT WSAENOPROTOOPT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:142: note: this is the location of the previous definition - 142 | #define ENOPROTOOPT 123 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:52: warning: "EPROTONOSUPPORT" redefined - 52 | #define EPROTONOSUPPORT WSAEPROTONOSUPPORT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:178: note: this is the location of the previous definition - 178 | #define EPROTONOSUPPORT 135 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:54: warning: "EOPNOTSUPP" redefined - 54 | #define EOPNOTSUPP WSAEOPNOTSUPP - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:162: note: this is the location of the previous definition - 162 | #define EOPNOTSUPP 130 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:56: warning: "EAFNOSUPPORT" redefined - 56 | #define EAFNOSUPPORT WSAEAFNOSUPPORT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:82: note: this is the location of the previous definition - 82 | #define EAFNOSUPPORT 102 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:57: warning: "EADDRINUSE" redefined - 57 | #define EADDRINUSE WSAEADDRINUSE - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:86: note: this is the location of the previous definition - 86 | #define EADDRINUSE 100 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:58: warning: "EADDRNOTAVAIL" redefined - 58 | #define EADDRNOTAVAIL WSAEADDRNOTAVAIL - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:90: note: this is the location of the previous definition - 90 | #define EADDRNOTAVAIL 101 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:59: warning: "ENETDOWN" redefined - 59 | #define ENETDOWN WSAENETDOWN - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:130: note: this is the location of the previous definition - 130 | #define ENETDOWN 116 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:60: warning: "ENETUNREACH" redefined - 60 | #define ENETUNREACH WSAENETUNREACH - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:138: note: this is the location of the previous definition - 138 | #define ENETUNREACH 118 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:61: warning: "ENETRESET" redefined - 61 | #define ENETRESET WSAENETRESET - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:134: note: this is the location of the previous definition - 134 | #define ENETRESET 117 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:62: warning: "ECONNABORTED" redefined - 62 | #define ECONNABORTED WSAECONNABORTED - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:102: note: this is the location of the previous definition - 102 | #define ECONNABORTED 106 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:63: warning: "ECONNRESET" redefined - 63 | #define ECONNRESET WSAECONNRESET - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:114: note: this is the location of the previous definition - 114 | #define ECONNRESET 108 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:64: warning: "ENOBUFS" redefined - 64 | #define ENOBUFS WSAENOBUFS - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:98: note: this is the location of the previous definition - 98 | #define ENOBUFS 119 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:65: warning: "EISCONN" redefined - 65 | #define EISCONN WSAEISCONN - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:94: note: this is the location of the previous definition - 94 | #define EISCONN 113 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:66: warning: "ENOTCONN" redefined - 66 | #define ENOTCONN WSAENOTCONN - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:150: note: this is the location of the previous definition - 150 | #define ENOTCONN 126 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:68: warning: "ETIMEDOUT" redefined - 68 | #define ETIMEDOUT WSAETIMEDOUT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:223: note: this is the location of the previous definition - 223 | #define ETIMEDOUT 138 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:69: warning: "ECONNREFUSED" redefined - 69 | #define ECONNREFUSED WSAECONNREFUSED - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:110: note: this is the location of the previous definition - 110 | #define ECONNREFUSED 107 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:70: warning: "ELOOP" redefined - 70 | #define ELOOP WSAELOOP - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:227: note: this is the location of the previous definition - 227 | #define ELOOP 114 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:72: warning: "EHOSTUNREACH" redefined - 72 | #define EHOSTUNREACH WSAEHOSTUNREACH - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:122: note: this is the location of the previous definition - 122 | #define EHOSTUNREACH 110 - | -../nanohttp_stream.c: In function ‘xmlParseJpegHeader’: -../nanohttp_stream.c:628:40: warning: pointer targets in passing argument 1 of ‘xmlStrncmp’ differ in signedness [-Wpointer-sign] - 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { - | ~~~~^~~~~~~~~~~~~~ - | | - | char * -In file included from ../libxml.h:12, - from ../nanohttp_stream.c:16: -../os/default/libxml/xmlstring.h:67:58: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘char *’ - 67 | xmlStrncmp (const xmlChar *str1, - | ~~~~~~~~~~~~~~~^~~~ -../nanohttp_stream.c:628:56: warning: pointer targets in passing argument 2 of ‘xmlStrncmp’ differ in signedness [-Wpointer-sign] - 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { - | ^~~~~~~~~~~~ - | | - | const char * -In file included from ../libxml.h:12, - from ../nanohttp_stream.c:16: -../os/default/libxml/xmlstring.h:68:57: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘const char *’ - 68 | const xmlChar *str2, - | ~~~~~~~~~~~~~~~^~~~ -../nanohttp_stream.c: In function ‘xmlNanoHTTPScanAnswer’: -../nanohttp_stream.c:979:30: warning: pointer targets in initialization of ‘const char *’ from ‘const xmlChar *’ {aka ‘const unsigned char *’} differ in signedness [-Wpointer-sign] - 979 | const char* boundaryName = xmlStrstr(BAD_CAST ctxt->contentType, BAD_CAST "boundary"); - | ^~~~~~~~~ -../nanohttp_stream.c:981:17: warning: pointer targets in assignment from ‘const xmlChar *’ {aka ‘const unsigned char *’} to ‘const char *’ differ in signedness [-Wpointer-sign] - 981 | boundaryName = xmlStrstr(BAD_CAST boundaryName, BAD_CAST "="); - | ^ -../nanohttp_stream.c: In function ‘xmlNanoHTTPConnectAttempt’: -../nanohttp_stream.c:1240:67: warning: pointer targets in passing argument 5 of ‘getsockopt’ differ in signedness [-Wpointer-sign] - 1240 | if (getsockopt(s, SOL_SOCKET, SO_ERROR, (char *) &status, &len) < - | ^~~~ - | | - | unsigned int * -In file included from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/winsock2.h:1010:94: note: expected ‘int *’ but argument is of type ‘unsigned int *’ - 1010 | WINSOCK_API_LINKAGE int WSAAPI getsockopt(SOCKET s,int level,int optname,char *optval,int *optlen); - | ~~~~~^~~~~~ -../nanohttp_stream.c: In function ‘xmlNanoHTTPConnectHost’: -../nanohttp_stream.c:1288:9: warning: unused variable ‘i’ [-Wunused-variable] - 1288 | int i; - | ^ -../nanohttp_stream.c:1281:20: warning: unused variable ‘ia’ [-Wunused-variable] - 1281 | struct in_addr ia; - | ^~ -../nanohttp_stream.c:1279:21: warning: unused variable ‘h’ [-Wunused-variable] - 1279 | struct hostent *h; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o xml2.dll -shared -Wl,--out-implib,libxml2.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ buf.obj c14n.obj catalog.obj chvalid.obj debugXML.obj dict.obj DOCBparser.obj encoding.obj entities.obj error.obj globals.obj hash.obj HTMLparser.obj HTMLtree.obj legacy.obj list.obj nanoftp.obj nanohttp.obj parser.obj parserInternals.obj pattern.obj relaxng.obj SAX2.obj SAX.obj schematron.obj threads.obj tree.obj uri.obj valid.obj xinclude.obj xlink.obj xmlIO.obj xmlmemory.obj xmlreader.obj xmlregexp.obj xmlmodule.obj xmlsave.obj xmlschemas.obj xmlschemastypes.obj xmlunicode.obj xmlwriter.obj xpath.obj xpointer.obj xmlstring.obj -lzlib -lws2_32 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o nanohttp_stream.dll -shared -Wl,--out-implib,libnanohttp_stream.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ nanohttp_stream.obj buf.obj c14n.obj catalog.obj chvalid.obj debugXML.obj dict.obj DOCBparser.obj encoding.obj entities.obj error.obj globals.obj hash.obj HTMLparser.obj HTMLtree.obj legacy.obj list.obj nanoftp.obj nanohttp.obj parser.obj parserInternals.obj pattern.obj relaxng.obj SAX2.obj SAX.obj schematron.obj threads.obj tree.obj uri.obj valid.obj xinclude.obj xlink.obj xmlIO.obj xmlmemory.obj xmlreader.obj xmlregexp.obj xmlmodule.obj xmlsave.obj xmlschemas.obj xmlschemastypes.obj xmlunicode.obj xmlwriter.obj xpath.obj xpointer.obj xmlstring.obj -lxml2 -lzlib -lws2_32 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Snone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Spoint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Sselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Shyper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Stest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMmessage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5ST.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SL.c -../H5SL.c: In function ‘H5SL_term_package’: -../H5SL.c:655:21: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] - 655 | herr_t ret; - | ^~~ -In file included from ../H5SL.c:64: -../H5SL.c: In function ‘H5SL_search’: -../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 2267 | return(ret_value); \ - | ^ -../H5SL.c:1397:11: note: ‘ret_value’ was declared here - 1397 | void *ret_value; /* Return value */ - | ^~~~~~~~~ -In file included from ../H5SL.c:64: -../H5SL.c: In function ‘H5SL_find’: -../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 2267 | return(ret_value); \ - | ^ -../H5SL.c:1698:18: note: ‘ret_value’ was declared here - 1698 | H5SL_node_t *ret_value; /* Return value */ - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tarray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make -C ./GraphicsMagickSrc install -make -C ./bzlib install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' -mkdir -p O.Common -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF randtable.d ../randtable.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huffman.d ../huffman.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompress.d ../decompress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crctable.d ../crctable.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d ../compress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bzlib.d ../bzlib.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blocksort.d ../blocksort.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5T.c -../H5T.c: In function ‘H5T_path_find’: -../H5T.c:4499:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 4499 | if(NULL == (path->src = H5T_copy(src, H5T_COPY_ALL))) - | ^~~ -../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) - | ~~~~~~~^~~~~~ -../H5T.c:4501:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 4501 | if(NULL == (path->dst = H5T_copy(dst, H5T_COPY_ALL))) - | ^~~ -../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) - | ~~~~~~~^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tcommit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../blocksort.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tcompound.c -../H5Tcompound.c: In function ‘H5T__insert’: -../H5Tcompound.c:459:56: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 459 | parent->shared->u.compnd.memb[idx].type = H5T_copy(member, H5T_COPY_ALL); - | ^~~~~~ -In file included from ../H5Tpkg.h:37, - from ../H5Tcompound.c:33: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../bzlib.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../compress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../crctable.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../decompress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../huffman.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../randtable.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -/usr/bin/ar -rc libbzlib.a blocksort.o bzlib.o compress.o crctable.o decompress.o huffman.o randtable.o -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -/usr/bin/ranlib libbzlib.a -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -g++ -o libbzlib.so -shared -fPIC -Wl,-hlibbzlib.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 blocksort.o bzlib.o compress.o crctable.o decompress.o huffman.o randtable.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ - T_A=windows-x64-mingw install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF randtable.d -MT randtable.obj ../randtable.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huffman.d -MT huffman.obj ../huffman.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompress.d -MT decompress.obj ../decompress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crctable.d -MT crctable.obj ../crctable.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d -MT compress.obj ../compress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bzlib.d -MT bzlib.obj ../bzlib.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blocksort.d -MT blocksort.obj ../blocksort.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blocksort.obj -c ../blocksort.c -In file included from ../bzlib_private.h:33, - from ../blocksort.c:22: -../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export - 85 | # pragma message( "BZIP compiling as DLL export" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o bzlib.obj -c ../bzlib.c -In file included from ../bzlib_private.h:33, - from ../bzlib.c:31: -../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export - 85 | # pragma message( "BZIP compiling as DLL export" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o compress.obj -c ../compress.c -In file included from ../bzlib_private.h:33, - from ../compress.c:29: -../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export - 85 | # pragma message( "BZIP compiling as DLL export" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o crctable.obj -c ../crctable.c -In file included from ../bzlib_private.h:33, - from ../crctable.c:22: -../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export - 85 | # pragma message( "BZIP compiling as DLL export" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o decompress.obj -c ../decompress.c -In file included from ../bzlib_private.h:33, - from ../decompress.c:22: -../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export - 85 | # pragma message( "BZIP compiling as DLL export" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o huffman.obj -c ../huffman.c -In file included from ../bzlib_private.h:33, - from ../huffman.c:22: -../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export - 85 | # pragma message( "BZIP compiling as DLL export" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o randtable.obj -c ../randtable.c -In file included from ../bzlib_private.h:33, - from ../randtable.c:22: -../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export - 85 | # pragma message( "BZIP compiling as DLL export" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-windres -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include ../bzlib.rc bzlib.coff -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o bzlib.dll -shared -Wl,--out-implib,libbzlib.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ blocksort.obj bzlib.obj compress.obj crctable.obj decompress.obj huffman.obj randtable.obj bzlib.coff -lws2_32 -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make -C ./lcms install -make -C ./src install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' -perl -C0 /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' -perl -C0 /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' -mkdir -p O.Common -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsxform.d ../cmsxform.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmswtpnt.d ../cmswtpnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsvirt.d ../cmsvirt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmstypes.d ../cmstypes.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssm.d ../cmssm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssamp.d ../cmssamp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsps2.d ../cmsps2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsplugin.d ../cmsplugin.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspcs.d ../cmspcs.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspack.d ../cmspack.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsopt.d ../cmsopt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsnamed.d ../cmsnamed.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmtrx.d ../cmsmtrx.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmd5.d ../cmsmd5.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmslut.d ../cmslut.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio1.d ../cmsio1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio0.d ../cmsio0.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsintrp.d ../cmsintrp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmshalf.d ../cmshalf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgmt.d ../cmsgmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgamma.d ../cmsgamma.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmserr.d ../cmserr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscnvrt.d ../cmscnvrt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscgats.d ../cmscgats.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscam02.d ../cmscam02.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tconv.c -../H5Tconv.c: In function ‘H5T_conv_struct_free’: -../H5Tconv.c:1876:17: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] - 1876 | int status; - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsalpha.d ../cmsalpha.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tcset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsalpha.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmscam02.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tenum.c -../H5Tenum.c: In function ‘H5T__enum_create’: -../H5Tenum.c:110:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 110 | ret_value->shared->parent = H5T_copy(parent, H5T_COPY_ALL); - | ^~~~~~ -In file included from ../H5Tpkg.h:37, - from ../H5Tenum.c:26: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Tenum.c: In function ‘H5T_enum_nameof’: -../H5Tenum.c:411:38: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 411 | if(NULL == (copied_dt = H5T_copy(dt, H5T_COPY_ALL))) - | ^~ -In file included from ../H5Tpkg.h:37, - from ../H5Tenum.c:26: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Tenum.c: In function ‘H5T_enum_valueof’: -../H5Tenum.c:550:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 550 | if (NULL==(copied_dt=H5T_copy(dt, H5T_COPY_ALL))) - | ^~ -In file included from ../H5Tpkg.h:37, - from ../H5Tenum.c:26: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tfields.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tfixed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tfloat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmscgats.c -../cmscgats.c: In function ‘ReadReal’: -../cmscgats.c:577:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 577 | else - | ^~~~ -../cmscgats.c:584:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 584 | e = 0; - | ^ -../cmscgats.c: In function ‘ParseFloatNumber’: -../cmscgats.c:654:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 654 | else - | ^~~~ -../cmscgats.c:661:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 661 | e = 0; - | ^ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘GetVal’ at ../cmscgats.c:986:19: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying between 255 and 1023 bytes from a string of length 1023 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘AddToList.constprop’ at ../cmscgats.c:1184:22: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList.constprop’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘AddToList.constprop’ at ../cmscgats.c:1215:22: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList.constprop’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘AddToList’ at ../cmscgats.c:1184:22: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘AddToList’ at ../cmscgats.c:1185:47: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘AddToList’ at ../cmscgats.c:1215:22: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘isabsolutepath’ at ../cmscgats.c:396:5, - inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:419:9, - inlined from ‘InSymbol’ at ../cmscgats.c:920:21: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 3 bytes from a string of length 1023 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:421:9, - inlined from ‘InSymbol’ at ../cmscgats.c:920:21: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 255 bytes from a string of length 1023 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:427:5, - inlined from ‘InSymbol’ at ../cmscgats.c:920:21: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 255 bytes from a string of length 255 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:437:5, - inlined from ‘InSymbol’ at ../cmscgats.c:920:21: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying between 1 and 255 bytes from a string of length 1023 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘SetData’ at ../cmscgats.c:1545:47: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘SetData’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, - inlined from ‘DataFormatSection’ at ../cmscgats.c:1841:18, - inlined from ‘ParseIT8’ at ../cmscgats.c:2061:26: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘ParseIT8’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, - inlined from ‘cmsIT8SetDataFormat’ at ../cmscgats.c:1490:16: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘cmsIT8SetDataFormat’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘SetData’ at ../cmscgats.c:1545:47, - inlined from ‘cmsIT8SetDataRowCol’ at ../cmscgats.c:2569:12: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘cmsIT8SetDataRowCol’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘SetData’ at ../cmscgats.c:1545:47, - inlined from ‘cmsIT8SetDataRowColDbl’ at ../cmscgats.c:2582:12: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘cmsIT8SetDataRowColDbl’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tnative.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Toffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmscnvrt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Toh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmserr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Topaque.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Torder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsgamma.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tprecis.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsgmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmshalf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tstrpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tvisit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tvlen.c -../H5Tvlen.c: In function ‘H5T__vlen_create’: -../H5Tvlen.c:142:47: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 142 | if(NULL == (dt->shared->parent = H5T_copy(base, H5T_COPY_ALL))) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Tvlen.c:23: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5TS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5VM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsintrp.c -../cmsintrp.c: In function ‘Eval4Inputs’: -../cmsintrp.c:918:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 918 | else - | ^~~~ -../cmsintrp.c:930:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 930 | Rest = c1 * rx + c2 * ry + c3 * rz; - | ^~~~ -../cmsintrp.c:982:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 982 | else - | ^~~~ -../cmsintrp.c:994:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 994 | Rest = c1 * rx + c2 * ry + c3 * rz; - | ^~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5WB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsio0.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Z.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zdeflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsio1.c -../cmsio1.c: In function ‘_cmsReadFloatDevicelinkTag’: -../cmsio1.c:681:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 681 | else - | ^~~~ -../cmsio1.c:688:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 688 | if (PCS == cmsSigLabData) - | ^~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zfletcher32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Znbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmslut.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsmd5.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsmtrx.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsnamed.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsopt.c -../cmsopt.c: In function ‘PatchLUT’: -../cmsopt.c:510:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 510 | else - | ^~~~ -../cmsopt.c:526:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 526 | for (i=0; i < nChannelsOut; i++) - | ^~~ -../cmsopt.c: In function ‘PrelinEval8’: -../cmsopt.c:978:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 978 | else - | ^~~~ -../cmsopt.c:990:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 990 | Rest = c1 * rx + c2 * ry + c3 * rz + 0x8001; - | ^~~~ -../cmsopt.c: In function ‘OptimizeByComputingLinearization’: -../cmsopt.c:1030:26: warning: variable ‘lIsLinear’ set but not used [-Wunused-but-set-variable] - 1030 | cmsBool lIsSuitable, lIsLinear; - | ^~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zscaleoffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zshuffle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zszip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmspack.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmspcs.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsplugin.c -../cmsplugin.c: In function ‘_cmsReadFloat32Number’: -../cmsplugin.c:181:15: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] - 181 | *n = *(cmsFloat32Number*) (void*) &tmp; - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmsplugin.c: In function ‘_cmsWriteFloat32Number’: -../cmsplugin.c:292:12: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] - 292 | tmp = *(cmsUInt32Number*) (void*) &n; - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsps2.c -../cmsps2.c: In function ‘WriteInputMatrixShaper’: -../cmsps2.c:964:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 964 | else - | ^~~~ -../cmsps2.c:986:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 986 | return rc; - | ^~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmssamp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ztrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmssm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../os/Linux/H5Tinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5lib_settings.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmstypes.c -../cmstypes.c: In function ‘ReadCLUT’: -../cmstypes.c:2360:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 2360 | else - | ^~~~ -../cmstypes.c:2374:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 2374 | return CLUT; - | ^~~~~~ -../cmstypes.c: In function ‘WriteCLUT’: -../cmstypes.c:2645:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 2645 | else - | ^~~~ -../cmstypes.c:2655:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 2655 | if (!_cmsWriteAlignment(io)) return FALSE; - | ^~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmstypes.c:27: -In function ‘strncpy’, - inlined from ‘Type_NamedColor_Write’ at ../cmstypes.c:3146:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘Type_NamedColor_Write’ at ../cmstypes.c:3147:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsvirt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmswtpnt.c -../cmswtpnt.c: In function ‘cmsWhitePointFromTemp’: -../cmswtpnt.c:66:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 66 | else - | ^~~~ -../cmswtpnt.c:80:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 80 | y = -3.000*(x*x) + 2.870*x - 0.275; - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsxform.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -/usr/bin/ar -rc liblcms.a cmsalpha.o cmscam02.o cmscgats.o cmscnvrt.o cmserr.o cmsgamma.o cmsgmt.o cmshalf.o cmsintrp.o cmsio0.o cmsio1.o cmslut.o cmsmd5.o cmsmtrx.o cmsnamed.o cmsopt.o cmspack.o cmspcs.o cmsplugin.o cmsps2.o cmssamp.o cmssm.o cmstypes.o cmsvirt.o cmswtpnt.o cmsxform.o -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -/usr/bin/ranlib liblcms.a -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -g++ -o liblcms.so -shared -fPIC -Wl,-hliblcms.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 cmsalpha.o cmscam02.o cmscgats.o cmscnvrt.o cmserr.o cmsgamma.o cmsgmt.o cmshalf.o cmsintrp.o cmsio0.o cmsio1.o cmslut.o cmsmd5.o cmsmtrx.o cmsnamed.o cmsopt.o cmspack.o cmspcs.o cmsplugin.o cmsps2.o cmssamp.o cmssm.o cmstypes.o cmsvirt.o cmswtpnt.o cmsxform.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5detect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -/usr/bin/ar -rc libhdf5.a H5.o H5checksum.o H5dbg.o H5system.o H5timer.o H5trace.o H5A.o H5Abtree2.o H5Adense.o H5Adeprec.o H5Aint.o H5Atest.o H5AC.o H5AClog.o H5ACdbg.o H5ACproxy_entry.o H5B.o H5Bcache.o H5Bdbg.o H5B2.o H5B2cache.o H5B2dbg.o H5B2hdr.o H5B2int.o H5B2internal.o H5B2leaf.o H5B2stat.o H5B2test.o H5C.o H5Cdbg.o H5Cepoch.o H5Cimage.o H5Clog.o H5Cprefetched.o H5Cquery.o H5Ctag.o H5Ctest.o H5CS.o H5D.o H5Dbtree.o H5Dbtree2.o H5Dchunk.o H5Dcompact.o H5Dcontig.o H5Ddbg.o H5Ddeprec.o H5Dearray.o H5Defl.o H5Dfarray.o H5Dfill.o H5Dint.o H5Dio.o H5Dlayout.o H5Dnone.o H5Doh.o H5Dscatgath.o H5Dselect.o H5Dsingle.o H5Dtest.o H5Dvirtual.o H5E.o H5Edeprec.o H5Eint.o H5EA.o H5EAcache.o H5EAdbg.o H5EAdblkpage.o H5EAdblock.o H5EAhdr.o H5EAiblock.o H5EAint.o H5EAsblock.o H5EAstat.o H5EAtest.o H5F.o H5Faccum.o H5Fcwfs.o H5Fdbg.o H5Fdeprec.o H5Fefc.o H5Ffake.o H5Fint.o H5Fio.o H5Fmount.o H5Fquery.o H5Fsfile.o H5Fspace.o H5Fsuper.o H5Fsuper_cache.o H5Ftest.o H5FA.o H5FAcache.o H5FAdbg.o H5FAdblock.o H5FAdblkpage.o H5FAhdr.o H5FAint.o H5FAstat.o H5FAtest.o H5FD.o H5FDcore.o H5FDfamily.o H5FDint.o H5FDlog.o H5FDmulti.o H5FDsec2.o H5FDspace.o H5FDstdio.o H5FDtest.o H5FL.o H5FO.o H5FS.o H5FScache.o H5FSdbg.o H5FSint.o H5FSsection.o H5FSstat.o H5FStest.o H5G.o H5Gbtree2.o H5Gcache.o H5Gcompact.o H5Gdense.o H5Gdeprec.o H5Gent.o H5Gint.o H5Glink.o H5Gloc.o H5Gname.o H5Gnode.o H5Gobj.o H5Goh.o H5Groot.o H5Gstab.o H5Gtest.o H5Gtraverse.o H5HF.o H5HFbtree2.o H5HFcache.o H5HFdbg.o H5HFdblock.o H5HFdtable.o H5HFhdr.o H5HFhuge.o H5HFiblock.o H5HFiter.o H5HFman.o H5HFsection.o H5HFspace.o H5HFstat.o H5HFtest.o H5HFtiny.o H5HG.o H5HGcache.o H5HGdbg.o H5HGquery.o H5HL.o H5HLcache.o H5HLdbg.o H5HLint.o H5HLprfx.o H5HLdblk.o H5HP.o H5I.o H5Itest.o H5L.o H5Lexternal.o H5MF.o H5MFaggr.o H5MFdbg.o H5MFsection.o H5MM.o H5MP.o H5MPtest.o H5O.o H5Oainfo.o H5Oalloc.o H5Oattr.o H5Oattribute.o H5Obogus.o H5Obtreek.o H5Ocache.o H5Ocache_image.o H5Ochunk.o H5Ocont.o H5Ocopy.o H5Odbg.o H5Odrvinfo.o H5Odtype.o H5Oefl.o H5Ofill.o H5Oflush.o H5Ofsinfo.o H5Oginfo.o H5Olayout.o H5Olinfo.o H5Olink.o H5Omessage.o H5Omtime.o H5Oname.o H5Onull.o H5Opline.o H5Orefcount.o H5Osdspace.o H5Oshared.o H5Oshmesg.o H5Ostab.o H5Otest.o H5Ounknown.o H5P.o H5Pacpl.o H5Pdapl.o H5Pdcpl.o H5Pdeprec.o H5Pdxpl.o H5Pencdec.o H5Pfapl.o H5Pfcpl.o H5Pfmpl.o H5Pgcpl.o H5Pint.o H5Plapl.o H5Plcpl.o H5Pocpl.o H5Pocpypl.o H5Pstrcpl.o H5Ptest.o H5PB.o H5PL.o H5R.o H5Rdeprec.o H5UC.o H5RS.o H5S.o H5Sall.o H5Sdbg.o H5Shyper.o H5Snone.o H5Spoint.o H5Sselect.o H5Stest.o H5SL.o H5SM.o H5SMbtree2.o H5SMcache.o H5SMmessage.o H5SMtest.o H5ST.o H5T.o H5Tarray.o H5Tbit.o H5Tcommit.o H5Tcompound.o H5Tconv.o H5Tcset.o H5Tdbg.o H5Tdeprec.o H5Tenum.o H5Tfields.o H5Tfixed.o H5Tfloat.o H5Tnative.o H5Toffset.o H5Toh.o H5Topaque.o H5Torder.o H5Tpad.o H5Tprecis.o H5Tstrpad.o H5Tvisit.o H5Tvlen.o H5TS.o H5VM.o H5WB.o H5Z.o H5Zdeflate.o H5Zfletcher32.o H5Znbit.o H5Zscaleoffset.o H5Zshuffle.o H5Zszip.o H5Ztrans.o H5Tinit.o H5lib_settings.o blosc_filter.o jpeg_h5filter.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsxform.d -MT cmsxform.obj ../cmsxform.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -/usr/bin/ranlib libhdf5.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmswtpnt.d -MT cmswtpnt.obj ../cmswtpnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsvirt.d -MT cmsvirt.obj ../cmsvirt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -g++ -o libhdf5.so -shared -fPIC -Wl,-hlibhdf5.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 H5.o H5checksum.o H5dbg.o H5system.o H5timer.o H5trace.o H5A.o H5Abtree2.o H5Adense.o H5Adeprec.o H5Aint.o H5Atest.o H5AC.o H5AClog.o H5ACdbg.o H5ACproxy_entry.o H5B.o H5Bcache.o H5Bdbg.o H5B2.o H5B2cache.o H5B2dbg.o H5B2hdr.o H5B2int.o H5B2internal.o H5B2leaf.o H5B2stat.o H5B2test.o H5C.o H5Cdbg.o H5Cepoch.o H5Cimage.o H5Clog.o H5Cprefetched.o H5Cquery.o H5Ctag.o H5Ctest.o H5CS.o H5D.o H5Dbtree.o H5Dbtree2.o H5Dchunk.o H5Dcompact.o H5Dcontig.o H5Ddbg.o H5Ddeprec.o H5Dearray.o H5Defl.o H5Dfarray.o H5Dfill.o H5Dint.o H5Dio.o H5Dlayout.o H5Dnone.o H5Doh.o H5Dscatgath.o H5Dselect.o H5Dsingle.o H5Dtest.o H5Dvirtual.o H5E.o H5Edeprec.o H5Eint.o H5EA.o H5EAcache.o H5EAdbg.o H5EAdblkpage.o H5EAdblock.o H5EAhdr.o H5EAiblock.o H5EAint.o H5EAsblock.o H5EAstat.o H5EAtest.o H5F.o H5Faccum.o H5Fcwfs.o H5Fdbg.o H5Fdeprec.o H5Fefc.o H5Ffake.o H5Fint.o H5Fio.o H5Fmount.o H5Fquery.o H5Fsfile.o H5Fspace.o H5Fsuper.o H5Fsuper_cache.o H5Ftest.o H5FA.o H5FAcache.o H5FAdbg.o H5FAdblock.o H5FAdblkpage.o H5FAhdr.o H5FAint.o H5FAstat.o H5FAtest.o H5FD.o H5FDcore.o H5FDfamily.o H5FDint.o H5FDlog.o H5FDmulti.o H5FDsec2.o H5FDspace.o H5FDstdio.o H5FDtest.o H5FL.o H5FO.o H5FS.o H5FScache.o H5FSdbg.o H5FSint.o H5FSsection.o H5FSstat.o H5FStest.o H5G.o H5Gbtree2.o H5Gcache.o H5Gcompact.o H5Gdense.o H5Gdeprec.o H5Gent.o H5Gint.o H5Glink.o H5Gloc.o H5Gname.o H5Gnode.o H5Gobj.o H5Goh.o H5Groot.o H5Gstab.o H5Gtest.o H5Gtraverse.o H5HF.o H5HFbtree2.o H5HFcache.o H5HFdbg.o H5HFdblock.o H5HFdtable.o H5HFhdr.o H5HFhuge.o H5HFiblock.o H5HFiter.o H5HFman.o H5HFsection.o H5HFspace.o H5HFstat.o H5HFtest.o H5HFtiny.o H5HG.o H5HGcache.o H5HGdbg.o H5HGquery.o H5HL.o H5HLcache.o H5HLdbg.o H5HLint.o H5HLprfx.o H5HLdblk.o H5HP.o H5I.o H5Itest.o H5L.o H5Lexternal.o H5MF.o H5MFaggr.o H5MFdbg.o H5MFsection.o H5MM.o H5MP.o H5MPtest.o H5O.o H5Oainfo.o H5Oalloc.o H5Oattr.o H5Oattribute.o H5Obogus.o H5Obtreek.o H5Ocache.o H5Ocache_image.o H5Ochunk.o H5Ocont.o H5Ocopy.o H5Odbg.o H5Odrvinfo.o H5Odtype.o H5Oefl.o H5Ofill.o H5Oflush.o H5Ofsinfo.o H5Oginfo.o H5Olayout.o H5Olinfo.o H5Olink.o H5Omessage.o H5Omtime.o H5Oname.o H5Onull.o H5Opline.o H5Orefcount.o H5Osdspace.o H5Oshared.o H5Oshmesg.o H5Ostab.o H5Otest.o H5Ounknown.o H5P.o H5Pacpl.o H5Pdapl.o H5Pdcpl.o H5Pdeprec.o H5Pdxpl.o H5Pencdec.o H5Pfapl.o H5Pfcpl.o H5Pfmpl.o H5Pgcpl.o H5Pint.o H5Plapl.o H5Plcpl.o H5Pocpl.o H5Pocpypl.o H5Pstrcpl.o H5Ptest.o H5PB.o H5PL.o H5R.o H5Rdeprec.o H5UC.o H5RS.o H5S.o H5Sall.o H5Sdbg.o H5Shyper.o H5Snone.o H5Spoint.o H5Sselect.o H5Stest.o H5SL.o H5SM.o H5SMbtree2.o H5SMcache.o H5SMmessage.o H5SMtest.o H5ST.o H5T.o H5Tarray.o H5Tbit.o H5Tcommit.o H5Tcompound.o H5Tconv.o H5Tcset.o H5Tdbg.o H5Tdeprec.o H5Tenum.o H5Tfields.o H5Tfixed.o H5Tfloat.o H5Tnative.o H5Toffset.o H5Toh.o H5Topaque.o H5Torder.o H5Tpad.o H5Tprecis.o H5Tstrpad.o H5Tvisit.o H5Tvlen.o H5TS.o H5VM.o H5WB.o H5Z.o H5Zdeflate.o H5Zfletcher32.o H5Znbit.o H5Zscaleoffset.o H5Zshuffle.o H5Zszip.o H5Ztrans.o H5Tinit.o H5lib_settings.o blosc_filter.o jpeg_h5filter.o -lszip -lzlib -lblosc -ljpeg -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmstypes.d -MT cmstypes.obj ../cmstypes.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -g++ -o H5detect -Wl,-Bstatic -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 H5detect.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssm.d -MT cmssm.obj ../cmssm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -mkdir ../../../bin/linux-x86_64 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssamp.d -MT cmssamp.obj ../cmssamp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5detect.d -MT H5detect.obj ../H5detect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d -MT jpeg_h5filter.obj ../jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsps2.d -MT cmsps2.obj ../cmsps2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d -MT blosc_filter.obj ../blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5lib_settings.d -MT H5lib_settings.obj ../H5lib_settings.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsplugin.d -MT cmsplugin.obj ../cmsplugin.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tinit.d -MT H5Tinit.obj ../os/WIN32/H5Tinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspcs.d -MT cmspcs.obj ../cmspcs.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ztrans.d -MT H5Ztrans.obj ../H5Ztrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspack.d -MT cmspack.obj ../cmspack.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zszip.d -MT H5Zszip.obj ../H5Zszip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsopt.d -MT cmsopt.obj ../cmsopt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zshuffle.d -MT H5Zshuffle.obj ../H5Zshuffle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsnamed.d -MT cmsnamed.obj ../cmsnamed.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zscaleoffset.d -MT H5Zscaleoffset.obj ../H5Zscaleoffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmtrx.d -MT cmsmtrx.obj ../cmsmtrx.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Znbit.d -MT H5Znbit.obj ../H5Znbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmd5.d -MT cmsmd5.obj ../cmsmd5.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmslut.d -MT cmslut.obj ../cmslut.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zfletcher32.d -MT H5Zfletcher32.obj ../H5Zfletcher32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio1.d -MT cmsio1.obj ../cmsio1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zdeflate.d -MT H5Zdeflate.obj ../H5Zdeflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio0.d -MT cmsio0.obj ../cmsio0.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Z.d -MT H5Z.obj ../H5Z.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsintrp.d -MT cmsintrp.obj ../cmsintrp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5WB.d -MT H5WB.obj ../H5WB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmshalf.d -MT cmshalf.obj ../cmshalf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5VM.d -MT H5VM.obj ../H5VM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgmt.d -MT cmsgmt.obj ../cmsgmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5TS.d -MT H5TS.obj ../H5TS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgamma.d -MT cmsgamma.obj ../cmsgamma.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvlen.d -MT H5Tvlen.obj ../H5Tvlen.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmserr.d -MT cmserr.obj ../cmserr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscnvrt.d -MT cmscnvrt.obj ../cmscnvrt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvisit.d -MT H5Tvisit.obj ../H5Tvisit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscgats.d -MT cmscgats.obj ../cmscgats.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tstrpad.d -MT H5Tstrpad.obj ../H5Tstrpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscam02.d -MT cmscam02.obj ../cmscam02.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tprecis.d -MT H5Tprecis.obj ../H5Tprecis.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsalpha.d -MT cmsalpha.obj ../cmsalpha.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tpad.d -MT H5Tpad.obj ../H5Tpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Torder.d -MT H5Torder.obj ../H5Torder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Topaque.d -MT H5Topaque.obj ../H5Topaque.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toh.d -MT H5Toh.obj ../H5Toh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toffset.d -MT H5Toffset.obj ../H5Toffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tnative.d -MT H5Tnative.obj ../H5Tnative.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsalpha.obj -c ../cmsalpha.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfloat.d -MT H5Tfloat.obj ../H5Tfloat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfixed.d -MT H5Tfixed.obj ../H5Tfixed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfields.d -MT H5Tfields.obj ../H5Tfields.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tenum.d -MT H5Tenum.obj ../H5Tenum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmscam02.obj -c ../cmscam02.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdeprec.d -MT H5Tdeprec.obj ../H5Tdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdbg.d -MT H5Tdbg.obj ../H5Tdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcset.d -MT H5Tcset.obj ../H5Tcset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tconv.d -MT H5Tconv.obj ../H5Tconv.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcompound.d -MT H5Tcompound.obj ../H5Tcompound.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcommit.d -MT H5Tcommit.obj ../H5Tcommit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tbit.d -MT H5Tbit.obj ../H5Tbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tarray.d -MT H5Tarray.obj ../H5Tarray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5T.d -MT H5T.obj ../H5T.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ST.d -MT H5ST.obj ../H5ST.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMtest.d -MT H5SMtest.obj ../H5SMtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmscgats.obj -c ../cmscgats.c -../cmscgats.c: In function ‘ReadReal’: -../cmscgats.c:577:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 577 | else - | ^~~~ -../cmscgats.c:584:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 584 | e = 0; - | ^ -../cmscgats.c: In function ‘ParseFloatNumber’: -../cmscgats.c:654:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 654 | else - | ^~~~ -../cmscgats.c:661:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 661 | e = 0; - | ^ -../cmscgats.c: In function ‘GetVal’: -../cmscgats.c:986:19: warning: ‘strncpy’ output may be truncated copying between 255 and 1023 bytes from a string of length 1023 [-Wstringop-truncation] - 986 | case SSTRING: strncpy(Buffer, it8->str, max); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘AddToList’ at ../cmscgats.c:1184:22: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘AddToList’ at ../cmscgats.c:1185:47: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘AddToList’ at ../cmscgats.c:1215:22: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘AddToList.constprop’ at ../cmscgats.c:1184:22: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList.constprop’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘AddToList.constprop’ at ../cmscgats.c:1215:22: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList.constprop’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘SetData’ at ../cmscgats.c:1545:47: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘SetData’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In function ‘isabsolutepath’, - inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:419:9, - inlined from ‘InSymbol’ at ../cmscgats.c:920:21: -../cmscgats.c:396:5: warning: ‘strncpy’ output may be truncated copying 3 bytes from a string of length 1023 [-Wstringop-truncation] - 396 | strncpy(ThreeChars, path, 3); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘BuildAbsolutePath’, - inlined from ‘InSymbol’ at ../cmscgats.c:920:21: -../cmscgats.c:421:9: warning: ‘strncpy’ output may be truncated copying 255 bytes from a string of length 1023 [-Wstringop-truncation] - 421 | strncpy(buffer, relPath, MaxLen); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c:427:5: warning: ‘strncpy’ output may be truncated copying 255 bytes from a string of length 255 [-Wstringop-truncation] - 427 | strncpy(buffer, basePath, MaxLen); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c:437:5: warning: ‘strncpy’ output may be truncated copying between 1 and 255 bytes from a string of length 1023 [-Wstringop-truncation] - 437 | strncpy(tail + 1, relPath, MaxLen - len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘cmsIT8SetSheetType’, - inlined from ‘ParseIT8’ at ../cmscgats.c:2100:41: -../cmscgats.c:1335:9: warning: ‘strncpy’ output may be truncated copying 1023 bytes from a string of length 1023 [-Wstringop-truncation] - 1335 | strncpy(t ->SheetType, Type, MAXSTR-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, - inlined from ‘DataFormatSection’ at ../cmscgats.c:1841:18, - inlined from ‘ParseIT8’ at ../cmscgats.c:2061:26: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘ParseIT8’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, - inlined from ‘cmsIT8SetDataFormat’ at ../cmscgats.c:1490:16: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘cmsIT8SetDataFormat’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘SetData’ at ../cmscgats.c:1545:47, - inlined from ‘cmsIT8SetDataRowCol’ at ../cmscgats.c:2569:12: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘cmsIT8SetDataRowCol’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘SetData’ at ../cmscgats.c:1545:47, - inlined from ‘cmsIT8SetDataRowColDbl’ at ../cmscgats.c:2582:12: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘cmsIT8SetDataRowColDbl’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMmessage.d -MT H5SMmessage.obj ../H5SMmessage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMcache.d -MT H5SMcache.obj ../H5SMcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMbtree2.d -MT H5SMbtree2.obj ../H5SMbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SM.d -MT H5SM.obj ../H5SM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SL.d -MT H5SL.obj ../H5SL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmscnvrt.obj -c ../cmscnvrt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Stest.d -MT H5Stest.obj ../H5Stest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sselect.d -MT H5Sselect.obj ../H5Sselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Spoint.d -MT H5Spoint.obj ../H5Spoint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Snone.d -MT H5Snone.obj ../H5Snone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmserr.obj -c ../cmserr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Shyper.d -MT H5Shyper.obj ../H5Shyper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sdbg.d -MT H5Sdbg.obj ../H5Sdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sall.d -MT H5Sall.obj ../H5Sall.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5S.d -MT H5S.obj ../H5S.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5RS.d -MT H5RS.obj ../H5RS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5UC.d -MT H5UC.obj ../H5UC.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Rdeprec.d -MT H5Rdeprec.obj ../H5Rdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5R.d -MT H5R.obj ../H5R.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsgamma.obj -c ../cmsgamma.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PL.d -MT H5PL.obj ../H5PL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PB.d -MT H5PB.obj ../H5PB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ptest.d -MT H5Ptest.obj ../H5Ptest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pstrcpl.d -MT H5Pstrcpl.obj ../H5Pstrcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsgmt.obj -c ../cmsgmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpypl.d -MT H5Pocpypl.obj ../H5Pocpypl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpl.d -MT H5Pocpl.obj ../H5Pocpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plcpl.d -MT H5Plcpl.obj ../H5Plcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmshalf.obj -c ../cmshalf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plapl.d -MT H5Plapl.obj ../H5Plapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pint.d -MT H5Pint.obj ../H5Pint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pgcpl.d -MT H5Pgcpl.obj ../H5Pgcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfmpl.d -MT H5Pfmpl.obj ../H5Pfmpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfcpl.d -MT H5Pfcpl.obj ../H5Pfcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfapl.d -MT H5Pfapl.obj ../H5Pfapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pencdec.d -MT H5Pencdec.obj ../H5Pencdec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdxpl.d -MT H5Pdxpl.obj ../H5Pdxpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdeprec.d -MT H5Pdeprec.obj ../H5Pdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdcpl.d -MT H5Pdcpl.obj ../H5Pdcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdapl.d -MT H5Pdapl.obj ../H5Pdapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pacpl.d -MT H5Pacpl.obj ../H5Pacpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5P.d -MT H5P.obj ../H5P.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsintrp.obj -c ../cmsintrp.c -../cmsintrp.c: In function ‘Eval4Inputs’: -../cmsintrp.c:918:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 918 | else - | ^~~~ -../cmsintrp.c:930:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 930 | Rest = c1 * rx + c2 * ry + c3 * rz; - | ^~~~ -../cmsintrp.c:982:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 982 | else - | ^~~~ -../cmsintrp.c:994:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 994 | Rest = c1 * rx + c2 * ry + c3 * rz; - | ^~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ounknown.d -MT H5Ounknown.obj ../H5Ounknown.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Otest.d -MT H5Otest.obj ../H5Otest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ostab.d -MT H5Ostab.obj ../H5Ostab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshmesg.d -MT H5Oshmesg.obj ../H5Oshmesg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshared.d -MT H5Oshared.obj ../H5Oshared.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Osdspace.d -MT H5Osdspace.obj ../H5Osdspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Orefcount.d -MT H5Orefcount.obj ../H5Orefcount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsio0.obj -c ../cmsio0.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Opline.d -MT H5Opline.obj ../H5Opline.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Onull.d -MT H5Onull.obj ../H5Onull.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oname.d -MT H5Oname.obj ../H5Oname.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omtime.d -MT H5Omtime.obj ../H5Omtime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omessage.d -MT H5Omessage.obj ../H5Omessage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsio1.obj -c ../cmsio1.c -../cmsio1.c: In function ‘_cmsReadFloatDevicelinkTag’: -../cmsio1.c:681:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 681 | else - | ^~~~ -../cmsio1.c:688:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 688 | if (PCS == cmsSigLabData) - | ^~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olink.d -MT H5Olink.obj ../H5Olink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olinfo.d -MT H5Olinfo.obj ../H5Olinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olayout.d -MT H5Olayout.obj ../H5Olayout.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oginfo.d -MT H5Oginfo.obj ../H5Oginfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofsinfo.d -MT H5Ofsinfo.obj ../H5Ofsinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oflush.d -MT H5Oflush.obj ../H5Oflush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofill.d -MT H5Ofill.obj ../H5Ofill.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oefl.d -MT H5Oefl.obj ../H5Oefl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odtype.d -MT H5Odtype.obj ../H5Odtype.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmslut.obj -c ../cmslut.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odrvinfo.d -MT H5Odrvinfo.obj ../H5Odrvinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odbg.d -MT H5Odbg.obj ../H5Odbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocopy.d -MT H5Ocopy.obj ../H5Ocopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocont.d -MT H5Ocont.obj ../H5Ocont.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsmd5.obj -c ../cmsmd5.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ochunk.d -MT H5Ochunk.obj ../H5Ochunk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache_image.d -MT H5Ocache_image.obj ../H5Ocache_image.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache.d -MT H5Ocache.obj ../H5Ocache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obtreek.d -MT H5Obtreek.obj ../H5Obtreek.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsmtrx.obj -c ../cmsmtrx.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obogus.d -MT H5Obogus.obj ../H5Obogus.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattribute.d -MT H5Oattribute.obj ../H5Oattribute.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattr.d -MT H5Oattr.obj ../H5Oattr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oalloc.d -MT H5Oalloc.obj ../H5Oalloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oainfo.d -MT H5Oainfo.obj ../H5Oainfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsnamed.obj -c ../cmsnamed.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5O.d -MT H5O.obj ../H5O.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MPtest.d -MT H5MPtest.obj ../H5MPtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MP.d -MT H5MP.obj ../H5MP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MM.d -MT H5MM.obj ../H5MM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFsection.d -MT H5MFsection.obj ../H5MFsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFdbg.d -MT H5MFdbg.obj ../H5MFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFaggr.d -MT H5MFaggr.obj ../H5MFaggr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MF.d -MT H5MF.obj ../H5MF.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Lexternal.d -MT H5Lexternal.obj ../H5Lexternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsopt.obj -c ../cmsopt.c -../cmsopt.c: In function ‘PatchLUT’: -../cmsopt.c:510:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 510 | else - | ^~~~ -../cmsopt.c:526:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 526 | for (i=0; i < nChannelsOut; i++) - | ^~~ -../cmsopt.c: In function ‘PrelinEval8’: -../cmsopt.c:978:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 978 | else - | ^~~~ -../cmsopt.c:990:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 990 | Rest = c1 * rx + c2 * ry + c3 * rz + 0x8001; - | ^~~~ -../cmsopt.c: In function ‘OptimizeByComputingLinearization’: -../cmsopt.c:1030:26: warning: variable ‘lIsLinear’ set but not used [-Wunused-but-set-variable] - 1030 | cmsBool lIsSuitable, lIsLinear; - | ^~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5L.d -MT H5L.obj ../H5L.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Itest.d -MT H5Itest.obj ../H5Itest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5I.d -MT H5I.obj ../H5I.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HP.d -MT H5HP.obj ../H5HP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdblk.d -MT H5HLdblk.obj ../H5HLdblk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLprfx.d -MT H5HLprfx.obj ../H5HLprfx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLint.d -MT H5HLint.obj ../H5HLint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdbg.d -MT H5HLdbg.obj ../H5HLdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLcache.d -MT H5HLcache.obj ../H5HLcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HL.d -MT H5HL.obj ../H5HL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGquery.d -MT H5HGquery.obj ../H5HGquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGdbg.d -MT H5HGdbg.obj ../H5HGdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGcache.d -MT H5HGcache.obj ../H5HGcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HG.d -MT H5HG.obj ../H5HG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtiny.d -MT H5HFtiny.obj ../H5HFtiny.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtest.d -MT H5HFtest.obj ../H5HFtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFstat.d -MT H5HFstat.obj ../H5HFstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFspace.d -MT H5HFspace.obj ../H5HFspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFsection.d -MT H5HFsection.obj ../H5HFsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFman.d -MT H5HFman.obj ../H5HFman.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiter.d -MT H5HFiter.obj ../H5HFiter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiblock.d -MT H5HFiblock.obj ../H5HFiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhuge.d -MT H5HFhuge.obj ../H5HFhuge.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhdr.d -MT H5HFhdr.obj ../H5HFhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdtable.d -MT H5HFdtable.obj ../H5HFdtable.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdblock.d -MT H5HFdblock.obj ../H5HFdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdbg.d -MT H5HFdbg.obj ../H5HFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFcache.d -MT H5HFcache.obj ../H5HFcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmspack.obj -c ../cmspack.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFbtree2.d -MT H5HFbtree2.obj ../H5HFbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HF.d -MT H5HF.obj ../H5HF.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtraverse.d -MT H5Gtraverse.obj ../H5Gtraverse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtest.d -MT H5Gtest.obj ../H5Gtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gstab.d -MT H5Gstab.obj ../H5Gstab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmspcs.obj -c ../cmspcs.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Groot.d -MT H5Groot.obj ../H5Groot.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Goh.d -MT H5Goh.obj ../H5Goh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gobj.d -MT H5Gobj.obj ../H5Gobj.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gnode.d -MT H5Gnode.obj ../H5Gnode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gname.d -MT H5Gname.obj ../H5Gname.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gloc.d -MT H5Gloc.obj ../H5Gloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsplugin.obj -c ../cmsplugin.c -../cmsplugin.c: In function ‘_cmsReadFloat32Number’: -../cmsplugin.c:181:15: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] - 181 | *n = *(cmsFloat32Number*) (void*) &tmp; - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmsplugin.c: In function ‘_cmsWriteFloat32Number’: -../cmsplugin.c:292:12: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] - 292 | tmp = *(cmsUInt32Number*) (void*) &n; - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Glink.d -MT H5Glink.obj ../H5Glink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gint.d -MT H5Gint.obj ../H5Gint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gent.d -MT H5Gent.obj ../H5Gent.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdeprec.d -MT H5Gdeprec.obj ../H5Gdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdense.d -MT H5Gdense.obj ../H5Gdense.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsps2.obj -c ../cmsps2.c -../cmsps2.c: In function ‘WriteInputMatrixShaper’: -../cmsps2.c:964:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 964 | else - | ^~~~ -../cmsps2.c:986:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 986 | return rc; - | ^~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcompact.d -MT H5Gcompact.obj ../H5Gcompact.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcache.d -MT H5Gcache.obj ../H5Gcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gbtree2.d -MT H5Gbtree2.obj ../H5Gbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5G.d -MT H5G.obj ../H5G.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FStest.d -MT H5FStest.obj ../H5FStest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmssamp.obj -c ../cmssamp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSstat.d -MT H5FSstat.obj ../H5FSstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSsection.d -MT H5FSsection.obj ../H5FSsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSint.d -MT H5FSint.obj ../H5FSint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSdbg.d -MT H5FSdbg.obj ../H5FSdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FScache.d -MT H5FScache.obj ../H5FScache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmssm.obj -c ../cmssm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FS.d -MT H5FS.obj ../H5FS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FO.d -MT H5FO.obj ../H5FO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FL.d -MT H5FL.obj ../H5FL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDtest.d -MT H5FDtest.obj ../H5FDtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDstdio.d -MT H5FDstdio.obj ../H5FDstdio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDspace.d -MT H5FDspace.obj ../H5FDspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDsec2.d -MT H5FDsec2.obj ../H5FDsec2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDmulti.d -MT H5FDmulti.obj ../H5FDmulti.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDlog.d -MT H5FDlog.obj ../H5FDlog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDint.d -MT H5FDint.obj ../H5FDint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDfamily.d -MT H5FDfamily.obj ../H5FDfamily.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDcore.d -MT H5FDcore.obj ../H5FDcore.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FD.d -MT H5FD.obj ../H5FD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAtest.d -MT H5FAtest.obj ../H5FAtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAstat.d -MT H5FAstat.obj ../H5FAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAint.d -MT H5FAint.obj ../H5FAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmstypes.obj -c ../cmstypes.c -../cmstypes.c: In function ‘ReadCLUT’: -../cmstypes.c:2360:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 2360 | else - | ^~~~ -../cmstypes.c:2374:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 2374 | return CLUT; - | ^~~~~~ -../cmstypes.c: In function ‘WriteCLUT’: -../cmstypes.c:2645:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 2645 | else - | ^~~~ -../cmstypes.c:2655:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 2655 | if (!_cmsWriteAlignment(io)) return FALSE; - | ^~ -../cmstypes.c: In function ‘Type_NamedColor_Write’: -../cmstypes.c:3146:5: warning: ‘strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] - 3146 | strncpy(prefix, (const char*) NamedColorList->Prefix, 32); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmstypes.c:3147:5: warning: ‘strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] - 3147 | strncpy(suffix, (const char*) NamedColorList->Suffix, 32); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAhdr.d -MT H5FAhdr.obj ../H5FAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblkpage.d -MT H5FAdblkpage.obj ../H5FAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblock.d -MT H5FAdblock.obj ../H5FAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdbg.d -MT H5FAdbg.obj ../H5FAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAcache.d -MT H5FAcache.obj ../H5FAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FA.d -MT H5FA.obj ../H5FA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsvirt.obj -c ../cmsvirt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ftest.d -MT H5Ftest.obj ../H5Ftest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper_cache.d -MT H5Fsuper_cache.obj ../H5Fsuper_cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper.d -MT H5Fsuper.obj ../H5Fsuper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmswtpnt.obj -c ../cmswtpnt.c -../cmswtpnt.c: In function ‘cmsWhitePointFromTemp’: -../cmswtpnt.c:66:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 66 | else - | ^~~~ -../cmswtpnt.c:80:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 80 | y = -3.000*(x*x) + 2.870*x - 0.275; - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fspace.d -MT H5Fspace.obj ../H5Fspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsfile.d -MT H5Fsfile.obj ../H5Fsfile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fquery.d -MT H5Fquery.obj ../H5Fquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fmount.d -MT H5Fmount.obj ../H5Fmount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fio.d -MT H5Fio.obj ../H5Fio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsxform.obj -c ../cmsxform.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fint.d -MT H5Fint.obj ../H5Fint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o lcms.dll -shared -Wl,--out-implib,liblcms.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ cmsalpha.obj cmscam02.obj cmscgats.obj cmscnvrt.obj cmserr.obj cmsgamma.obj cmsgmt.obj cmshalf.obj cmsintrp.obj cmsio0.obj cmsio1.obj cmslut.obj cmsmd5.obj cmsmtrx.obj cmsnamed.obj cmsopt.obj cmspack.obj cmspcs.obj cmsplugin.obj cmsps2.obj cmssamp.obj cmssm.obj cmstypes.obj cmsvirt.obj cmswtpnt.obj cmsxform.obj -lws2_32 -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make -C ./ttf install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ffake.d -MT H5Ffake.obj ../H5Ffake.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make -C ./src install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' -mkdir -p O.Common -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fefc.d -MT H5Fefc.obj ../H5Fefc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cff.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bdf.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdeprec.d -MT H5Fdeprec.obj ../H5Fdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF winfnt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type42.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1cid.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdbg.d -MT H5Fdbg.obj ../H5Fdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF truetype.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF smooth.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fcwfs.d -MT H5Fcwfs.obj ../H5Fcwfs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF sfnt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF raster.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psmodule.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pshinter.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Faccum.d -MT H5Faccum.obj ../H5Faccum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psaux.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pfr.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pcf.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5F.d -MT H5F.obj ../H5F.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlzw.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgzip.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftcache.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftwinfnt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAtest.d -MT H5EAtest.obj ../H5EAtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fttype1.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsystem.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsynth.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftstroke.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAstat.d -MT H5EAstat.obj ../H5EAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpfr.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpatent.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftotval.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftmm.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAsblock.d -MT H5EAsblock.obj ../H5EAsblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlcdfil.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftinit.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgxval.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftglyph.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAint.d -MT H5EAint.obj ../H5EAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgasp.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfstype.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfntfmt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbitmap.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbbox.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAiblock.d -MT H5EAiblock.obj ../H5EAiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbase.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAhdr.d -MT H5EAhdr.obj ../H5EAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblock.d -MT H5EAdblock.obj ../H5EAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblkpage.d -MT H5EAdblkpage.obj ../H5EAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF autofit.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdbg.d -MT H5EAdbg.obj ../H5EAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAcache.d -MT H5EAcache.obj ../H5EAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EA.d -MT H5EA.obj ../H5EA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Eint.d -MT H5Eint.obj ../H5Eint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Edeprec.d -MT H5Edeprec.obj ../H5Edeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5E.d -MT H5E.obj ../H5E.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dvirtual.d -MT H5Dvirtual.obj ../H5Dvirtual.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dtest.d -MT H5Dtest.obj ../H5Dtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dsingle.d -MT H5Dsingle.obj ../H5Dsingle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dselect.d -MT H5Dselect.obj ../H5Dselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dscatgath.d -MT H5Dscatgath.obj ../H5Dscatgath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Doh.d -MT H5Doh.obj ../H5Doh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dnone.d -MT H5Dnone.obj ../H5Dnone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dlayout.d -MT H5Dlayout.obj ../H5Dlayout.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dio.d -MT H5Dio.obj ../H5Dio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dint.d -MT H5Dint.obj ../H5Dint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfill.d -MT H5Dfill.obj ../H5Dfill.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfarray.d -MT H5Dfarray.obj ../H5Dfarray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Defl.d -MT H5Defl.obj ../H5Defl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dearray.d -MT H5Dearray.obj ../H5Dearray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddeprec.d -MT H5Ddeprec.obj ../H5Ddeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddbg.d -MT H5Ddbg.obj ../H5Ddbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcontig.d -MT H5Dcontig.obj ../H5Dcontig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcompact.d -MT H5Dcompact.obj ../H5Dcompact.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dchunk.d -MT H5Dchunk.obj ../H5Dchunk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree2.d -MT H5Dbtree2.obj ../H5Dbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree.d -MT H5Dbtree.obj ../H5Dbtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5D.d -MT H5D.obj ../H5D.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5CS.d -MT H5CS.obj ../H5CS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctest.d -MT H5Ctest.obj ../H5Ctest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctag.d -MT H5Ctag.obj ../H5Ctag.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cquery.d -MT H5Cquery.obj ../H5Cquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cprefetched.d -MT H5Cprefetched.obj ../H5Cprefetched.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Clog.d -MT H5Clog.obj ../H5Clog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cimage.d -MT H5Cimage.obj ../H5Cimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cepoch.d -MT H5Cepoch.obj ../H5Cepoch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cdbg.d -MT H5Cdbg.obj ../H5Cdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5C.d -MT H5C.obj ../H5C.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2test.d -MT H5B2test.obj ../H5B2test.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2stat.d -MT H5B2stat.obj ../H5B2stat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2leaf.d -MT H5B2leaf.obj ../H5B2leaf.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2internal.d -MT H5B2internal.obj ../H5B2internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2int.d -MT H5B2int.obj ../H5B2int.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2hdr.d -MT H5B2hdr.obj ../H5B2hdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2dbg.d -MT H5B2dbg.obj ../H5B2dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2cache.d -MT H5B2cache.obj ../H5B2cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2.d -MT H5B2.obj ../H5B2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bdbg.d -MT H5Bdbg.obj ../H5Bdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bcache.d -MT H5Bcache.obj ../H5Bcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B.d -MT H5B.obj ../H5B.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACproxy_entry.d -MT H5ACproxy_entry.obj ../H5ACproxy_entry.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACdbg.d -MT H5ACdbg.obj ../H5ACdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AClog.d -MT H5AClog.obj ../H5AClog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AC.d -MT H5AC.obj ../H5AC.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Atest.d -MT H5Atest.obj ../H5Atest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Aint.d -MT H5Aint.obj ../H5Aint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adeprec.d -MT H5Adeprec.obj ../H5Adeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adense.d -MT H5Adense.obj ../H5Adense.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Abtree2.d -MT H5Abtree2.obj ../H5Abtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5A.d -MT H5A.obj ../H5A.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5trace.d -MT H5trace.obj ../H5trace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5timer.d -MT H5timer.obj ../H5timer.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5system.d -MT H5system.obj ../H5system.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5dbg.d -MT H5dbg.obj ../H5dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5checksum.d -MT H5checksum.obj ../H5checksum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5.d -MT H5.obj ../H5.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5.obj -c ../H5.c -In file included from ../H5.c:22: -../H5.c: In function ‘H5check_version’: -../H5private.h:1358:31: warning: ‘strncat’ specified bound 1 equals source length [-Wstringop-overflow=] - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5.c:831:6: note: in expansion of macro ‘HDstrncat’ - 831 | HDstrncat(lib_str, "-", (size_t)1); - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5checksum.obj -c ../H5checksum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5dbg.obj -c ../H5dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5system.obj -c ../H5system.c -../H5system.c:849: warning: ignoring #pragma comment [-Wunknown-pragmas] - 849 | #pragma comment(lib, "advapi32.lib") - | -../H5system.c: In function ‘Wgetlogin’: -../H5system.c:861:36: warning: pointer targets in passing argument 2 of ‘GetUserNameA’ differ in signedness [-Wpointer-sign] - 861 | if (GetUserName(Wlogin_buffer, &bufferCount) == 0) - | ^~~~~~~~~~~~ - | | - | long int * -In file included from /usr/share/mingw-w64/include/windows.h:70, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../H5private.h:179, - from ../H5system.c:33: -/usr/share/mingw-w64/include/winbase.h:2399:66: note: expected ‘LPDWORD’ {aka ‘long unsigned int *’} but argument is of type ‘long int *’ - 2399 | WINADVAPI WINBOOL WINAPI GetUserNameA (LPSTR lpBuffer, LPDWORD pcbBuffer); - | ~~~~~~~~^~~~~~~~~ -In file included from ../H5system.c:33: -../H5system.c: In function ‘H5_build_extpath’: -../H5private.h:1358:31: warning: ‘strncat’ specified bound 1 equals source length [-Wstringop-overflow=] - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5system.c:1115:17: note: in expansion of macro ‘HDstrncat’ - 1115 | HDstrncat(full_path, H5_DIR_SEPS, HDstrlen(H5_DIR_SEPS)); - | ^~~~~~~~~ -../H5private.h:1358:31: warning: ‘strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5system.c:1116:13: note: in expansion of macro ‘HDstrncat’ - 1116 | HDstrncat(full_path, new_name, HDstrlen(new_name)); - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5timer.obj -c ../H5timer.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5trace.obj -c ../H5trace.c -../H5trace.c: In function ‘H5_trace’: -../H5trace.c:250:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 250 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:264:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 264 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:283:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 283 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:299:56: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 299 | fprintf (out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:337:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 337 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:363:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 363 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:397:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 397 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:431:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 431 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:461:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 461 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:499:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 499 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:545:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 545 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:587:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 587 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:638:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 638 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:668:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 668 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:702:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 702 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:728:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 728 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:764:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 764 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:783:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 783 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:809:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 809 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:816:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 816 | fprintf(out, "0x%lx", (unsigned long)error); - | ^ -../H5trace.c:823:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 823 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:857:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 857 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:891:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 891 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:926:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 926 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:977:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 977 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1003:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1003 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1012:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1012 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1047:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1047 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1095:56: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1095 | fprintf (out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1102:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1102 | fprintf(out, "0x%lx", (unsigned long)statbuf); - | ^ -../H5trace.c:1116:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1116 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1150:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1150 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1180:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1180 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1368:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1368 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1402:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1402 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1440:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1440 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1464:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1464 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1546:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1546 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1578:56: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1578 | fprintf (out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1624:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1624 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1640:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1640 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1656:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1656 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1715:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1715 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1731:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1731 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1775:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1775 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1799:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1799 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1815:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1815 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1857:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1857 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1891:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1891 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1949:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1949 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1997:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1997 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2013:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2013 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2060:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2060 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2090:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2090 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2120:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2120 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2154:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2154 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2196:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2196 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2234:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2234 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2268:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2268 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2338:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2338 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2394:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2394 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2415:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2415 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2439:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2439 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2455:45: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2455 | fprintf(out, "%llu", iull); - | ^ -../H5trace.c:2455:42: warning: too many arguments for format [-Wformat-extra-args] - 2455 | fprintf(out, "%llu", iull); - | ^~~~~~ -../H5trace.c:2455:45: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2455 | fprintf(out, "%llu", iull); - | ^ -../H5trace.c:2455:42: warning: too many arguments for format [-Wformat-extra-args] - 2455 | fprintf(out, "%llu", iull); - | ^~~~~~ -../H5trace.c:2469:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2469 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2476:78: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2476 | fprintf(out, "%s0x%lx", (i ? ", " : ""), (unsigned long)(p[i])); - | ^ -../H5trace.c:2490:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2490 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2499:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2499 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2525:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2525 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2555:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2555 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2562:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2562 | fprintf(out, "0x%lx", (unsigned long)filter); - | ^ -../H5trace.c:2569:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2569 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2588:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2588 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2605:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2605 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5A.obj -c ../H5A.c -In file included from ../H5A.c:25: -../H5A.c: In function ‘H5Aget_name_by_idx’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5A.c:937:9: note: in expansion of macro ‘HDstrncpy’ - 937 | HDstrncpy(name, attr->shared->name, MIN((size_t)(ret_value + 1), size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5A.c:933:26: note: in expansion of macro ‘HDstrlen’ - 933 | ret_value = (ssize_t)HDstrlen(attr->shared->name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Abtree2.obj -c ../H5Abtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Adense.obj -c ../H5Adense.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Adeprec.obj -c ../H5Adeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Aint.obj -c ../H5Aint.c -../H5Aint.c: In function ‘H5A_create’: -../H5Aint.c:200:45: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 200 | if(NULL == (attr->shared->dt = H5T_copy(type, H5T_COPY_ALL))) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Aprivate.h:25, - from ../H5Apkg.h:37, - from ../H5Aint.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Aint.c: In function ‘H5A__read’: -../H5Aint.c:532:71: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 532 | (dst_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0) - | ^~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Aprivate.h:25, - from ../H5Apkg.h:37, - from ../H5Aint.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Aint.c: In function ‘H5A__write’: -../H5Aint.c:632:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 632 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0 || - | ^~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Aprivate.h:25, - from ../H5Apkg.h:37, - from ../H5Aint.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Atest.obj -c ../H5Atest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5AC.obj -c ../H5AC.c -In file included from ../H5AC.c:39: -../H5AC.c: In function ‘H5AC__init_package’: -../H5private.h:1992:13: warning: unused variable ‘err_occurred’ [-Wunused-variable] - 1992 | hbool_t err_occurred = FALSE; \ - | ^~~~~~~~~~~~ -../H5private.h:2175:5: note: in expansion of macro ‘FUNC_ENTER_COMMON’ - 2175 | FUNC_ENTER_COMMON(H5_IS_PKG(FUNC)); \ - | ^~~~~~~~~~~~~~~~~ -../H5AC.c:201:5: note: in expansion of macro ‘FUNC_ENTER_PACKAGE’ - 201 | FUNC_ENTER_PACKAGE - | ^~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5AClog.obj -c ../H5AClog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5ACdbg.obj -c ../H5ACdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5ACproxy_entry.obj -c ../H5ACproxy_entry.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B.obj -c ../H5B.c -../H5B.c: In function ‘H5B_valid’: -../H5B.c:2038:26: warning: variable ‘shared’ set but not used [-Wunused-but-set-variable] - 2038 | H5B_shared_t *shared; /* Pointer to shared B-tree info */ - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Bcache.obj -c ../H5Bcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -/usr/bin/ar -rc libttf.a autofit.o ftbase.o ftbbox.o ftbitmap.o ftfntfmt.o ftfstype.o ftgasp.o ftglyph.o ftgxval.o ftinit.o ftlcdfil.o ftmm.o ftotval.o ftpatent.o ftpfr.o ftstroke.o ftsynth.o ftsystem.o fttype1.o ftwinfnt.o ftcache.o ftgzip.o ftlzw.o pcf.o pfr.o psaux.o pshinter.o psmodule.o raster.o sfnt.o smooth.o truetype.o type1.o type1cid.o type42.o winfnt.o bdf.o cff.o -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -/usr/bin/ranlib libttf.a -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -g++ -o libttf.so -shared -fPIC -Wl,-hlibttf.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 autofit.o ftbase.o ftbbox.o ftbitmap.o ftfntfmt.o ftfstype.o ftgasp.o ftglyph.o ftgxval.o ftinit.o ftlcdfil.o ftmm.o ftotval.o ftpatent.o ftpfr.o ftstroke.o ftsynth.o ftsystem.o fttype1.o ftwinfnt.o ftcache.o ftgzip.o ftlzw.o pcf.o pfr.o psaux.o pshinter.o psmodule.o raster.o sfnt.o smooth.o truetype.o type1.o type1cid.o type42.o winfnt.o bdf.o cff.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Bdbg.obj -c ../H5Bdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ - T_A=windows-x64-mingw install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cff.d -MT cff.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bdf.d -MT bdf.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF winfnt.d -MT winfnt.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type42.d -MT type42.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1cid.d -MT type1cid.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1.d -MT type1.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF truetype.d -MT truetype.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF smooth.d -MT smooth.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF sfnt.d -MT sfnt.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF raster.d -MT raster.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psmodule.d -MT psmodule.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pshinter.d -MT pshinter.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psaux.d -MT psaux.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pfr.d -MT pfr.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pcf.d -MT pcf.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlzw.d -MT ftlzw.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgzip.d -MT ftgzip.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftcache.d -MT ftcache.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftwinfnt.d -MT ftwinfnt.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fttype1.d -MT fttype1.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsystem.d -MT ftsystem.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsynth.d -MT ftsynth.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftstroke.d -MT ftstroke.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpfr.d -MT ftpfr.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2.obj -c ../H5B2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpatent.d -MT ftpatent.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftotval.d -MT ftotval.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftmm.d -MT ftmm.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlcdfil.d -MT ftlcdfil.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftinit.d -MT ftinit.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgxval.d -MT ftgxval.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftglyph.d -MT ftglyph.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgasp.d -MT ftgasp.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfstype.d -MT ftfstype.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfntfmt.d -MT ftfntfmt.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbitmap.d -MT ftbitmap.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbbox.d -MT ftbbox.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbase.d -MT ftbase.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF autofit.d -MT autofit.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2cache.obj -c ../H5B2cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2dbg.obj -c ../H5B2dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2hdr.obj -c ../H5B2hdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o autofit.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2int.obj -c ../H5B2int.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2internal.obj -c ../H5B2internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2leaf.obj -c ../H5B2leaf.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2stat.obj -c ../H5B2stat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftbase.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftbbox.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2test.obj -c ../H5B2test.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftbitmap.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftfntfmt.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftfstype.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftgasp.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftglyph.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftgxval.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftinit.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftlcdfil.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftmm.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftotval.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftpatent.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftpfr.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftstroke.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftsynth.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftsystem.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o fttype1.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftwinfnt.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5C.obj -c ../H5C.c -../H5C.c: In function ‘H5C_flush_cache’: -../H5C.c:1057:14: warning: variable ‘ignore_protected’ set but not used [-Wunused-but-set-variable] - 1057 | hbool_t ignore_protected; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftcache.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cdbg.obj -c ../H5Cdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cepoch.obj -c ../H5Cepoch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftgzip.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftlzw.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o pcf.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cimage.obj -c ../H5Cimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Clog.obj -c ../H5Clog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o pfr.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cprefetched.obj -c ../H5Cprefetched.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cquery.obj -c ../H5Cquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o psaux.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ctag.obj -c ../H5Ctag.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o pshinter.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ctest.obj -c ../H5Ctest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o psmodule.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5CS.obj -c ../H5CS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o raster.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5D.obj -c ../H5D.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dbtree.obj -c ../H5Dbtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o sfnt.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dbtree2.obj -c ../H5Dbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o smooth.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dchunk.obj -c ../H5Dchunk.c -../H5Dchunk.c: In function ‘H5D__chunk_direct_write’: -../H5Dchunk.c:393:13: warning: unused variable ‘md_dxpl_generated’ [-Wunused-variable] - 393 | hbool_t md_dxpl_generated = FALSE; /* bool to indicate whether we should free the md_dxpl_id at exit */ - | ^~~~~~~~~~~~~~~~~ -../H5Dchunk.c: In function ‘H5D__chunk_init’: -../H5Dchunk.c:724:26: warning: unused variable ‘sc’ [-Wunused-variable] - 724 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_is_space_alloc’: -../H5Dchunk.c:816:32: warning: unused variable ‘sc’ [-Wunused-variable] - 816 | const H5O_storage_chunk_t *sc = &(storage->u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_dest’: -../H5Dchunk.c:2371:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2371 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_create’: -../H5Dchunk.c:2582:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2582 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_lookup’: -../H5Dchunk.c:2683:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2683 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_flush_entry’: -../H5Dchunk.c:2806:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2806 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_allocated’: -../H5Dchunk.c:3716:26: warning: unused variable ‘sc’ [-Wunused-variable] - 3716 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_allocate’: -../H5Dchunk.c:3809:32: warning: unused variable ‘sc’ [-Wunused-variable] - 3809 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_update_old_edge_chunks’: -../H5Dchunk.c:4242:32: warning: unused variable ‘sc’ [-Wunused-variable] - 4242 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c:4229:24: warning: unused variable ‘pline’ [-Wunused-variable] - 4229 | const H5O_pline_t *pline = &(dset->shared->dcpl_cache.pline); /* I/O pipeline info */ - | ^~~~~ -../H5Dchunk.c: In function ‘H5D__chunk_prune_by_extent’: -../H5Dchunk.c:4797:32: warning: unused variable ‘sc’ [-Wunused-variable] - 4797 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_delete’: -../H5Dchunk.c:5203:26: warning: unused variable ‘sc’ [-Wunused-variable] - 5203 | H5O_storage_chunk_t *sc = &(storage->u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_copy_cb’: -../H5Dchunk.c:5550:111: warning: passing argument 5 of ‘H5D__chunk_file_alloc’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 5550 | if(H5D__chunk_file_alloc(udata->idx_info_dst, NULL, &udata_dst.chunk_block, &need_insert, udata_dst.common.scaled) < 0) - | ~~~~~~~~~~~~~~~~^~~~~~~ -../H5Dchunk.c:300:13: note: expected ‘hsize_t *’ {aka ‘long long unsigned int *’} but argument is of type ‘const hsize_t *’ {aka ‘const long long unsigned int *’} - 300 | hsize_t scaled[]); - | ~~~~~~~~^~~~~~~~ -../H5Dchunk.c: In function ‘H5D__chunk_copy’: -../H5Dchunk.c:5689:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 5689 | if(NULL == (dt_mem = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) - | ^~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dchunk.c:55: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dchunk.c:5697:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 5697 | if(NULL == (dt_dst = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) - | ^~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dchunk.c:55: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dchunk.c: In function ‘H5D__chunk_bh_info’: -../H5Dchunk.c:5856:26: warning: unused variable ‘sc’ [-Wunused-variable] - 5856 | H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_dump_index’: -../H5Dchunk.c:5979:26: warning: unused variable ‘sc’ [-Wunused-variable] - 5979 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o truetype.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c:25: -../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/ttgload.c: In function ‘load_truetype_glyph’: -../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/ttgload.c:1662:26: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 1662 | (void*)(unsigned long)glyph_index ) ) - | ^ -../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/ttgload.c:1676:22: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 1676 | node->data = (void*)(unsigned long)glyph_index; - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dcompact.obj -c ../H5Dcompact.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dcontig.obj -c ../H5Dcontig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o type1.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ddbg.obj -c ../H5Ddbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o type1cid.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o type42.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ddeprec.obj -c ../H5Ddeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o winfnt.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dearray.obj -c ../H5Dearray.c -../H5Dearray.c: In function ‘H5D__earray_debug’: -../H5Dearray.c:446:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 446 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5Dearray.c:446:23: warning: too many arguments for format [-Wformat-extra-args] - 446 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -../H5Dearray.c:446:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 446 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5Dearray.c:446:23: warning: too many arguments for format [-Wformat-extra-args] - 446 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -../H5Dearray.c: In function ‘H5D__earray_filt_debug’: -../H5Dearray.c:605:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 605 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5Dearray.c:605:23: warning: too many arguments for format [-Wformat-extra-args] - 605 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -../H5Dearray.c:605:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 605 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5Dearray.c:605:23: warning: too many arguments for format [-Wformat-extra-args] - 605 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o bdf.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Defl.obj -c ../H5Defl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dfarray.obj -c ../H5Dfarray.c -../H5Dfarray.c: In function ‘H5D__farray_debug’: -../H5Dfarray.c:444:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 444 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5Dfarray.c:444:23: warning: too many arguments for format [-Wformat-extra-args] - 444 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -../H5Dfarray.c:444:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 444 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5Dfarray.c:444:23: warning: too many arguments for format [-Wformat-extra-args] - 444 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -../H5Dfarray.c: In function ‘H5D__farray_filt_debug’: -../H5Dfarray.c:710:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 710 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5Dfarray.c:710:23: warning: too many arguments for format [-Wformat-extra-args] - 710 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -../H5Dfarray.c:710:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 710 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5Dfarray.c:710:23: warning: too many arguments for format [-Wformat-extra-args] - 710 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dfill.obj -c ../H5Dfill.c -../H5Dfill.c: In function ‘H5D__fill’: -../H5Dfill.c:238:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 238 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(fill_type, H5T_COPY_ALL), FALSE)) < 0) - | ^~~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dfill.c:36: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dfill.c:241:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 241 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(buf_type, H5T_COPY_ALL), FALSE)) < 0) - | ^~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dfill.c:36: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dfill.c: In function ‘H5D__fill_init’: -../H5Dfill.c:413:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 413 | if(NULL == (fb_info->mem_type = H5T_copy(dset_type, H5T_COPY_REOPEN))) - | ^~~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dfill.c:36: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o cff.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o ttf.dll -shared -Wl,--out-implib,libttf.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ autofit.obj ftbase.obj ftbbox.obj ftbitmap.obj ftfntfmt.obj ftfstype.obj ftgasp.obj ftglyph.obj ftgxval.obj ftinit.obj ftlcdfil.obj ftmm.obj ftotval.obj ftpatent.obj ftpfr.obj ftstroke.obj ftsynth.obj ftsystem.obj fttype1.obj ftwinfnt.obj ftcache.obj ftgzip.obj ftlzw.obj pcf.obj pfr.obj psaux.obj pshinter.obj psmodule.obj raster.obj sfnt.obj smooth.obj truetype.obj type1.obj type1cid.obj type42.obj winfnt.obj bdf.obj cff.obj -lws2_32 -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make -C ./wmf install -make -C ./src install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' -mkdir -p O.Common -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dint.obj -c ../H5Dint.c -../H5Dint.c: In function ‘H5D__init_type’: -../H5Dint.c:681:43: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 681 | if((dset->shared->type = H5T_copy(type, H5T_COPY_ALL)) == NULL) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dint.c:25: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dint.c: In function ‘H5D__mark’: -../H5Dint.c:3174:37: warning: passing argument 1 of ‘H5D__layout_oh_write’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 3174 | if(H5D__layout_oh_write(dataset, dxpl_id, oh, update_flags) < 0) - | ^~~~~~~ -In file included from ../H5Dint.c:25: -../H5Dpkg.h:638:43: note: expected ‘H5D_t *’ {aka ‘struct H5D_t *’} but argument is of type ‘const H5D_t *’ {aka ‘const struct H5D_t *’} - 638 | H5_DLL herr_t H5D__layout_oh_write(H5D_t *dataset, hid_t dxpl_id, H5O_t *oh, - | ~~~~~~~^~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF recorder.d ../recorder.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF player.d ../player.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF meta.d ../meta.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bbuf.d ../bbuf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF api.d ../api.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../api.c -In file included from ../api.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../bbuf.c -In file included from ../bbuf.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dio.obj -c ../H5Dio.c -In file included from ../H5Dio.c:24: -../H5Dio.c: In function ‘H5D__ioinfo_init’: -../H5private.h:1992:13: warning: unused variable ‘err_occurred’ [-Wunused-variable] - 1992 | hbool_t err_occurred = FALSE; \ - | ^~~~~~~~~~~~ -../H5private.h:2199:5: note: in expansion of macro ‘FUNC_ENTER_COMMON’ - 2199 | FUNC_ENTER_COMMON(H5_IS_PKG(FUNC)); \ - | ^~~~~~~~~~~~~~~~~ -../H5Dio.c:867:5: note: in expansion of macro ‘FUNC_ENTER_STATIC’ - 867 | FUNC_ENTER_STATIC - | ^~~~~~~~~~~~~~~~~ -../H5Dio.c:920:1: warning: label ‘done’ defined but not used [-Wunused-label] - 920 | done: - | ^~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../meta.c -In file included from ../meta.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dlayout.obj -c ../H5Dlayout.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dnone.obj -c ../H5Dnone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Doh.obj -c ../H5Doh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dscatgath.obj -c ../H5Dscatgath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dselect.obj -c ../H5Dselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dsingle.obj -c ../H5Dsingle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../player.c -In file included from ../player.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -In file included from ../player.c:44: -../player/meta.h: In function ‘meta_dc_color’: -../player/meta.h:2386:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] - 2386 | { if (value = wmf_attr_query (API, attrlist, "color")) - | ^~~~~ -../player/meta.h: In function ‘meta_pen_create’: -../player/meta.h:3107:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] - 3107 | { if (value = wmf_attr_query (API, attrlist, "color")) - | ^~~~~ -../player/meta.h: In function ‘meta_brush_create’: -../player/meta.h:3209:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] - 3209 | { if (value = wmf_attr_query (API, attrlist, "color")) - | ^~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dtest.obj -c ../H5Dtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../recorder.c -In file included from ../recorder.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -../recorder.c: In function ‘wmf_canvas_line’: -../recorder.c:977:17: warning: unused variable ‘Size’ [-Wunused-variable] - 977 | unsigned long Size = 3 + 2; - | ^~~~ -../recorder.c: In function ‘s_update_header’: -../recorder.c:91:16: warning: ‘rbox.ptr’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 91 | *rbox->ptr++ = (unsigned char) ((ul >> 8) & 0xff); - | ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../recorder.c:98:16: note: ‘rbox.ptr’ was declared here - 98 | wmfRecordBox rbox; - | ^~~~ -../recorder.c:84:17: warning: ‘rbox.end’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 84 | if (rbox->end - rbox->ptr < 4) - | ~~~~~~~~~~^~~~~~~~~~~ -../recorder.c:98:16: note: ‘rbox.end’ was declared here - 98 | wmfRecordBox rbox; - | ^~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -/usr/bin/ar -rc libwmf.a api.o bbuf.o meta.o player.o recorder.o -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -/usr/bin/ranlib libwmf.a -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -g++ -o libwmf.so -shared -fPIC -Wl,-hlibwmf.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 api.o bbuf.o meta.o player.o recorder.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ - T_A=windows-x64-mingw install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF recorder.d -MT recorder.obj ../recorder.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF player.d -MT player.obj ../player.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF meta.d -MT meta.obj ../meta.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bbuf.d -MT bbuf.obj ../bbuf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF api.d -MT api.obj ../api.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o api.obj -c ../api.c -In file included from ../api.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, - from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, - from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, - from ../wmfdefs.h:24, - from ../api.c:29: -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] - 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] - 310 | # pragma warning( disable : 4018 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] - 311 | # pragma warning( disable : 4244 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] - 312 | # pragma warning( disable : 4142 ) - | -In file included from ../wmfdefs.h:25, - from ../api.c:29: -../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export - 34 | # pragma message( "WMF compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o bbuf.obj -c ../bbuf.c -In file included from ../bbuf.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, - from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, - from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, - from ../wmfdefs.h:24, - from ../bbuf.c:26: -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] - 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] - 310 | # pragma warning( disable : 4018 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] - 311 | # pragma warning( disable : 4244 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] - 312 | # pragma warning( disable : 4142 ) - | -In file included from ../wmfdefs.h:25, - from ../bbuf.c:26: -../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export - 34 | # pragma message( "WMF compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dvirtual.obj -c ../H5Dvirtual.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o meta.obj -c ../meta.c -In file included from ../meta.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, - from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, - from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, - from ../wmfdefs.h:24, - from ../meta.c:26: -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] - 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] - 310 | # pragma warning( disable : 4018 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] - 311 | # pragma warning( disable : 4244 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] - 312 | # pragma warning( disable : 4142 ) - | -In file included from ../wmfdefs.h:25, - from ../meta.c:26: -../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export - 34 | # pragma message( "WMF compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5E.obj -c ../H5E.c -In file included from ../H5E.c:52: -In function ‘H5E_get_class_name’, - inlined from ‘H5Eget_class_name’ at ../H5E.c:610:21: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5E.c:646:8: note: in expansion of macro ‘HDstrncpy’ - 646 | HDstrncpy(name, cls->cls_name, MIN((size_t)(len + 1), size)); - | ^~~~~~~~~ -../H5E.c: In function ‘H5Eget_class_name’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5E.c:642:20: note: in expansion of macro ‘HDstrlen’ - 642 | len = (ssize_t)HDstrlen(cls->cls_name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Edeprec.obj -c ../H5Edeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Eint.obj -c ../H5Eint.c -In file included from ../H5Eint.c:35: -../H5Eint.c: In function ‘H5E_get_msg’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Eint.c:143:8: note: in expansion of macro ‘HDstrncpy’ - 143 | HDstrncpy(msg_str, msg->msg, MIN((size_t)(len+1), size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Eint.c:139:20: note: in expansion of macro ‘HDstrlen’ - 139 | len = (ssize_t)HDstrlen(msg->msg); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EA.obj -c ../H5EA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o player.obj -c ../player.c -In file included from ../player.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, - from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, - from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, - from ../wmfdefs.h:24, - from ../player.c:33: -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] - 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] - 310 | # pragma warning( disable : 4018 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] - 311 | # pragma warning( disable : 4244 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] - 312 | # pragma warning( disable : 4142 ) - | -In file included from ../wmfdefs.h:25, - from ../player.c:33: -../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export - 34 | # pragma message( "WMF compiling as DLL export" ) - | ^~~~~~~ -In file included from ../player.c:44: -../player/meta.h: In function ‘meta_dc_color’: -../player/meta.h:2386:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] - 2386 | { if (value = wmf_attr_query (API, attrlist, "color")) - | ^~~~~ -../player/meta.h: In function ‘meta_pen_create’: -../player/meta.h:3107:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] - 3107 | { if (value = wmf_attr_query (API, attrlist, "color")) - | ^~~~~ -../player/meta.h: In function ‘meta_brush_create’: -../player/meta.h:3209:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] - 3209 | { if (value = wmf_attr_query (API, attrlist, "color")) - | ^~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAcache.obj -c ../H5EAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o recorder.obj -c ../recorder.c -In file included from ../recorder.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, - from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, - from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, - from ../wmfdefs.h:24, - from ../recorder.c:28: -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] - 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] - 310 | # pragma warning( disable : 4018 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] - 311 | # pragma warning( disable : 4244 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] - 312 | # pragma warning( disable : 4142 ) - | -In file included from ../wmfdefs.h:25, - from ../recorder.c:28: -../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export - 34 | # pragma message( "WMF compiling as DLL export" ) - | ^~~~~~~ -../recorder.c: In function ‘wmf_canvas_line’: -../recorder.c:977:17: warning: unused variable ‘Size’ [-Wunused-variable] - 977 | unsigned long Size = 3 + 2; - | ^~~~ -../recorder.c: In function ‘s_update_header’: -../recorder.c:91:16: warning: ‘rbox.ptr’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 91 | *rbox->ptr++ = (unsigned char) ((ul >> 8) & 0xff); - | ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../recorder.c:98:16: note: ‘rbox.ptr’ was declared here - 98 | wmfRecordBox rbox; - | ^~~~ -../recorder.c:84:17: warning: ‘rbox.end’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 84 | if (rbox->end - rbox->ptr < 4) - | ~~~~~~~~~~^~~~~~~~~~~ -../recorder.c:98:16: note: ‘rbox.end’ was declared here - 98 | wmfRecordBox rbox; - | ^~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o wmf.dll -shared -Wl,--out-implib,libwmf.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ api.obj bbuf.obj meta.obj player.obj recorder.obj -lws2_32 -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make -C ./webp install -make -C ./src install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' -mkdir -p O.Common -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF utils.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF thread.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerutils.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF random.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels_dec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman_encode.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersutils.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAdbg.obj -c ../H5EAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF color_cache.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_writer.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_reader.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxread.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxinternal.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxedit.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_encode.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webpenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF analysis.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphaenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF backward_references.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF delta_palettization.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAdblkpage.obj -c ../H5EAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF config.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filter.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF frameenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF histogram.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF iterator.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_tools.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_rescale.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_psnr.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_csp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF near_lossless.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF syntax.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF token.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treeenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8lenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAdblock.obj -c ../H5EAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_msa.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_clip_tables.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cpu.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costdsp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_avx2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersdsp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerdsp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF demux.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_decode.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8ldec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAhdr.obj -c ../H5EAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treedec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantdec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF io.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF idec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF framedec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF buffer.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphadec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAiblock.obj -c ../H5EAiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAint.obj -c ../H5EAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAsblock.obj -c ../H5EAsblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAstat.obj -c ../H5EAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAtest.obj -c ../H5EAtest.c -../H5EAtest.c: In function ‘H5EA__test_debug’: -../H5EAtest.c:339:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 339 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5EAtest.c:339:23: warning: too many arguments for format [-Wformat-extra-args] - 339 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -../H5EAtest.c:339:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 339 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5EAtest.c:339:23: warning: too many arguments for format [-Wformat-extra-args] - 339 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5F.obj -c ../H5F.c -In file included from ../H5F.c:24: -../H5F.c: In function ‘H5Fget_name’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5F.c:1311:9: note: in expansion of macro ‘HDstrncpy’ - 1311 | HDstrncpy(name, H5F_OPEN_NAME(f), MIN(len + 1,size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5F.c:1308:11: note: in expansion of macro ‘HDstrlen’ - 1308 | len = HDstrlen(H5F_OPEN_NAME(f)); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Faccum.obj -c ../H5Faccum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fcwfs.obj -c ../H5Fcwfs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fdbg.obj -c ../H5Fdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fdeprec.obj -c ../H5Fdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fefc.obj -c ../H5Fefc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ffake.obj -c ../H5Ffake.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fint.obj -c ../H5Fint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fio.obj -c ../H5Fio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fmount.obj -c ../H5Fmount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fquery.obj -c ../H5Fquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fsfile.obj -c ../H5Fsfile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fspace.obj -c ../H5Fspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fsuper.obj -c ../H5Fsuper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fsuper_cache.obj -c ../H5Fsuper_cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ftest.obj -c ../H5Ftest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FA.obj -c ../H5FA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAcache.obj -c ../H5FAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAdbg.obj -c ../H5FAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAdblock.obj -c ../H5FAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAdblkpage.obj -c ../H5FAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAhdr.obj -c ../H5FAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAint.obj -c ../H5FAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAstat.obj -c ../H5FAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAtest.obj -c ../H5FAtest.c -../H5FAtest.c: In function ‘H5FA__test_debug’: -../H5FAtest.c:322:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 322 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5FAtest.c:322:23: warning: too many arguments for format [-Wformat-extra-args] - 322 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -../H5FAtest.c:322:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 322 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5FAtest.c:322:23: warning: too many arguments for format [-Wformat-extra-args] - 322 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FD.obj -c ../H5FD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDcore.obj -c ../H5FDcore.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDfamily.obj -c ../H5FDfamily.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDint.obj -c ../H5FDint.c -../H5FDint.c: In function ‘H5FD_read’: -../H5FDint.c:183:17: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 183 | io_dxpl = fdio_info->raw_dxpl; - | ^ -../H5FDint.c:185:17: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 185 | io_dxpl = fdio_info->meta_dxpl; - | ^ -../H5FDint.c: In function ‘H5FD_write’: -../H5FDint.c:269:17: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 269 | io_dxpl = fdio_info->raw_dxpl; - | ^ -../H5FDint.c:271:17: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 271 | io_dxpl = fdio_info->meta_dxpl; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDlog.obj -c ../H5FDlog.c -../H5FDlog.c: In function ‘H5FD_log_open’: -../H5FDlog.c:630:95: warning: ‘stat_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDlog.c:630:59: warning: ‘stat_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDlog.c:628:95: warning: ‘open_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDlog.c:628:59: warning: ‘open_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDmulti.obj -c ../H5FDmulti.c -../H5FDmulti.c: In function ‘H5FD_multi_sb_encode’: -../H5FDmulti.c:662:5: warning: ‘strncpy’ output truncated copying 8 bytes from a string of length 9 [-Wstringop-truncation] - 662 | strncpy(name, "NCSAmulti", (size_t)8); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDmulti.c:697:9: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 697 | strncpy((char *)p, file->fa.memb_name[mt], n); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDmulti.c:696:20: note: length computed here - 696 | size_t n = strlen(file->fa.memb_name[mt]) + 1; - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDsec2.obj -c ../H5FDsec2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDspace.obj -c ../H5FDspace.c -../H5FDspace.c: In function ‘H5FD_extend’: -../H5FDspace.c:104:13: warning: unused variable ‘extra’ [-Wunused-variable] - 104 | hsize_t extra; /* Extra space to allocate, to align request */ - | ^~~~~ -../H5FDspace.c:102:13: warning: unused variable ‘orig_size’ [-Wunused-variable] - 102 | hsize_t orig_size = size; /* Original allocation size */ - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDstdio.obj -c ../H5FDstdio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDtest.obj -c ../H5FDtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FL.obj -c ../H5FL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FO.obj -c ../H5FO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -/usr/bin/ar -rc libwebp.a alphadec.o buffer.o framedec.o idec.o io.o quantdec.o treedec.o vp8.o vp8ldec.o webp.o anim_decode.o demux.o rescalerdsp.o rescaler_mips32.o rescaler_mips_dsp_r2.o rescaler_neon.o rescaler_sse2.o lossless.o lossless_enc.o lossless_enc_mips32.o lossless_enc_mips_dsp_r2.o lossless_enc_neon.o lossless_enc_sse2.o lossless_enc_sse41.o lossless_mips_dsp_r2.o lossless_neon.o lossless_sse2.o filtersdsp.o filters_mips_dsp_r2.o filters_sse2.o enc.o enc_avx2.o enc_mips32.o enc_mips_dsp_r2.o enc_neon.o enc_sse2.o enc_sse41.o costdsp.o cost_mips32.o cost_mips_dsp_r2.o cost_sse2.o cpu.o dec.o dec_clip_tables.o dec_mips32.o dec_mips_dsp_r2.o dec_msa.o dec_neon.o dec_sse2.o dec_sse41.o argb.o argb_mips_dsp_r2.o argb_sse2.o alpha_processing.o alpha_processing_mips_dsp_r2.o alpha_processing_sse2.o alpha_processing_sse41.o upsampling.o upsampling_mips_dsp_r2.o upsampling_neon.o upsampling_sse2.o yuv.o yuv_mips32.o yuv_mips_dsp_r2.o yuv_sse2.o vp8lenc.o treeenc.o token.o syntax.o near_lossless.o picture.o picture_csp.o picture_psnr.o picture_rescale.o picture_tools.o quantenc.o iterator.o histogram.o frameenc.o filter.o config.o costenc.o delta_palettization.o backward_references.o alphaenc.o analysis.o webpenc.o anim_encode.o muxedit.o muxinternal.o muxread.o bit_reader.o bit_writer.o color_cache.o filtersutils.o huffman.o huffman_encode.o quant_levels.o quant_levels_dec.o random.o rescalerutils.o thread.o utils.o -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -/usr/bin/ranlib libwebp.a -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -g++ -o libwebp.so -shared -fPIC -Wl,-hlibwebp.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 alphadec.o buffer.o framedec.o idec.o io.o quantdec.o treedec.o vp8.o vp8ldec.o webp.o anim_decode.o demux.o rescalerdsp.o rescaler_mips32.o rescaler_mips_dsp_r2.o rescaler_neon.o rescaler_sse2.o lossless.o lossless_enc.o lossless_enc_mips32.o lossless_enc_mips_dsp_r2.o lossless_enc_neon.o lossless_enc_sse2.o lossless_enc_sse41.o lossless_mips_dsp_r2.o lossless_neon.o lossless_sse2.o filtersdsp.o filters_mips_dsp_r2.o filters_sse2.o enc.o enc_avx2.o enc_mips32.o enc_mips_dsp_r2.o enc_neon.o enc_sse2.o enc_sse41.o costdsp.o cost_mips32.o cost_mips_dsp_r2.o cost_sse2.o cpu.o dec.o dec_clip_tables.o dec_mips32.o dec_mips_dsp_r2.o dec_msa.o dec_neon.o dec_sse2.o dec_sse41.o argb.o argb_mips_dsp_r2.o argb_sse2.o alpha_processing.o alpha_processing_mips_dsp_r2.o alpha_processing_sse2.o alpha_processing_sse41.o upsampling.o upsampling_mips_dsp_r2.o upsampling_neon.o upsampling_sse2.o yuv.o yuv_mips32.o yuv_mips_dsp_r2.o yuv_sse2.o vp8lenc.o treeenc.o token.o syntax.o near_lossless.o picture.o picture_csp.o picture_psnr.o picture_rescale.o picture_tools.o quantenc.o iterator.o histogram.o frameenc.o filter.o config.o costenc.o delta_palettization.o backward_references.o alphaenc.o analysis.o webpenc.o anim_encode.o muxedit.o muxinternal.o muxread.o bit_reader.o bit_writer.o color_cache.o filtersutils.o huffman.o huffman_encode.o quant_levels.o quant_levels_dec.o random.o rescalerutils.o thread.o utils.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ - T_A=windows-x64-mingw install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF utils.d -MT utils.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF thread.d -MT thread.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerutils.d -MT rescalerutils.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF random.d -MT random.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels_dec.d -MT quant_levels_dec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels.d -MT quant_levels.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman_encode.d -MT huffman_encode.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman.d -MT huffman.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersutils.d -MT filtersutils.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF color_cache.d -MT color_cache.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_writer.d -MT bit_writer.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FS.obj -c ../H5FS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_reader.d -MT bit_reader.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxread.d -MT muxread.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxinternal.d -MT muxinternal.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxedit.d -MT muxedit.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_encode.d -MT anim_encode.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webpenc.d -MT webpenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF analysis.d -MT analysis.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphaenc.d -MT alphaenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF backward_references.d -MT backward_references.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF delta_palettization.d -MT delta_palettization.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costenc.d -MT costenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF config.d -MT config.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filter.d -MT filter.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF frameenc.d -MT frameenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF histogram.d -MT histogram.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF iterator.d -MT iterator.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantenc.d -MT quantenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_tools.d -MT picture_tools.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_rescale.d -MT picture_rescale.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_psnr.d -MT picture_psnr.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_csp.d -MT picture_csp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture.d -MT picture.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF near_lossless.d -MT near_lossless.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF syntax.d -MT syntax.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF token.d -MT token.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treeenc.d -MT treeenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8lenc.d -MT vp8lenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_sse2.d -MT yuv_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips_dsp_r2.d -MT yuv_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips32.d -MT yuv_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv.d -MT yuv.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_sse2.d -MT upsampling_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_neon.d -MT upsampling_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_mips_dsp_r2.d -MT upsampling_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling.d -MT upsampling.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse41.d -MT alpha_processing_sse41.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse2.d -MT alpha_processing_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_mips_dsp_r2.d -MT alpha_processing_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing.d -MT alpha_processing.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_sse2.d -MT argb_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_mips_dsp_r2.d -MT argb_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb.d -MT argb.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse41.d -MT dec_sse41.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse2.d -MT dec_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_neon.d -MT dec_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_msa.d -MT dec_msa.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips_dsp_r2.d -MT dec_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips32.d -MT dec_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_clip_tables.d -MT dec_clip_tables.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec.d -MT dec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cpu.d -MT cpu.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_sse2.d -MT cost_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips_dsp_r2.d -MT cost_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips32.d -MT cost_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costdsp.d -MT costdsp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FScache.obj -c ../H5FScache.c -../H5FScache.c: In function ‘H5FS__cache_sinfo_deserialize’: -../H5FScache.c:1013:17: warning: variable ‘old_tot_space’ set but not used [-Wunused-but-set-variable] - 1013 | hsize_t old_tot_space; /* Total space managed from header */ - | ^~~~~~~~~~~~~ -../H5FScache.c:1012:17: warning: variable ‘old_ghost_sect_count’ set but not used [-Wunused-but-set-variable] - 1012 | hsize_t old_ghost_sect_count; /* Total ghost section count from header */ - | ^~~~~~~~~~~~~~~~~~~~ -../H5FScache.c:1011:17: warning: variable ‘old_serial_sect_count’ set but not used [-Wunused-but-set-variable] - 1011 | hsize_t old_serial_sect_count; /* Total serializable section count from header */ - | ^~~~~~~~~~~~~~~~~~~~~ -../H5FScache.c:1010:17: warning: variable ‘old_tot_sect_count’ set but not used [-Wunused-but-set-variable] - 1010 | hsize_t old_tot_sect_count; /* Total section count from header */ - | ^~~~~~~~~~~~~~~~~~ -../H5FScache.c: In function ‘H5FS__cache_sinfo_image_len’: -../H5FScache.c:1119:19: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] - 1119 | const H5FS_t *fspace; /* Free space header */ - | ^~~~~~ -../H5FScache.c: In function ‘H5FS__cache_sinfo_serialize’: -../H5FScache.c:1249:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] - 1249 | H5FS_t *fspace; /* Free space header */ - | ^~~~~~ -../H5FScache.c: In function ‘H5FS__cache_sinfo_free_icr’: -../H5FScache.c:1396:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] - 1396 | H5FS_t *fspace; /* Free space header */ - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse41.d -MT enc_sse41.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse2.d -MT enc_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_neon.d -MT enc_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips_dsp_r2.d -MT enc_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips32.d -MT enc_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_avx2.d -MT enc_avx2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc.d -MT enc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_sse2.d -MT filters_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_mips_dsp_r2.d -MT filters_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersdsp.d -MT filtersdsp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_sse2.d -MT lossless_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_neon.d -MT lossless_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_mips_dsp_r2.d -MT lossless_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse41.d -MT lossless_enc_sse41.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse2.d -MT lossless_enc_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_neon.d -MT lossless_enc_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips_dsp_r2.d -MT lossless_enc_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips32.d -MT lossless_enc_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc.d -MT lossless_enc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless.d -MT lossless.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_sse2.d -MT rescaler_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_neon.d -MT rescaler_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips_dsp_r2.d -MT rescaler_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips32.d -MT rescaler_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerdsp.d -MT rescalerdsp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF demux.d -MT demux.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_decode.d -MT anim_decode.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webp.d -MT webp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8ldec.d -MT vp8ldec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8.d -MT vp8.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treedec.d -MT treedec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantdec.d -MT quantdec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF io.d -MT io.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FSdbg.obj -c ../H5FSdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF idec.d -MT idec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF framedec.d -MT framedec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF buffer.d -MT buffer.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphadec.d -MT alphadec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FSint.obj -c ../H5FSint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alphadec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/rescaler.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././webpi.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./alphai.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o buffer.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o framedec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o idec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/rescaler.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././webpi.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./alphai.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c:18: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FSsection.obj -c ../H5FSsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o io.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/../enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/../enc/vp8li.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/vp8i.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o quantdec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FSstat.obj -c ../H5FSstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o treedec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FStest.obj -c ../H5FStest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o vp8.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/rescaler.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././webpi.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./alphai.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5G.obj -c ../H5G.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o vp8ldec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/rescaler.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././webpi.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./alphai.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o webp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gbtree2.obj -c ../H5Gbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o anim_decode.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/utils.h:24, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c:20: -../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o demux.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/utils.h:24, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c:21: -../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescalerdsp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescaler_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gcache.obj -c ../H5Gcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescaler_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescaler_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescaler_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gcompact.obj -c ../H5Gcompact.c -In file included from ../H5Gcompact.c:28: -../H5Gcompact.c: In function ‘H5G__compact_get_name_by_idx’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Gcompact.c:246:9: note: in expansion of macro ‘HDstrncpy’ - 246 | HDstrncpy(name, ltable.lnks[idx].name, MIN((size_t)(ret_value + 1), size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gcompact.c:242:26: note: in expansion of macro ‘HDstrlen’ - 242 | ret_value = (ssize_t)HDstrlen(ltable.lnks[idx].name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gdense.obj -c ../H5Gdense.c -In file included from ../H5Gdense.c:35: -../H5Gdense.c: In function ‘H5G__dense_get_name_by_idx’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Gdense.c:1278:13: note: in expansion of macro ‘HDstrncpy’ - 1278 | HDstrncpy(name, ltable.lnks[n].name, MIN((size_t)(ret_value + 1), size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gdense.c:1274:30: note: in expansion of macro ‘HDstrlen’ - 1274 | ret_value = (ssize_t)HDstrlen(ltable.lnks[n].name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_sse41.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filtersdsp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filters_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gdeprec.obj -c ../H5Gdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filters_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gent.obj -c ../H5Gent.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_avx2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c:12: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gint.obj -c ../H5Gint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_sse41.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o costdsp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c:12: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Glink.obj -c ../H5Glink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o cost_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c:12: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o cost_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c:12: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o cost_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o cpu.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gloc.obj -c ../H5Gloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_clip_tables.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_msa.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gname.obj -c ../H5Gname.c -In file included from ../H5Gname.c:35: -../H5Gname.c: In function ‘H5G_build_fullpath’: -../H5private.h:1358:31: warning: ‘strncat’ specified bound 1 equals source length [-Wstringop-overflow=] - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Gname.c:326:9: note: in expansion of macro ‘HDstrncat’ - 326 | HDstrncat(full_path, "/", (size_t)1); - | ^~~~~~~~~ -../H5Gname.c: In function ‘H5G_common_path.part.0’: -../H5Gname.c:253:23: warning: ‘nchars2’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 253 | prefix+=nchars2; - | ~~~~~~^~~~~~~~~ -In file included from ../H5Gname.c:35: -../H5private.h:1361:31: warning: ‘nchars1’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1361 | #define HDstrncmp(X,Y,Z) strncmp(X,Y,Z) - | ^~~~~~~ -../H5Gname.c:230:13: note: ‘nchars1’ was declared here - 230 | size_t nchars1,nchars2; /* Number of characters in components */ - | ^~~~~~~ -In file included from ../H5Gname.c:35: -In function ‘H5G_name_move_path’, - inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:1028:24, - inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: -../H5private.h:1358:31: warning: ‘strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Gname.c:771:13: note: in expansion of macro ‘HDstrncat’ - 771 | HDstrncat(new_path, full_suffix, full_suffix_len); - | ^~~~~~~~~ -../H5Gname.c: In function ‘H5G_name_replace_cb’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gname.c:717:23: note: in expansion of macro ‘HDstrlen’ - 717 | full_suffix_len = HDstrlen(full_suffix); - | ^~~~~~~~ -In function ‘H5G_name_replace_cb’, - inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: -../H5private.h:1358:31: warning: ‘strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Gname.c:1040:17: note: in expansion of macro ‘HDstrncat’ - 1040 | HDstrncat(new_full_path, full_suffix, full_suffix_len); - | ^~~~~~~~~ -../H5Gname.c: In function ‘H5G_name_replace_cb’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gname.c:1024:35: note: in expansion of macro ‘HDstrlen’ - 1024 | full_suffix_len = HDstrlen(full_suffix); - | ^~~~~~~~ -In function ‘H5G_build_fullpath’, - inlined from ‘H5G_build_fullpath_refstr_str’ at ../H5Gname.c:367:17: -../H5private.h:1358:31: warning: ‘strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Gname.c:327:5: note: in expansion of macro ‘HDstrncat’ - 327 | HDstrncat(full_path, name, name_len); - | ^~~~~~~~~ -../H5Gname.c: In function ‘H5G_build_fullpath_refstr_str’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gname.c:316:16: note: in expansion of macro ‘HDstrlen’ - 316 | name_len = HDstrlen(name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_sse41.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o argb.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o argb_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o argb_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gnode.obj -c ../H5Gnode.c -../H5Gnode.c: In function ‘H5G_node_remove’: -../H5Gnode.c:790:21: warning: unused variable ‘lt_key’ [-Wunused-variable] - 790 | H5G_node_key_t *lt_key = (H5G_node_key_t *)_lt_key; - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alpha_processing.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alpha_processing_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alpha_processing_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alpha_processing_sse41.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gobj.obj -c ../H5Gobj.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Goh.obj -c ../H5Goh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o upsampling.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o upsampling_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o upsampling_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Groot.obj -c ../H5Groot.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gstab.obj -c ../H5Gstab.c -In file included from ../H5Gstab.c:29: -../H5Gstab.c: In function ‘H5G__stab_get_name_by_idx’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Gstab.c:803:9: note: in expansion of macro ‘HDstrncpy’ - 803 | HDstrncpy(name, udata.name, MIN((size_t)(ret_value + 1), size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gstab.c:799:26: note: in expansion of macro ‘HDstrlen’ - 799 | ret_value = (ssize_t)HDstrlen(udata.name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gtest.obj -c ../H5Gtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o upsampling_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gtraverse.obj -c ../H5Gtraverse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o yuv.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./yuv.h:38, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o yuv_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o yuv_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HF.obj -c ../H5HF.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o yuv_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./yuv.h:38, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFbtree2.obj -c ../H5HFbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o vp8lenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c:18: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o treeenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o token.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./cost.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c:23: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o syntax.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../utils/../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../utils/utils.h:24, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFcache.obj -c ../H5HFcache.c -../H5HFcache.c: In function ‘H5HF__cache_hdr_serialize’: -../H5HFcache.c:774:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 774 | hdr->f = f; - | ^ -../H5HFcache.c: In function ‘H5HF__cache_iblock_serialize’: -../H5HFcache.c:1361:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1361 | hdr->f = f; - | ^ -../H5HFcache.c: In function ‘H5HF__cache_iblock_notify’: -../H5HFcache.c:1477:18: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] - 1477 | unsigned indir_idx; /* Index in parent's child iblock pointer array */ - | ^~~~~~~~~ -../H5HFcache.c:1476:26: warning: unused variable ‘par_iblock’ [-Wunused-variable] - 1476 | H5HF_indirect_t *par_iblock = iblock->parent; - | ^~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o near_lossless.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../dsp/lossless.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c:20: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFdbg.obj -c ../H5HFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFdblock.obj -c ../H5HFdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture_csp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c:18: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture_psnr.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture_rescale.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture_tools.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFdtable.obj -c ../H5HFdtable.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFhdr.obj -c ../H5HFhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o quantenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c:18: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFhuge.obj -c ../H5HFhuge.c -../H5HFhuge.c: In function ‘H5HF_huge_write’: -../H5HFhuge.c:890:8: warning: ‘obj_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 890 | if(H5F_block_write(hdr->f, H5FD_MEM_FHEAP_HUGE_OBJ, obj_addr, obj_size, H5AC_rawdata_dxpl_id, obj) < 0) - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o iterator.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o histogram.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c:18: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFiblock.obj -c ../H5HFiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o frameenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./cost.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filter.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o config.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../webp/encode.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../webp/./types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../webp/./types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFiter.obj -c ../H5HFiter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o costenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./cost.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o delta_palettization.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/encode.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./delta_palettization.h:16, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c:13: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/./types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/./types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFman.obj -c ../H5HFman.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o backward_references.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alphaenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o analysis.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c:18: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o webpenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./cost.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c:19: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFsection.obj -c ../H5HFsection.c -../H5HFsection.c: In function ‘H5HF_sect_single_valid’: -../H5HFsection.c:1191:20: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] - 1191 | herr_t status; /* Generic status value */ - | ^~~~~~ -../H5HFsection.c:1189:20: warning: variable ‘dblock_overhead’ set but not used [-Wunused-but-set-variable] - 1189 | size_t dblock_overhead; /* Direct block's overhead */ - | ^~~~~~~~~~~~~~~ -../H5HFsection.c: In function ‘H5HF_sect_row_valid’: -../H5HFsection.c:2000:14: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] - 2000 | unsigned indir_idx; /* Index of row in underlying indirect section's row array */ - | ^~~~~~~~~ -../H5HFsection.c: In function ‘H5HF_sect_indirect_valid’: -../H5HFsection.c:4107:44: warning: variable ‘tmp_row_sect2’ set but not used [-Wunused-but-set-variable] - 4107 | const H5HF_free_section_t *tmp_row_sect2; /* Pointer to row section */ - | ^~~~~~~~~~~~~ -../H5HFsection.c:4099:40: warning: variable ‘tmp_row_sect’ set but not used [-Wunused-but-set-variable] - 4099 | const H5HF_free_section_t *tmp_row_sect; /* Pointer to row section */ - | ^~~~~~~~~~~~ -../H5HFsection.c:4134:44: warning: variable ‘tmp_child_sect2’ set but not used [-Wunused-but-set-variable] - 4134 | const H5HF_free_section_t *tmp_child_sect2; /* Pointer to child indirect section */ - | ^~~~~~~~~~~~~~~ -../H5HFsection.c: In function ‘H5HF_sect_single_full_dblock.part.0’: -../H5HFsection.c:774:21: warning: ‘dblock_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 774 | if((dblock_size - dblock_overhead) == sect->sect_info.size && - | ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~ -../H5HFsection.c:787:12: warning: ‘dblock_addr’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 787 | if(H5HF_man_dblock_destroy(hdr, dxpl_id, dblock, dblock_addr) < 0) - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5HFsection.c: In function ‘H5HF_sect_single_valid’: -../H5HFsection.c:1223:26: warning: ‘dblock_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1223 | dblock = H5HF_man_dblock_protect(iblock->hdr, dxpl_id, dblock_addr, dblock_size, iblock, sect->u.single.par_entry, H5AC__READ_ONLY_FLAG); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5HFsection.c:1223:26: warning: ‘dblock_addr’ may be used uninitialized in this function [-Wmaybe-uninitialized] -../H5HFsection.c: In function ‘H5HF_sect_single_shrink’: -../H5HFsection.c:1095:26: warning: ‘dblock_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1095 | if(NULL == (dblock = H5HF_man_dblock_protect(hdr, dxpl_id, dblock_addr, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 1096 | dblock_size, (*sect)->u.single.parent, (*sect)->u.single.par_entry, H5AC__NO_FLAGS_SET))) - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5HFsection.c:1101:8: warning: ‘dblock_addr’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1101 | if(H5HF_man_dblock_destroy(hdr, dxpl_id, dblock, dblock_addr) < 0) - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o anim_encode.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/../utils/../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/../utils/utils.h:24, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c:19: -../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/../utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/../utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFspace.obj -c ../H5HFspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o muxedit.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/vp8li.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/vp8i.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./muxi.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o muxinternal.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/vp8li.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/vp8i.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./muxi.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFstat.obj -c ../H5HFstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o muxread.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/vp8li.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/vp8i.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./muxi.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o bit_reader.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./bit_reader_inl.h:27, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c:18: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o bit_writer.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./bit_writer.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c:19: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o color_cache.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./color_cache.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFtest.obj -c ../H5HFtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filtersutils.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./filters.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o huffman.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./huffman.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o huffman_encode.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./huffman_encode.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o quant_levels.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./quant_levels.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFtiny.obj -c ../H5HFtiny.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o quant_levels_dec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./quant_levels_dec.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o random.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./random.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescalerutils.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o thread.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./thread.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o utils.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../webp/decode.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../webp/./types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../webp/./types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o webp.dll -shared -Wl,--out-implib,libwebp.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ alphadec.obj buffer.obj framedec.obj idec.obj io.obj quantdec.obj treedec.obj vp8.obj vp8ldec.obj webp.obj anim_decode.obj demux.obj rescalerdsp.obj rescaler_mips32.obj rescaler_mips_dsp_r2.obj rescaler_neon.obj rescaler_sse2.obj lossless.obj lossless_enc.obj lossless_enc_mips32.obj lossless_enc_mips_dsp_r2.obj lossless_enc_neon.obj lossless_enc_sse2.obj lossless_enc_sse41.obj lossless_mips_dsp_r2.obj lossless_neon.obj lossless_sse2.obj filtersdsp.obj filters_mips_dsp_r2.obj filters_sse2.obj enc.obj enc_avx2.obj enc_mips32.obj enc_mips_dsp_r2.obj enc_neon.obj enc_sse2.obj enc_sse41.obj costdsp.obj cost_mips32.obj cost_mips_dsp_r2.obj cost_sse2.obj cpu.obj dec.obj dec_clip_tables.obj dec_mips32.obj dec_mips_dsp_r2.obj dec_msa.obj dec_neon.obj dec_sse2.obj dec_sse41.obj argb.obj argb_mips_dsp_r2.obj argb_sse2.obj alpha_processing.obj alpha_processing_mips_dsp_r2.obj alpha_processing_sse2.obj alpha_processing_sse41.obj upsampling.obj upsampling_mips_dsp_r2.obj upsampling_neon.obj upsampling_sse2.obj yuv.obj yuv_mips32.obj yuv_mips_dsp_r2.obj yuv_sse2.obj vp8lenc.obj treeenc.obj token.obj syntax.obj near_lossless.obj picture.obj picture_csp.obj picture_psnr.obj picture_rescale.obj picture_tools.obj quantenc.obj iterator.obj histogram.obj frameenc.obj filter.obj config.obj costenc.obj delta_palettization.obj backward_references.obj alphaenc.obj analysis.obj webpenc.obj anim_encode.obj muxedit.obj muxinternal.obj muxread.obj bit_reader.obj bit_writer.obj color_cache.obj filtersutils.obj huffman.obj huffman_encode.obj quant_levels.obj quant_levels_dec.obj random.obj rescalerutils.obj thread.obj utils.obj -lws2_32 -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make -C ./png install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' -mkdir -p O.Common -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngread.d ../pngread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwutil.d ../pngwutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwtran.d ../pngwtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwrite.d ../pngwrite.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwio.d ../pngwio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngtrans.d ../pngtrans.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngset.d ../pngset.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HG.obj -c ../H5HG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrutil.d ../pngrutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrtran.d ../pngrtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrio.d ../pngrio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngpread.d ../pngpread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngmem.d ../pngmem.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngget.d ../pngget.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngerror.d ../pngerror.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF png.d ../png.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HGcache.obj -c ../H5HGcache.c -../H5HGcache.c: In function ‘H5HG__cache_heap_get_final_load_size’: -../H5HGcache.c:225:17: warning: ‘*((void *)&heap+312)’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 225 | *actual_len = heap.size; - | ~~~~~~~~~~~~^~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HGdbg.obj -c ../H5HGdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../png.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngerror.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HGquery.obj -c ../H5HGquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngget.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngmem.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HL.obj -c ../H5HL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngpread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngrio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLcache.obj -c ../H5HLcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLdbg.obj -c ../H5HLdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLint.obj -c ../H5HLint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngrtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLprfx.obj -c ../H5HLprfx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLdblk.obj -c ../H5HLdblk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngrutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HP.obj -c ../H5HP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngset.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngtrans.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5I.obj -c ../H5I.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwrite.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Itest.obj -c ../H5Itest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5L.obj -c ../H5L.c -../H5L.c: In function ‘H5L_move_cb’: -../H5L.c:2639:41: warning: passing argument 1 of ‘H5RS_wrap’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 2639 | dst_name_r = H5RS_wrap(udata->dst_name); - | ~~~~~^~~~~~~~~~ -In file included from ../H5Gprivate.h:35, - from ../H5Tprivate.h:28, - from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5L.c:26: -../H5RSprivate.h:47:20: note: expected ‘char *’ but argument is of type ‘const char *’ - 47 | H5_DLL H5RS_str_t *H5RS_wrap(char *s); - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Lexternal.obj -c ../H5Lexternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -/usr/bin/ar -rc libpng.a png.o pngerror.o pngget.o pngmem.o pngpread.o pngrio.o pngrtran.o pngrutil.o pngset.o pngtrans.o pngwio.o pngwrite.o pngwtran.o pngwutil.o pngread.o -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -/usr/bin/ranlib libpng.a -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -g++ -o libpng.so -shared -fPIC -Wl,-hlibpng.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 png.o pngerror.o pngget.o pngmem.o pngpread.o pngrio.o pngrtran.o pngrutil.o pngset.o pngtrans.o pngwio.o pngwrite.o pngwtran.o pngwutil.o pngread.o -lbzlib -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ - T_A=windows-x64-mingw install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngread.d -MT pngread.obj ../pngread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwutil.d -MT pngwutil.obj ../pngwutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MF.obj -c ../H5MF.c -../H5MF.c: In function ‘H5MF_settle_meta_data_fsm’: -../H5MF.c:3249:17: warning: unused variable ‘fs_stat’ [-Wunused-variable] - 3249 | H5FS_stat_t fs_stat; /* Information for hdr FSM */ - | ^~~~~~~ -../H5MF.c: In function ‘H5MF__fsm_type_is_self_referential.part.0’: -../H5MF.c:3548:17: warning: ‘lg_fshdr_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3547 | result = (fsm_type == sm_fshdr_fsm) || (fsm_type == sm_fssinfo_fsm) - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 3548 | || (fsm_type == lg_fshdr_fsm) || (fsm_type == lg_fssinfo_fsm); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5MF.c:3548:47: warning: ‘lg_fssinfo_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3547 | result = (fsm_type == sm_fshdr_fsm) || (fsm_type == sm_fssinfo_fsm) - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 3548 | || (fsm_type == lg_fshdr_fsm) || (fsm_type == lg_fssinfo_fsm); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5MF.c:3547:45: warning: ‘sm_fssinfo_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3547 | result = (fsm_type == sm_fshdr_fsm) || (fsm_type == sm_fssinfo_fsm) - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5MF.c:3548:47: warning: ‘sm_fshdr_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3547 | result = (fsm_type == sm_fshdr_fsm) || (fsm_type == sm_fssinfo_fsm) - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 3548 | || (fsm_type == lg_fshdr_fsm) || (fsm_type == lg_fssinfo_fsm); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5MF.c: In function ‘H5MF__fsm_is_self_referential.part.0’: -../H5MF.c:3606:48: warning: ‘lg_fshdr_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3606 | (fspace == f->shared->fs_man[lg_fshdr_fsm]) || - | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ -../H5MF.c:3607:48: warning: ‘lg_fssinfo_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3607 | (fspace == f->shared->fs_man[lg_fssinfo_fsm]); - | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ -../H5MF.c:3605:48: warning: ‘sm_fssinfo_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3605 | (fspace == f->shared->fs_man[sm_fssinfo_fsm]) || - | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ -../H5MF.c:3604:46: warning: ‘sm_fshdr_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3604 | result = (fspace == f->shared->fs_man[sm_fshdr_fsm]) || - | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ -../H5MF.c: In function ‘H5MF_settle_meta_data_fsm’: -../H5MF.c:3240:20: warning: ‘lg_fssinfo_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3240 | H5F_mem_page_t lg_fssinfo_fs_type; /* large fs sinfo fsm */ - | ^~~~~~~~~~~~~~~~~~ -../H5MF.c:3239:20: warning: ‘lg_fshdr_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3239 | H5F_mem_page_t lg_fshdr_fs_type; /* large fs hdr fsm */ - | ^~~~~~~~~~~~~~~~ -../H5MF.c:3286:25: warning: ‘sm_fssinfo_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3286 | sm_sinfo_fspace = f->shared->fs_man[sm_fssinfo_fs_type]; - | ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5MF.c: In function ‘H5MF_tidy_self_referential_fsm_hack’: -../H5MF.c:3873:16: warning: ‘lg_fssinfo_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3873 | if(H5FS_free(f, f->shared->fs_man[lg_fssinfo_fs_type], dxpl_id, FALSE) < 0) - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5MF.c:3854:29: warning: ‘lg_fshdr_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3854 | if(f->shared->fs_man[lg_fshdr_fs_type]) { - | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~ -../H5MF.c:3829:25: warning: ‘sm_fshdr_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3829 | if(f->shared->fs_man[sm_fshdr_fs_type]) { - | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~ -../H5MF.c:3848:12: warning: ‘sm_fssinfo_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3848 | if(H5FS_free(f, f->shared->fs_man[sm_fssinfo_fs_type], dxpl_id, FALSE) < 0) - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwtran.d -MT pngwtran.obj ../pngwtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwrite.d -MT pngwrite.obj ../pngwrite.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MFaggr.obj -c ../H5MFaggr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwio.d -MT pngwio.obj ../pngwio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MFdbg.obj -c ../H5MFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngtrans.d -MT pngtrans.obj ../pngtrans.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngset.d -MT pngset.obj ../pngset.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MFsection.obj -c ../H5MFsection.c -../H5MFsection.c: In function ‘H5MF_sect_split’: -../H5MFsection.c:376:22: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 376 | FUNC_LEAVE_NOAPI((H5FS_section_info_t *)ret_value) - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrutil.d -MT pngrutil.obj ../pngrutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MM.obj -c ../H5MM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrtran.d -MT pngrtran.obj ../pngrtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrio.d -MT pngrio.obj ../pngrio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MP.obj -c ../H5MP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngpread.d -MT pngpread.obj ../pngpread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MPtest.obj -c ../H5MPtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngmem.d -MT pngmem.obj ../pngmem.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngget.d -MT pngget.obj ../pngget.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngerror.d -MT pngerror.obj ../pngerror.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5O.obj -c ../H5O.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF png.d -MT png.obj ../png.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oainfo.obj -c ../H5Oainfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oalloc.obj -c ../H5Oalloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o png.obj -c ../png.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oattr.obj -c ../H5Oattr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngerror.obj -c ../pngerror.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oattribute.obj -c ../H5Oattribute.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngget.obj -c ../pngget.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Obogus.obj -c ../H5Obogus.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Obtreek.obj -c ../H5Obtreek.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngmem.obj -c ../pngmem.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ocache.obj -c ../H5Ocache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ocache_image.obj -c ../H5Ocache_image.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngpread.obj -c ../pngpread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ochunk.obj -c ../H5Ochunk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngrio.obj -c ../pngrio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ocont.obj -c ../H5Ocont.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ocopy.obj -c ../H5Ocopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Odbg.obj -c ../H5Odbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngrtran.obj -c ../pngrtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Odrvinfo.obj -c ../H5Odrvinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Odtype.obj -c ../H5Odtype.c -../H5Odtype.c: In function ‘H5O_dtype_copy’: -../H5Odtype.c:1192:32: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1192 | if(NULL == (dst = H5T_copy(src, H5T_COPY_ALL))) - | ^~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Odtype.c:19: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Odtype.c: In function ‘H5O_dtype_pre_copy_file’: -../H5Odtype.c:1541:49: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1541 | if(NULL == (udata->src_dtype = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) - | ^~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Odtype.c:19: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oefl.obj -c ../H5Oefl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngrutil.obj -c ../pngrutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ofill.obj -c ../H5Ofill.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngset.obj -c ../pngset.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oflush.obj -c ../H5Oflush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ofsinfo.obj -c ../H5Ofsinfo.c -../H5Ofsinfo.c: In function ‘H5O_fsinfo_decode’: -../H5Ofsinfo.c:132:35: warning: ‘threshold’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 132 | fsinfo->threshold = threshold; - | ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngtrans.obj -c ../pngtrans.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oginfo.obj -c ../H5Oginfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngwio.obj -c ../pngwio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Olayout.obj -c ../H5Olayout.c -../H5Olayout.c: In function ‘H5O__layout_decode’: -../H5Olayout.c:412:90: warning: ‘tmp_hsize’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 412 | if(NULL == (mesg->storage.u.virt.list = (H5O_storage_virtual_ent_t *)H5MM_calloc((size_t)tmp_hsize * sizeof(H5O_storage_virtual_ent_t)))) - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Olinfo.obj -c ../H5Olinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngwrite.obj -c ../pngwrite.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Olink.obj -c ../H5Olink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngwtran.obj -c ../pngwtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Omessage.obj -c ../H5Omessage.c -../H5Omessage.c: In function ‘H5O_msg_reset_share’: -../H5Omessage.c:1691:28: warning: variable ‘type’ set but not used [-Wunused-but-set-variable] - 1691 | const H5O_msg_class_t *type; /* Actual H5O class type for the ID */ - | ^~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Omtime.obj -c ../H5Omtime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oname.obj -c ../H5Oname.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Onull.obj -c ../H5Onull.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngwutil.obj -c ../pngwutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Opline.obj -c ../H5Opline.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Orefcount.obj -c ../H5Orefcount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Osdspace.obj -c ../H5Osdspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngread.obj -c ../pngread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-windres -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include ../png.rc png.coff -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o png.dll -shared -Wl,--out-implib,libpng.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ png.obj pngerror.obj pngget.obj pngmem.obj pngpread.obj pngrio.obj pngrtran.obj pngrutil.obj pngset.obj pngtrans.obj pngwio.obj pngwrite.obj pngwtran.obj pngwutil.obj pngread.obj png.coff -lbzlib -lzlib -lws2_32 -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make -C ./jp2 install -make -C ./src install -make -C ./libjasper install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../../.. -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../../.. -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' -mkdir -p O.Common -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../../.. \ - T_A=linux-x86_64 install -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_util.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tsfb.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tagtree.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2cod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oshared.obj -c ../H5Oshared.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1cod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_qmfb.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqenc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqdec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqcod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mct.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_math.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_cs.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_bs.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_cod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_version.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tvp.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tmr.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_string.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_stream.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_seq.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_malloc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oshmesg.obj -c ../H5Oshmesg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_init.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_image.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_iccdata.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_icc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_getopt.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_debug.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_cm.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ostab.obj -c ../H5Ostab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Otest.obj -c ../H5Otest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ounknown.obj -c ../H5Ounknown.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5P.obj -c ../H5P.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_iccattrtab_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:730:49: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘jas_iccsig_t’ {aka ‘long unsigned int’} [-Wformat=] - 730 | fprintf(out, "attrno=%d; attrname=\"%s\"(0x%08x); attrtype=\"%s\"(0x%08x)\n", - | ~~~^ - | | - | unsigned int - | %08lx -...... - 733 | attr->name, - | ~~~~~~~~~~ - | | - | jas_iccsig_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:730:74: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 7 has type ‘jas_iccsig_t’ {aka ‘long unsigned int’} [-Wformat=] - 730 | fprintf(out, "attrno=%d; attrname=\"%s\"(0x%08x); attrtype=\"%s\"(0x%08x)\n", - | ~~~^ - | | - | unsigned int - | %08lx -...... - 735 | attrval->type - | ~~~~~~~~~~~~~ - | | - | jas_iccsig_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_iccattrval_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:886:41: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘jas_iccsig_t’ {aka ‘long unsigned int’} [-Wformat=] - 886 | fprintf(out, "refcnt = %d; type = 0x%08x %s\n", attrval->refcnt, - | ~~~^ - | | - | unsigned int - | %08lx - 887 | attrval->type, jas_iccsigtostr(attrval->type, &buf[0])); - | ~~~~~~~~~~~~~ - | | - | jas_iccsig_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icccurv_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1044:37: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint32_t’ {aka ‘long unsigned int’} [-Wformat=] - 1044 | fprintf(out, "number of entires = %d\n", curv->numents); - | ~^ ~~~~~~~~~~~~~ - | | | - | int jas_iccuint32_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icctxtdesc_copy’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1072:20: warning: variable ‘txtdesc’ set but not used [-Wunused-but-set-variable] - 1072 | jas_icctxtdesc_t *txtdesc = &attrval->data.txtdesc; - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icctxtdesc_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1170:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint32_t’ {aka ‘long unsigned int’} [-Wformat=] - 1170 | fprintf(out, "uclangcode = %d; uclen = %d\n", txtdesc->uclangcode, - | ~^ ~~~~~~~~~~~~~~~~~~~ - | | | - | int jas_iccuint32_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1170:42: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘jas_iccuint32_t’ {aka ‘long unsigned int’} [-Wformat=] - 1170 | fprintf(out, "uclangcode = %d; uclen = %d\n", txtdesc->uclangcode, - | ~^ - | | - | int - | %ld - 1171 | txtdesc->uclen); - | ~~~~~~~~~~~~~~ - | | - | jas_iccuint32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1172:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1172 | fprintf(out, "sccode = %d\n", txtdesc->sccode); - | ~^ ~~~~~~~~~~~~~~~ - | | | - | int jas_iccuint16_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut8_copy’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1259:17: warning: variable ‘lut8’ set but not used [-Wunused-but-set-variable] - 1259 | jas_icclut8_t *lut8 = &attrval->data.lut8; - | ^~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut8_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1403:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1403 | fprintf(out, "numintabents=%d, numouttabents=%d\n", - | ~^ - | | - | int - | %ld - 1404 | lut8->numintabents, lut8->numouttabents); - | ~~~~~~~~~~~~~~~~~~ - | | - | jas_iccuint16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1403:48: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1403 | fprintf(out, "numintabents=%d, numouttabents=%d\n", - | ~^ - | | - | int - | %ld - 1404 | lut8->numintabents, lut8->numouttabents); - | ~~~~~~~~~~~~~~~~~~~ - | | - | jas_iccuint16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut16_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1567:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1567 | fprintf(out, "numintabents=%d, numouttabents=%d\n", - | ~^ - | | - | int - | %ld - 1568 | lut16->numintabents, lut16->numouttabents); - | ~~~~~~~~~~~~~~~~~~~ - | | - | jas_iccuint16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1567:48: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1567 | fprintf(out, "numintabents=%d, numouttabents=%d\n", - | ~^ - | | - | int - | %ld - 1568 | lut16->numintabents, lut16->numouttabents); - | ~~~~~~~~~~~~~~~~~~~~ - | | - | jas_iccuint16_t {aka long unsigned int} -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pacpl.obj -c ../H5Pacpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c: In function ‘jas_image_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:824:45: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘jas_image_cmpttype_t’ {aka ‘long int’} [-Wformat=] - 824 | fprintf(out, "prec=%d, sgnd=%d, cmpttype=%d\n", cmpt->prec_, - | ~^ - | | - | int - | %ld - 825 | cmpt->sgnd_, cmpt->type_); - | ~~~~~~~~~~~ - | | - | jas_image_cmpttype_t {aka long int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c: In function ‘jas_image_chclrspc’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1289:6: warning: variable ‘numoutchans’ set but not used [-Wunused-but-set-variable] - 1289 | int numoutchans; - | ^~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1282:6: warning: variable ‘numinauxchans’ set but not used [-Wunused-but-set-variable] - 1282 | int numinauxchans; - | ^~~~~~~~~~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pdapl.obj -c ../H5Pdapl.c -In file included from ../H5Pdapl.c:35: -../H5Pdapl.c: In function ‘H5Pget_efile_prefix’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Pdapl.c:1280:13: note: in expansion of macro ‘HDstrncpy’ - 1280 | HDstrncpy(prefix, my_prefix, MIN(len + 1, size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Pdapl.c:1278:15: note: in expansion of macro ‘HDstrlen’ - 1278 | len = HDstrlen(my_prefix); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c: In function ‘jas_seq2d_output’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:426:17: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 426 | fprintf(out, "%d %d\n", jas_seq2d_xstart(matrix), - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:426:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 426 | fprintf(out, "%d %d\n", jas_seq2d_xstart(matrix), - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:428:17: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 428 | fprintf(out, "%d %d\n", jas_matrix_numcols(matrix), - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:428:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 428 | fprintf(out, "%d %d\n", jas_matrix_numcols(matrix), - | ~^ - | | - | int - | %ld -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c: In function ‘jas_stream_tmpfile’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c:368:2: warning: ignoring return value of ‘tmpnam’, declared with attribute warn_unused_result [-Wunused-result] - 368 | tmpnam(obj->pathname); - | ^~~~~~~~~~~~~~~~~~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c: In function ‘jp2_box_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:323:34: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 323 | fprintf(out, "type=%c%s%c (0x%08x); length=%d\n", '"', boxinfo->name, - | ~~~^ - | | - | unsigned int - | %08lx - 324 | '"', box->type, box->len); - | ~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:323:46: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 323 | fprintf(out, "type=%c%s%c (0x%08x); length=%d\n", '"', boxinfo->name, - | ~^ - | | - | int - | %ld - 324 | '"', box->type, box->len); - | ~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c: In function ‘jp2_cdef_dumpdata’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:435:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 435 | fprintf(out, "channo=%d; type=%d; assoc=%d\n", - | ~^ - | | - | int - | %ld - 436 | cdef->ents[i].channo, cdef->ents[i].type, cdef->ents[i].assoc); - | ~~~~~~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:435:34: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 435 | fprintf(out, "channo=%d; type=%d; assoc=%d\n", - | ~^ - | | - | int - | %ld - 436 | cdef->ents[i].channo, cdef->ents[i].type, cdef->ents[i].assoc); - | ~~~~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:435:44: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 435 | fprintf(out, "channo=%d; type=%d; assoc=%d\n", - | ~^ - | | - | int - | %ld - 436 | cdef->ents[i].channo, cdef->ents[i].type, cdef->ents[i].assoc); - | ~~~~~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c: In function ‘jp2_pclr_dumpdata’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:874:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 874 | fprintf(out, "LUT[%d][%d]=%d\n", i, j, pclr->lutdata[i * pclr->numchans + j]); - | ~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - | | | - | int int_fast32_t {aka long int} - | %ld -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c: In function ‘jp2_decode’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c:107:14: warning: variable ‘cdefd’ set but not used [-Wunused-but-set-variable] - 107 | jp2_cdef_t *cdefd; - | ^~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pdcpl.obj -c ../H5Pdcpl.c -../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] - 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:84:36: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ - 84 | #define H5D_CRT_LAYOUT_DEF H5D_DEF_LAYOUT_CONTIG - | ^~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:209:46: note: in expansion of macro ‘H5D_CRT_LAYOUT_DEF’ - 209 | static const H5O_layout_t H5D_def_layout_g = H5D_CRT_LAYOUT_DEF; /* Default storage layout */ - | ^~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] - 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:84:36: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ - 84 | #define H5D_CRT_LAYOUT_DEF H5D_DEF_LAYOUT_CONTIG - | ^~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:209:46: note: in expansion of macro ‘H5D_CRT_LAYOUT_DEF’ - 209 | static const H5O_layout_t H5D_def_layout_g = H5D_CRT_LAYOUT_DEF; /* Default storage layout */ - | ^~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] - 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:84:36: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ - 84 | #define H5D_CRT_LAYOUT_DEF H5D_DEF_LAYOUT_CONTIG - | ^~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:209:46: note: in expansion of macro ‘H5D_CRT_LAYOUT_DEF’ - 209 | static const H5O_layout_t H5D_def_layout_g = H5D_CRT_LAYOUT_DEF; /* Default storage layout */ - | ^~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:75:33: warning: missing braces around initializer [-Wmissing-braces] - 75 | #define H5D_DEF_LAYOUT_COMPACT {H5D_COMPACT, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:221:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_COMPACT’ - 221 | static H5O_layout_t H5D_def_layout_compact_g = H5D_DEF_LAYOUT_COMPACT; - | ^~~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:75:33: warning: missing braces around initializer [-Wmissing-braces] - 75 | #define H5D_DEF_LAYOUT_COMPACT {H5D_COMPACT, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:221:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_COMPACT’ - 221 | static H5O_layout_t H5D_def_layout_compact_g = H5D_DEF_LAYOUT_COMPACT; - | ^~~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:75:33: warning: missing braces around initializer [-Wmissing-braces] - 75 | #define H5D_DEF_LAYOUT_COMPACT {H5D_COMPACT, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:221:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_COMPACT’ - 221 | static H5O_layout_t H5D_def_layout_compact_g = H5D_DEF_LAYOUT_COMPACT; - | ^~~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] - 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:222:47: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ - 222 | static H5O_layout_t H5D_def_layout_contig_g = H5D_DEF_LAYOUT_CONTIG; - | ^~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] - 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:222:47: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ - 222 | static H5O_layout_t H5D_def_layout_contig_g = H5D_DEF_LAYOUT_CONTIG; - | ^~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] - 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:222:47: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ - 222 | static H5O_layout_t H5D_def_layout_contig_g = H5D_DEF_LAYOUT_CONTIG; - | ^~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:77:33: warning: missing braces around initializer [-Wmissing-braces] - 77 | #define H5D_DEF_LAYOUT_CHUNK {H5D_CHUNKED, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:223:46: note: in expansion of macro ‘H5D_DEF_LAYOUT_CHUNK’ - 223 | static H5O_layout_t H5D_def_layout_chunk_g = H5D_DEF_LAYOUT_CHUNK; - | ^~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:77:33: warning: missing braces around initializer [-Wmissing-braces] - 77 | #define H5D_DEF_LAYOUT_CHUNK {H5D_CHUNKED, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:223:46: note: in expansion of macro ‘H5D_DEF_LAYOUT_CHUNK’ - 223 | static H5O_layout_t H5D_def_layout_chunk_g = H5D_DEF_LAYOUT_CHUNK; - | ^~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:77:33: warning: missing braces around initializer [-Wmissing-braces] - 77 | #define H5D_DEF_LAYOUT_CHUNK {H5D_CHUNKED, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:223:46: note: in expansion of macro ‘H5D_DEF_LAYOUT_CHUNK’ - 223 | static H5O_layout_t H5D_def_layout_chunk_g = H5D_DEF_LAYOUT_CHUNK; - | ^~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:78:33: warning: missing braces around initializer [-Wmissing-braces] - 78 | #define H5D_DEF_LAYOUT_VIRTUAL {H5D_VIRTUAL, H5O_LAYOUT_VERSION_4, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:224:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_VIRTUAL’ - 224 | static H5O_layout_t H5D_def_layout_virtual_g = H5D_DEF_LAYOUT_VIRTUAL; - | ^~~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:78:33: warning: missing braces around initializer [-Wmissing-braces] - 78 | #define H5D_DEF_LAYOUT_VIRTUAL {H5D_VIRTUAL, H5O_LAYOUT_VERSION_4, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:224:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_VIRTUAL’ - 224 | static H5O_layout_t H5D_def_layout_virtual_g = H5D_DEF_LAYOUT_VIRTUAL; - | ^~~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:78:33: warning: missing braces around initializer [-Wmissing-braces] - 78 | #define H5D_DEF_LAYOUT_VIRTUAL {H5D_VIRTUAL, H5O_LAYOUT_VERSION_4, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:224:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_VIRTUAL’ - 224 | static H5O_layout_t H5D_def_layout_virtual_g = H5D_DEF_LAYOUT_VIRTUAL; - | ^~~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c: In function ‘H5P_get_fill_value’: -../H5Pdcpl.c:3329:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 3329 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(type, H5T_COPY_TRANSIENT), FALSE)) < 0) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Pdcpl.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_ms_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:407:28: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 407 | fprintf(out, "type = 0x%04x (%s);", ms->id, mstabent->name); - | ~~~^ ~~~~~~ - | | | - | | uint_fast16_t {aka long unsigned int} - | unsigned int - | %04lx -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:409:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 409 | fprintf(out, " len = %d;", ms->len + 2); - | ~^ ~~~~~~~~~~~ - | | | - | int uint_fast16_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_sot_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:462:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 462 | fprintf(out, "tileno = %d; len = %d; partno = %d; numparts = %d\n", - | ~^ - | | - | int - | %ld - 463 | sot->tileno, sot->len, sot->partno, sot->numparts); - | ~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:462:36: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 462 | fprintf(out, "tileno = %d; len = %d; partno = %d; numparts = %d\n", - | ~^ - | | - | int - | %ld - 463 | sot->tileno, sot->len, sot->partno, sot->numparts); - | ~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_siz_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:562:28: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 562 | fprintf(out, "caps = 0x%02x;\n", siz->caps); - | ~~~^ ~~~~~~~~~ - | | | - | | uint_fast16_t {aka long unsigned int} - | unsigned int - | %02lx -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", - | ~^ - | | - | int - | %ld - 564 | siz->width, siz->height, siz->xoff, siz->yoff); - | ~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", - | ~^ - | | - | int - | %ld - 564 | siz->width, siz->height, siz->xoff, siz->yoff); - | ~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:49: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", - | ~^ - | | - | int - | %ld - 564 | siz->width, siz->height, siz->xoff, siz->yoff); - | ~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:60: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", - | ~^ - | | - | int - | %ld - 564 | siz->width, siz->height, siz->xoff, siz->yoff); - | ~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " - | ~^ - | | - | int - | %ld - 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, - | ~~~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:46: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " - | ~^ - | | - | int - | %ld - 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, - | ~~~~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:61: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " - | ~^ - | | - | int - | %ld - 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, - | ~~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:15: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, - 567 | siz->tileyoff); - | ~~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:566:17: note: format string is defined here - 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_cod_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:634:37: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 634 | fprintf(out, "prg = %d; numlyrs = %d;\n", - | ~^ - | | - | int - | %ld - 635 | cod->prg, cod->numlyrs); - | ~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_coc_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:712:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 712 | fprintf(out, "compno = %d; csty = 0x%02x; numdlvls = %d;\n", - | ~^ - | | - | int - | %ld - 713 | coc->compno, coc->compparms.csty, coc->compparms.numdlvls); - | ~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_rgn_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:843:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 843 | fprintf(out, "compno = %d; roisty = %d; roishift = %d\n", - | ~^ - | | - | int - | %ld - 844 | rgn->compno, rgn->roisty, rgn->roishift); - | ~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_qcc_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:936:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 936 | fprintf(out, "compno = %d; qntsty = %d; numguard = %d; " - | ~^ - | | - | int - | %ld - 937 | "numstepsizes = %d\n", qcc->compno, qcc->compparms.qntsty, qcc->compparms.numguard, - | ~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_sop_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1060:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1060 | fprintf(out, "seqno = %d;\n", sop->seqno); - | ~^ ~~~~~~~~~~ - | | | - | int uint_fast16_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_ppm_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1126:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1126 | fprintf(out, "ind=%d; len = %d;\n", ppm->ind, ppm->len); - | ~^ ~~~~~~~~ - | | | - | int uint_fast16_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_ppt_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1198:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 1198 | fprintf(out, "ind=%d; len = %d;\n", ppt->ind, ppt->len); - | ~^ ~~~~~~~~ - | | | - | int uint_fast32_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_poc_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1304:27: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1304 | fprintf(out, "cs[%d] = %d; ce[%d] = %d; ", - | ~^ - | | - | int - | %ld - 1305 | pchgno, pchg->compnostart, pchgno, pchg->compnoend); - | ~~~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1304:40: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1304 | fprintf(out, "cs[%d] = %d; ce[%d] = %d; ", - | ~^ - | | - | int - | %ld - 1305 | pchgno, pchg->compnostart, pchgno, pchg->compnoend); - | ~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1308:27: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1308 | fprintf(out, "le[%d] = %d\n", pchgno, pchg->lyrnoend); - | ~^ ~~~~~~~~~~~~~~ - | | | - | int uint_fast16_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_crg_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1371:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1371 | fprintf(out, "hoff[%d] = %d; voff[%d] = %d\n", compno, - | ~^ - | | - | int - | %ld - 1372 | comp->hoff, compno, comp->voff); - | ~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1371:44: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1371 | fprintf(out, "hoff[%d] = %d; voff[%d] = %d\n", compno, - | ~^ - | | - | int - | %ld - 1372 | comp->hoff, compno, comp->voff); - | ~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_com_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1434:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1434 | fprintf(out, "regid = %d;\n", com->regid); - | ~^ ~~~~~~~~~~ - | | | - | int uint_fast16_t {aka long unsigned int} - | %ld -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pdeprec.obj -c ../H5Pdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_process_crg’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:414:13: warning: variable ‘crg’ set but not used [-Wunused-but-set-variable] - 414 | jpc_crg_t *crg; - | ^~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_tileinit’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:659:16: warning: variable ‘brcbgyend’ set but not used [-Wunused-but-set-variable] - 659 | uint_fast32_t brcbgyend; - | ^~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - - | ~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - - | ~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - - | ~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - - | ~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - - | ~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} - 2007 | rlvl->xstart, rlvl->yend - rlvl->ystart); - | ~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - - 2007 | rlvl->xstart, rlvl->yend - rlvl->ystart); - | ~~~~~~~~~~~~~~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - - | ~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - - | ~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - - | ~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - - | ~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - - | ~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} - 2021 | prc->xstart, prc->yend - prc->ystart); - | ~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - - 2021 | prc->xstart, prc->yend - prc->ystart); - | ~~~~~~~~~~~~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pdxpl.obj -c ../H5Pdxpl.c -In file included from ../H5Pdxpl.c:35: -../H5Pdxpl.c: In function ‘H5Pget_data_transform’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Pdxpl.c:1129:2: note: in expansion of macro ‘HDstrncpy’ - 1129 | HDstrncpy(expression, pexp, MIN(len + 1, size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Pdxpl.c:1127:11: note: in expansion of macro ‘HDstrlen’ - 1127 | len = HDstrlen(pexp); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pencdec.obj -c ../H5Pencdec.c -In file included from ../H5Pencdec.c:29: -In function ‘H5P__encode_cb’, - inlined from ‘H5P__encode_cb’ at ../H5Pencdec.c:332:1: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Pencdec.c:351:13: note: in expansion of macro ‘HDstrncpy’ - 351 | HDstrncpy((char *)*(udata->pp), prop->name, prop_name_len); - | ^~~~~~~~~ -../H5Pencdec.c: In function ‘H5P__encode_cb’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Pencdec.c:349:25: note: in expansion of macro ‘HDstrlen’ - 349 | prop_name_len = HDstrlen(prop->name) + 1; - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_calcssmant’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:870:6: warning: variable ‘e’ set but not used [-Wunused-but-set-variable] - 870 | int e; - | ^ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainhdr’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:901:12: warning: variable ‘mctsynweight’ set but not used [-Wunused-but-set-variable] - 901 | jpc_fix_t mctsynweight; - | ^~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainbody’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1115:7: warning: variable ‘numbytes’ set but not used [-Wunused-but-set-variable] - 1115 | long numbytes; - | ^~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1101:6: warning: variable ‘tiley’ set but not used [-Wunused-but-set-variable] - 1101 | int tiley; - | ^~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1100:6: warning: variable ‘tilex’ set but not used [-Wunused-but-set-variable] - 1100 | int tilex; - | ^~~~~ -At top level: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:883:12: warning: ‘jpc_calcssexp’ defined but not used [-Wunused-function] - 883 | static int jpc_calcssexp(jpc_fix_t stepsize) - | ^~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:867:12: warning: ‘jpc_calcssmant’ defined but not used [-Wunused-function] - 867 | static int jpc_calcssmant(jpc_fix_t stepsize) - | ^~~~~~~~~~~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c: In function ‘jpc_mqdec_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c:304:39: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 304 | fprintf(out, "IND %d, MPS %d, QEVAL %x\n", (int) (*mqdec->curctx - - | ~^ - | | - | unsigned int - | %lx - 305 | jpc_mqstates), (*mqdec->curctx)->mps, (*mqdec->curctx)->qeval); - | ~~~~~~~~~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c: In function ‘jpc_mqenc_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:386:26: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 386 | fprintf(out, "AREG = %08x, CREG = %08x, CTREG = %d\n", - | ~~~^ - | | - | unsigned int - | %08lx - 387 | mqenc->areg, mqenc->creg, mqenc->ctreg); - | ~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:386:39: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 386 | fprintf(out, "AREG = %08x, CREG = %08x, CTREG = %d\n", - | ~~~^ - | | - | unsigned int - | %08lx - 387 | mqenc->areg, mqenc->creg, mqenc->ctreg); - | ~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:386:51: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 386 | fprintf(out, "AREG = %08x, CREG = %08x, CTREG = %d\n", - | ~^ - | | - | int - | %ld - 387 | mqenc->areg, mqenc->creg, mqenc->ctreg); - | ~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:388:49: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 388 | fprintf(out, "IND = %02d, MPS = %d, QEVAL = %04x\n", - | ~~~^ - | | - | unsigned int - | %04lx - 389 | (int) (*mqenc->curctx - jpc_mqstates), (*mqenc->curctx)->mps, - 390 | (*mqenc->curctx)->qeval); - | ~~~~~~~~~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pfapl.obj -c ../H5Pfapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pfcpl.obj -c ../H5Pfcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:288:2: warning: initialization of ‘int (*)(int *, int, int, int, int, int)’ from incompatible pointer type ‘int (*)(jpc_fix_t *, int, int, int, int, int)’ {aka ‘int (*)(long int *, int, int, int, int, int)’} [-Wincompatible-pointer-types] - 288 | jpc_ft_analyze, - | ^~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:288:2: note: (near initialization for ‘jpc_ft_qmfb2d.analyze’) -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:295:2: warning: initialization of ‘int (*)(int *, int, int, int, int, int)’ from incompatible pointer type ‘int (*)(jpc_fix_t *, int, int, int, int, int)’ {aka ‘int (*)(long int *, int, int, int, int, int)’} [-Wincompatible-pointer-types] - 295 | jpc_ns_analyze, - | ^~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:295:2: note: (near initialization for ‘jpc_ns_qmfb2d.analyze’) -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:296:2: warning: initialization of ‘int (*)(int *, int, int, int, int, int)’ from incompatible pointer type ‘int (*)(jpc_fix_t *, int, int, int, int, int)’ {aka ‘int (*)(long int *, int, int, int, int, int)’} [-Wincompatible-pointer-types] - 296 | jpc_ns_synthesize, - | ^~~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:296:2: note: (near initialization for ‘jpc_ns_qmfb2d.synthesize’) -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c: In function ‘jpc_ft_synthesize’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:1607:11: warning: assignment to ‘jpc_fix_t *’ {aka ‘long int *’} from incompatible pointer type ‘int *’ [-Wincompatible-pointer-types] - 1607 | startptr = &a[0]; - | ^ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:1615:11: warning: assignment to ‘jpc_fix_t *’ {aka ‘long int *’} from incompatible pointer type ‘int *’ [-Wincompatible-pointer-types] - 1615 | startptr = &a[0]; - | ^ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pfmpl.obj -c ../H5Pfmpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pgcpl.obj -c ../H5Pgcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pint.obj -c ../H5Pint.c -../H5Pint.c: In function ‘H5P__iterate_pclass_cb’: -../H5Pint.c:4066:11: warning: unused variable ‘key’ [-Wunused-variable] - 4066 | char *key = (char *)_key; /* Pointer to the property's name */ - | ^~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c: In function ‘jpc_enc_enccblk’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:205:18: warning: variable ‘rlvl’ set but not used [-Wunused-but-set-variable] - 205 | jpc_enc_rlvl_t *rlvl; - | ^~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:200:6: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] - 200 | int ret; - | ^~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Plapl.obj -c ../H5Plapl.c -../H5Plapl.c: In function ‘H5P__lacc_elink_fapl_cmp’: -../H5Plapl.c:570:16: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] - 570 | herr_t status; - | ^~~~~~ -In file included from ../H5Plapl.c:35: -../H5Plapl.c: In function ‘H5Pget_elink_prefix’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Plapl.c:1062:13: note: in expansion of macro ‘HDstrncpy’ - 1062 | HDstrncpy(prefix, my_prefix, MIN(len + 1, size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Plapl.c:1060:15: note: in expansion of macro ‘HDstrlen’ - 1060 | len = HDstrlen(my_prefix); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:77: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c: In function ‘jpc_tsfb_analyze’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:177:3: warning: passing argument 2 of ‘jpc_tsfb_analyze2’ from incompatible pointer type [-Wincompatible-pointer-types] - 177 | (&(matrix)->rows_[i][j]) - | ^ - | | - | jas_seqent_t * {aka long int *} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:259:3: note: in expansion of macro ‘jas_matrix_getref’ - 259 | (jas_matrix_getref(s, (y) - (s)->ystart_, (x) - (s)->xstart_)) - | ^~~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:130:55: note: in expansion of macro ‘jas_seq2d_getref’ - 130 | return (tsfb->numlvls > 0) ? jpc_tsfb_analyze2(tsfb, jas_seq2d_getref(a, - | ^~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:85:46: note: expected ‘int *’ but argument is of type ‘jas_seqent_t *’ {aka ‘long int *’} - 85 | int jpc_tsfb_analyze2(jpc_tsfb_t *tsfb, int *a, int xstart, int ystart, - | ~~~~~^ -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:77: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c: In function ‘jpc_tsfb_synthesize’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:177:3: warning: passing argument 2 of ‘jpc_tsfb_synthesize2’ from incompatible pointer type [-Wincompatible-pointer-types] - 177 | (&(matrix)->rows_[i][j]) - | ^ - | | - | jas_seqent_t * {aka long int *} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:259:3: note: in expansion of macro ‘jas_matrix_getref’ - 259 | (jas_matrix_getref(s, (y) - (s)->ystart_, (x) - (s)->xstart_)) - | ^~~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:158:4: note: in expansion of macro ‘jas_seq2d_getref’ - 158 | jas_seq2d_getref(a, jas_seq2d_xstart(a), jas_seq2d_ystart(a)), - | ^~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:88:49: note: expected ‘int *’ but argument is of type ‘jas_seqent_t *’ {aka ‘long int *’} - 88 | int jpc_tsfb_synthesize2(jpc_tsfb_t *tsfb, int *a, int xstart, int ystart, - | ~~~~~^ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Plcpl.obj -c ../H5Plcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c: In function ‘jpc_atoaf’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:11: warning: comparison between pointer and zero character constant [-Wpointer-compare] - 105 | if (cp != '\0') { - | ^~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:8: note: did you mean to dereference the pointer? - 105 | if (cp != '\0') { - | ^ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:12: warning: comparison between pointer and zero character constant [-Wpointer-compare] - 123 | if (cp != '\0') { - | ^~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:9: note: did you mean to dereference the pointer? - 123 | if (cp != '\0') { - | ^ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -/usr/bin/ar -rc libjp2.a jas_cm.o jas_debug.o jas_getopt.o jas_icc.o jas_iccdata.o jas_image.o jas_init.o jas_malloc.o jas_seq.o jas_stream.o jas_string.o jas_tmr.o jas_tvp.o jas_version.o jp2_cod.o jp2_dec.o jp2_enc.o jpc_bs.o jpc_cs.o jpc_dec.o jpc_enc.o jpc_math.o jpc_mct.o jpc_mqcod.o jpc_mqdec.o jpc_mqenc.o jpc_qmfb.o jpc_t1cod.o jpc_t1dec.o jpc_t1enc.o jpc_t2cod.o jpc_t2dec.o jpc_t2enc.o jpc_tagtree.o jpc_tsfb.o jpc_util.o -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -/usr/bin/ranlib libjp2.a -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -g++ -o libjp2.so -shared -fPIC -Wl,-hlibjp2.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jas_cm.o jas_debug.o jas_getopt.o jas_icc.o jas_iccdata.o jas_image.o jas_init.o jas_malloc.o jas_seq.o jas_stream.o jas_string.o jas_tmr.o jas_tvp.o jas_version.o jp2_cod.o jp2_dec.o jp2_enc.o jpc_bs.o jpc_cs.o jpc_dec.o jpc_enc.o jpc_math.o jpc_mct.o jpc_mqcod.o jpc_mqdec.o jpc_mqenc.o jpc_qmfb.o jpc_t1cod.o jpc_t1dec.o jpc_t1enc.o jpc_t2cod.o jpc_t2dec.o jpc_t2enc.o jpc_tagtree.o jpc_tsfb.o jpc_util.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -/usr/bin/ld: jas_stream.o: in function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7e9): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../../.. \ - T_A=windows-x64-mingw install -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_util.d -MT jpc_util.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pocpl.obj -c ../H5Pocpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tsfb.d -MT jpc_tsfb.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tagtree.d -MT jpc_tagtree.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pocpypl.obj -c ../H5Pocpypl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2enc.d -MT jpc_t2enc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pstrcpl.obj -c ../H5Pstrcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2dec.d -MT jpc_t2dec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2cod.d -MT jpc_t2cod.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ptest.obj -c ../H5Ptest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1enc.d -MT jpc_t1enc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1dec.d -MT jpc_t1dec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5PB.obj -c ../H5PB.c -../H5PB.c: In function ‘H5PB_dest’: -../H5PB.c:487:7: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 487 | f = fio_info->f; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1cod.d -MT jpc_t1cod.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_qmfb.d -MT jpc_qmfb.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5PL.obj -c ../H5PL.c -In file included from ../H5PL.c:23: -../H5PL.c: In function ‘H5PLget’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5PL.c:623:9: note: in expansion of macro ‘HDstrncpy’ - 623 | HDstrncpy(pathname, dl_path, MIN((size_t)(len + 1), size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5PL.c:621:11: note: in expansion of macro ‘HDstrlen’ - 621 | len = HDstrlen(dl_path); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqenc.d -MT jpc_mqenc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqdec.d -MT jpc_mqdec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5R.obj -c ../H5R.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqcod.d -MT jpc_mqcod.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Rdeprec.obj -c ../H5Rdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mct.d -MT jpc_mct.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_math.d -MT jpc_math.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5UC.obj -c ../H5UC.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_enc.d -MT jpc_enc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5RS.obj -c ../H5RS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_dec.d -MT jpc_dec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_cs.d -MT jpc_cs.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_bs.d -MT jpc_bs.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5S.obj -c ../H5S.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_enc.d -MT jp2_enc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_dec.d -MT jp2_dec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Sall.obj -c ../H5Sall.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_cod.d -MT jp2_cod.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_version.d -MT jas_version.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tvp.d -MT jas_tvp.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tmr.d -MT jas_tmr.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_string.d -MT jas_string.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Sdbg.obj -c ../H5Sdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_stream.d -MT jas_stream.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_seq.d -MT jas_seq.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_malloc.d -MT jas_malloc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_init.d -MT jas_init.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_image.d -MT jas_image.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_iccdata.d -MT jas_iccdata.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_icc.d -MT jas_icc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_getopt.d -MT jas_getopt.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_debug.d -MT jas_debug.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_cm.d -MT jas_cm.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Shyper.obj -c ../H5Shyper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_cm.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c:68: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Snone.obj -c ../H5Snone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_debug.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c:69: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Spoint.obj -c ../H5Spoint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_getopt.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_getopt.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c:77: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Sselect.obj -c ../H5Sselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Stest.obj -c ../H5Stest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_icc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:63: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icctxtdesc_copy’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1072:20: warning: variable ‘txtdesc’ set but not used [-Wunused-but-set-variable] - 1072 | jas_icctxtdesc_t *txtdesc = &attrval->data.txtdesc; - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut8_copy’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1259:17: warning: variable ‘lut8’ set but not used [-Wunused-but-set-variable] - 1259 | jas_icclut8_t *lut8 = &attrval->data.lut8; - | ^~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_iccdata.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c:62: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SL.obj -c ../H5SL.c -../H5SL.c: In function ‘H5SL_term_package’: -../H5SL.c:655:21: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] - 655 | herr_t ret; - | ^~~ -In file included from ../H5SL.c:64: -../H5SL.c: In function ‘H5SL_search’: -../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 2267 | return(ret_value); \ - | ^ -../H5SL.c:1397:11: note: ‘ret_value’ was declared here - 1397 | void *ret_value; /* Return value */ - | ^~~~~~~~~ -In file included from ../H5SL.c:64: -../H5SL.c: In function ‘H5SL_find’: -../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 2267 | return(ret_value); \ - | ^ -../H5SL.c:1698:18: note: ‘ret_value’ was declared here - 1698 | H5SL_node_t *ret_value; /* Return value */ - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_image.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_math.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:80: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c: In function ‘jas_image_chclrspc’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1289:6: warning: variable ‘numoutchans’ set but not used [-Wunused-but-set-variable] - 1289 | int numoutchans; - | ^~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1282:6: warning: variable ‘numinauxchans’ set but not used [-Wunused-but-set-variable] - 1282 | int numinauxchans; - | ^~~~~~~~~~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_init.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c:66: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_malloc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c:80: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SM.obj -c ../H5SM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SMbtree2.obj -c ../H5SMbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_seq.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:78: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SMcache.obj -c ../H5SMcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SMmessage.obj -c ../H5SMmessage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_stream.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c:89: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_string.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c:76: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_tmr.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_tmr.h:66, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c:76: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_tvp.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c:77: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_version.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_version.h:71, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c:62: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SMtest.obj -c ../H5SMtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5ST.obj -c ../H5ST.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jp2_cod.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_stream.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:77: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jp2_dec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_image.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c:74: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c: In function ‘jp2_decode’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c:107:14: warning: variable ‘cdefd’ set but not used [-Wunused-but-set-variable] - 107 | jp2_cdef_t *cdefd; - | ^~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jp2_enc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c:75: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5T.obj -c ../H5T.c -../H5T.c: In function ‘H5T_path_find’: -../H5T.c:4499:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 4499 | if(NULL == (path->src = H5T_copy(src, H5T_COPY_ALL))) - | ^~~ -../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) - | ~~~~~~~^~~~~~ -../H5T.c:4501:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 4501 | if(NULL == (path->dst = H5T_copy(dst, H5T_COPY_ALL))) - | ^~~ -../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) - | ~~~~~~~^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_bs.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c:78: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tarray.obj -c ../H5Tarray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tbit.obj -c ../H5Tbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_cs.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:78: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_qcd_getparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:972:22: warning: ‘tmp’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 972 | compparms->numguard = (tmp >> 5) & 7; - | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:961:15: note: ‘tmp’ was declared here - 961 | uint_fast8_t tmp; - | ^~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_qcc_getparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:972:22: warning: ‘tmp’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 972 | compparms->numguard = (tmp >> 5) & 7; - | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:961:15: note: ‘tmp’ was declared here - 961 | uint_fast8_t tmp; - | ^~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:902:15: warning: ‘tmp’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 902 | qcc->compno = tmp; - | ~~~~~~~~~~~~^~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tcommit.obj -c ../H5Tcommit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tcompound.obj -c ../H5Tcompound.c -../H5Tcompound.c: In function ‘H5T__insert’: -../H5Tcompound.c:459:56: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 459 | parent->shared->u.compnd.memb[idx].type = H5T_copy(member, H5T_COPY_ALL); - | ^~~~~~ -In file included from ../H5Tpkg.h:37, - from ../H5Tcompound.c:33: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_dec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:76: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_process_crg’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:414:13: warning: variable ‘crg’ set but not used [-Wunused-but-set-variable] - 414 | jpc_crg_t *crg; - | ^~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_tileinit’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:659:16: warning: variable ‘brcbgyend’ set but not used [-Wunused-but-set-variable] - 659 | uint_fast32_t brcbgyend; - | ^~~~~~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_enc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:78: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_calcssmant’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:870:6: warning: variable ‘e’ set but not used [-Wunused-but-set-variable] - 870 | int e; - | ^ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainhdr’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:901:12: warning: variable ‘mctsynweight’ set but not used [-Wunused-but-set-variable] - 901 | jpc_fix_t mctsynweight; - | ^~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainbody’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1115:7: warning: variable ‘numbytes’ set but not used [-Wunused-but-set-variable] - 1115 | long numbytes; - | ^~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1101:6: warning: variable ‘tiley’ set but not used [-Wunused-but-set-variable] - 1101 | int tiley; - | ^~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1100:6: warning: variable ‘tilex’ set but not used [-Wunused-but-set-variable] - 1100 | int tilex; - | ^~~~~ -At top level: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:883:12: warning: ‘jpc_calcssexp’ defined but not used [-Wunused-function] - 883 | static int jpc_calcssexp(jpc_fix_t stepsize) - | ^~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:867:12: warning: ‘jpc_calcssmant’ defined but not used [-Wunused-function] - 867 | static int jpc_calcssmant(jpc_fix_t stepsize) - | ^~~~~~~~~~~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_math.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_mct.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c:76: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_mqcod.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c:74: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_mqdec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c:78: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_mqenc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_stream.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:77: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_qmfb.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_fix.h:81, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:82: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t1cod.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c:77: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t1dec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_fix.h:81, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c:78: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t1enc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_fix.h:81, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:78: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c: In function ‘jpc_enc_enccblk’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:205:18: warning: variable ‘rlvl’ set but not used [-Wunused-but-set-variable] - 205 | jpc_enc_rlvl_t *rlvl; - | ^~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:200:6: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] - 200 | int ret; - | ^~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t2cod.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_math.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c:70: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t2dec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c:78: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t2enc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_fix.h:81, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c:78: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_tagtree.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c:79: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tconv.obj -c ../H5Tconv.c -../H5Tconv.c: In function ‘H5T_conv_struct_free’: -../H5Tconv.c:1876:17: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] - 1876 | int status; - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tcset.obj -c ../H5Tcset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_tsfb.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:76: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tdbg.obj -c ../H5Tdbg.c -../H5Tdbg.c: In function ‘H5T_debug’: -../H5Tdbg.c:428:4: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 428 | (unsigned long)(dt->shared->u.enumer.value + (i * base_size) + k)); - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_util.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_math.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:79: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c: In function ‘jpc_atoaf’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:11: warning: comparison between pointer and zero character constant [-Wpointer-compare] - 105 | if (cp != '\0') { - | ^~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:8: note: did you mean to dereference the pointer? - 105 | if (cp != '\0') { - | ^ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:12: warning: comparison between pointer and zero character constant [-Wpointer-compare] - 123 | if (cp != '\0') { - | ^~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:9: note: did you mean to dereference the pointer? - 123 | if (cp != '\0') { - | ^ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-windres -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jp2.rc jp2.coff -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o jp2.dll -shared -Wl,--out-implib,libjp2.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ jas_cm.obj jas_debug.obj jas_getopt.obj jas_icc.obj jas_iccdata.obj jas_image.obj jas_init.obj jas_malloc.obj jas_seq.obj jas_stream.obj jas_string.obj jas_tmr.obj jas_tvp.obj jas_version.obj jp2_cod.obj jp2_dec.obj jp2_enc.obj jpc_bs.obj jpc_cs.obj jpc_dec.obj jpc_enc.obj jpc_math.obj jpc_mct.obj jpc_mqcod.obj jpc_mqdec.obj jpc_mqenc.obj jpc_qmfb.obj jpc_t1cod.obj jpc_t1dec.obj jpc_t1enc.obj jpc_t2cod.obj jpc_t2dec.obj jpc_t2enc.obj jpc_tagtree.obj jpc_tsfb.obj jpc_util.obj jp2.coff -lws2_32 -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tdeprec.obj -c ../H5Tdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make -C ./jbig install -make -C ./libjbig install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' -mkdir -p O.Common -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig_tab.d ../jbig_tab.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig.d ../jbig.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tenum.obj -c ../H5Tenum.c -../H5Tenum.c: In function ‘H5T__enum_create’: -../H5Tenum.c:110:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 110 | ret_value->shared->parent = H5T_copy(parent, H5T_COPY_ALL); - | ^~~~~~ -In file included from ../H5Tpkg.h:37, - from ../H5Tenum.c:26: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Tenum.c: In function ‘H5T_enum_nameof’: -../H5Tenum.c:411:38: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 411 | if(NULL == (copied_dt = H5T_copy(dt, H5T_COPY_ALL))) - | ^~ -In file included from ../H5Tpkg.h:37, - from ../H5Tenum.c:26: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Tenum.c: In function ‘H5T_enum_valueof’: -../H5Tenum.c:550:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 550 | if (NULL==(copied_dt=H5T_copy(dt, H5T_COPY_ALL))) - | ^~ -In file included from ../H5Tpkg.h:37, - from ../H5Tenum.c:26: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tfields.obj -c ../H5Tfields.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tfixed.obj -c ../H5Tfixed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../jbig.c -../jbig.c: In function ‘jbg_dec_merge_planes’: -../jbig.c:3041:7: warning: variable ‘bpp’ set but not used [-Wunused-but-set-variable] - 3041 | int bpp; - | ^~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../jbig_tab.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -/usr/bin/ar -rc libjbig.a jbig.o jbig_tab.o -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -/usr/bin/ranlib libjbig.a -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -g++ -o libjbig.so -shared -fPIC -Wl,-hlibjbig.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jbig.o jbig_tab.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tfloat.obj -c ../H5Tfloat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ - T_A=windows-x64-mingw install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig_tab.d -MT jbig_tab.obj ../jbig_tab.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig.d -MT jbig.obj ../jbig.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tnative.obj -c ../H5Tnative.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Toffset.obj -c ../H5Toffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Toh.obj -c ../H5Toh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o jbig.obj -c ../jbig.c -In file included from ../jbig.c:52: -../jbig.h:255: warning: ignoring #pragma warning [-Wunknown-pragmas] - 255 | # pragma warning( disable : 4273 ) - | -../jbig.h:267: warning: ignoring #pragma warning [-Wunknown-pragmas] - 267 | # pragma warning( disable : 4018 ) - | -../jbig.h:268: warning: ignoring #pragma warning [-Wunknown-pragmas] - 268 | # pragma warning( disable : 4244 ) - | -../jbig.h:269: warning: ignoring #pragma warning [-Wunknown-pragmas] - 269 | # pragma warning( disable : 4142 ) - | -../jbig.c:704:15: warning: ‘jbg_ceil_half’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 704 | unsigned long jbg_ceil_half(unsigned long x, int n) - | ^~~~~~~~~~~~~ -../jbig.c:744:6: warning: ‘jbg_enc_init’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 744 | void jbg_enc_init(struct jbg_enc_state *s, unsigned long x, unsigned long y, - | ^~~~~~~~~~~~ -../jbig.c:810:5: warning: ‘jbg_enc_lrlmax’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 810 | int jbg_enc_lrlmax(struct jbg_enc_state *s, unsigned long x, - | ^~~~~~~~~~~~~~ -../jbig.c:828:6: warning: ‘jbg_enc_layers’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 828 | void jbg_enc_layers(struct jbg_enc_state *s, int d) - | ^~~~~~~~~~~~~~ -../jbig.c:847:5: warning: ‘jbg_enc_lrange’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 847 | int jbg_enc_lrange(struct jbg_enc_state *s, int dl, int dh) - | ^~~~~~~~~~~~~~ -../jbig.c:861:6: warning: ‘jbg_enc_options’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 861 | void jbg_enc_options(struct jbg_enc_state *s, int order, int options, - | ^~~~~~~~~~~~~~~ -../jbig.c:1682:6: warning: ‘jbg_int2dppriv’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 1682 | void jbg_int2dppriv(unsigned char *dptable, const char *internal) - | ^~~~~~~~~~~~~~ -../jbig.c:1715:6: warning: ‘jbg_dppriv2int’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 1715 | void jbg_dppriv2int(char *internal, const unsigned char *dptable) - | ^~~~~~~~~~~~~~ -../jbig.c:1745:6: warning: ‘jbg_enc_out’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 1745 | void jbg_enc_out(struct jbg_enc_state *s) - | ^~~~~~~~~~~ -../jbig.c:1923:6: warning: ‘jbg_enc_free’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 1923 | void jbg_enc_free(struct jbg_enc_state *s) - | ^~~~~~~~~~~~ -../jbig.c:1977:13: warning: ‘jbg_strerror’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 1977 | const char *jbg_strerror(int errnum, int language) - | ^~~~~~~~~~~~ -../jbig.c:1991:6: warning: ‘jbg_dec_init’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 1991 | void jbg_dec_init(struct jbg_dec_state *s) - | ^~~~~~~~~~~~ -../jbig.c:2014:6: warning: ‘jbg_dec_maxsize’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 2014 | void jbg_dec_maxsize(struct jbg_dec_state *s, unsigned long xmax, - | ^~~~~~~~~~~~~~~ -../jbig.c:2503:5: warning: ‘jbg_dec_in’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 2503 | int jbg_dec_in(struct jbg_dec_state *s, unsigned char *data, size_t len, - | ^~~~~~~~~~ -../jbig.c:2830:6: warning: ‘jbg_dec_getwidth’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 2830 | long jbg_dec_getwidth(const struct jbg_dec_state *s) - | ^~~~~~~~~~~~~~~~ -../jbig.c:2849:6: warning: ‘jbg_dec_getheight’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 2849 | long jbg_dec_getheight(const struct jbg_dec_state *s) - | ^~~~~~~~~~~~~~~~~ -../jbig.c:2868:16: warning: ‘jbg_dec_getimage’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 2868 | unsigned char *jbg_dec_getimage(const struct jbg_dec_state *s, int plane) - | ^~~~~~~~~~~~~~~~ -../jbig.c:2888:6: warning: ‘jbg_dec_getsize’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 2888 | long jbg_dec_getsize(const struct jbg_dec_state *s) - | ^~~~~~~~~~~~~~~ -../jbig.c:2910:6: warning: ‘jbg_dec_getsize_merged’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 2910 | long jbg_dec_getsize_merged(const struct jbg_dec_state *s) - | ^~~~~~~~~~~~~~~~~~~~~~ -../jbig.c:2932:6: warning: ‘jbg_dec_free’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 2932 | void jbg_dec_free(struct jbg_dec_state *s) - | ^~~~~~~~~~~~ -../jbig.c:2975:6: warning: ‘jbg_split_planes’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 2975 | void jbg_split_planes(unsigned long x, unsigned long y, int has_planes, - | ^~~~~~~~~~~~~~~~ -../jbig.c:3036:6: warning: ‘jbg_dec_merge_planes’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 3036 | void jbg_dec_merge_planes(const struct jbg_dec_state *s, int use_graycode, - | ^~~~~~~~~~~~~~~~~~~~ -../jbig.c: In function ‘jbg_dec_merge_planes’: -../jbig.c:3041:7: warning: variable ‘bpp’ set but not used [-Wunused-but-set-variable] - 3041 | int bpp; - | ^~~ -../jbig.c: At top level: -../jbig.c:3165:5: warning: ‘jbg_newlen’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 3165 | int jbg_newlen(unsigned char *bie, size_t len) - | ^~~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o jbig_tab.obj -c ../jbig_tab.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-windres -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc ../jbig.rc jbig.coff -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o jbig.dll -shared -Wl,--out-implib,libjbig.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ jbig.obj jbig_tab.obj jbig.coff -lws2_32 -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -make -C ./magick install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Topaque.obj -c ../H5Topaque.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' -mkdir -p O.Common -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF analyze_Linux.d ../analyze_Linux.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF xwindow.d ../xwindow.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF widget.d ../widget.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF version.d ../version.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF utility.d ../utility.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF unix_port.d ../unix_port.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Torder.obj -c ../H5Torder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type.d ../type.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tsd.d ../tsd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF transform.d ../transform.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF timer.d ../timer.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF texture.d ../texture.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tempfile.d ../tempfile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF statistics.d ../statistics.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF signature.d ../signature.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF shear.d ../shear.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF semaphore.d ../semaphore.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF segment.d ../segment.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resource.d ../resource.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tpad.obj -c ../H5Tpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resize.d ../resize.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF render.d ../render.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF registry.d ../registry.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF random.d ../random.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF quantize.d ../quantize.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF profile.d ../profile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF PreRvIcccm.d ../PreRvIcccm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF plasma.d ../plasma.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_iterator.d ../pixel_iterator.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_cache.d ../pixel_cache.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF paint.d ../paint.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF operator.d ../operator.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tprecis.obj -c ../H5Tprecis.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF omp_data_view.d ../omp_data_view.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_feature.d ../nt_feature.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_base.d ../nt_base.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF montage.d ../montage.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF monitor.d ../monitor.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF module.d ../module.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF memory.d ../memory.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF map.d ../map.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick_endian.d ../magick_endian.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick.d ../magick.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magic.d ../magic.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tstrpad.obj -c ../H5Tstrpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF log.d ../log.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF locale.d ../locale.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF list.d ../list.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF import.d ../import.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF image.d ../image.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF hclut.d ../hclut.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gradient.d ../gradient.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gem.d ../gem.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fx.d ../fx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF floats.d ../floats.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF export.d ../export.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF error.d ../error.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tvisit.obj -c ../H5Tvisit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enum_strings.d ../enum_strings.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enhance.d ../enhance.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF effect.d ../effect.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF draw.d ../draw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF display.d ../display.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF describe.d ../describe.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF deprecate.d ../deprecate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF delegate.d ../delegate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF decorate.d ../decorate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF constitute.d ../constitute.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF confirm_access.d ../confirm_access.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compress.d ../compress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF composite.d ../composite.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compare.d ../compare.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF command.d ../command.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tvlen.obj -c ../H5Tvlen.c -../H5Tvlen.c: In function ‘H5T__vlen_create’: -../H5Tvlen.c:142:47: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 142 | if(NULL == (dt->shared->parent = H5T_copy(base, H5T_COPY_ALL))) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Tvlen.c:23: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color_lookup.d ../color_lookup.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colorspace.d ../colorspace.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colormap.d ../colormap.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color.d ../color.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF channel.d ../channel.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cdl.d ../cdl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF blob.d ../blob.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bit_stream.d ../bit_stream.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF average.d ../average.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF attribute.d ../attribute.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5TS.obj -c ../H5TS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF annotate.d ../annotate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF animate.d ../animate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -mkdir ../../../../include/magick -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5VM.obj -c ../H5VM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5WB.obj -c ../H5WB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Z.obj -c ../H5Z.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../animate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zdeflate.obj -c ../H5Zdeflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zfletcher32.obj -c ../H5Zfletcher32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../annotate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../attribute.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../average.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Znbit.obj -c ../H5Znbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../bit_stream.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../blob.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../cdl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../channel.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../color.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zscaleoffset.obj -c ../H5Zscaleoffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../colormap.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zshuffle.obj -c ../H5Zshuffle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../colorspace.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../color_lookup.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zszip.obj -c ../H5Zszip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ztrans.obj -c ../H5Ztrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tinit.obj -c ../os/WIN32/H5Tinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5lib_settings.obj -c ../H5lib_settings.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosc_filter.obj -c ../blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jpeg_h5filter.obj -c ../jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../command.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../compare.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5detect.obj -c ../H5detect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o hdf5.dll -shared -Wl,--out-implib,libhdf5.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ H5.obj H5checksum.obj H5dbg.obj H5system.obj H5timer.obj H5trace.obj H5A.obj H5Abtree2.obj H5Adense.obj H5Adeprec.obj H5Aint.obj H5Atest.obj H5AC.obj H5AClog.obj H5ACdbg.obj H5ACproxy_entry.obj H5B.obj H5Bcache.obj H5Bdbg.obj H5B2.obj H5B2cache.obj H5B2dbg.obj H5B2hdr.obj H5B2int.obj H5B2internal.obj H5B2leaf.obj H5B2stat.obj H5B2test.obj H5C.obj H5Cdbg.obj H5Cepoch.obj H5Cimage.obj H5Clog.obj H5Cprefetched.obj H5Cquery.obj H5Ctag.obj H5Ctest.obj H5CS.obj H5D.obj H5Dbtree.obj H5Dbtree2.obj H5Dchunk.obj H5Dcompact.obj H5Dcontig.obj H5Ddbg.obj H5Ddeprec.obj H5Dearray.obj H5Defl.obj H5Dfarray.obj H5Dfill.obj H5Dint.obj H5Dio.obj H5Dlayout.obj H5Dnone.obj H5Doh.obj H5Dscatgath.obj H5Dselect.obj H5Dsingle.obj H5Dtest.obj H5Dvirtual.obj H5E.obj H5Edeprec.obj H5Eint.obj H5EA.obj H5EAcache.obj H5EAdbg.obj H5EAdblkpage.obj H5EAdblock.obj H5EAhdr.obj H5EAiblock.obj H5EAint.obj H5EAsblock.obj H5EAstat.obj H5EAtest.obj H5F.obj H5Faccum.obj H5Fcwfs.obj H5Fdbg.obj H5Fdeprec.obj H5Fefc.obj H5Ffake.obj H5Fint.obj H5Fio.obj H5Fmount.obj H5Fquery.obj H5Fsfile.obj H5Fspace.obj H5Fsuper.obj H5Fsuper_cache.obj H5Ftest.obj H5FA.obj H5FAcache.obj H5FAdbg.obj H5FAdblock.obj H5FAdblkpage.obj H5FAhdr.obj H5FAint.obj H5FAstat.obj H5FAtest.obj H5FD.obj H5FDcore.obj H5FDfamily.obj H5FDint.obj H5FDlog.obj H5FDmulti.obj H5FDsec2.obj H5FDspace.obj H5FDstdio.obj H5FDtest.obj H5FL.obj H5FO.obj H5FS.obj H5FScache.obj H5FSdbg.obj H5FSint.obj H5FSsection.obj H5FSstat.obj H5FStest.obj H5G.obj H5Gbtree2.obj H5Gcache.obj H5Gcompact.obj H5Gdense.obj H5Gdeprec.obj H5Gent.obj H5Gint.obj H5Glink.obj H5Gloc.obj H5Gname.obj H5Gnode.obj H5Gobj.obj H5Goh.obj H5Groot.obj H5Gstab.obj H5Gtest.obj H5Gtraverse.obj H5HF.obj H5HFbtree2.obj H5HFcache.obj H5HFdbg.obj H5HFdblock.obj H5HFdtable.obj H5HFhdr.obj H5HFhuge.obj H5HFiblock.obj H5HFiter.obj H5HFman.obj H5HFsection.obj H5HFspace.obj H5HFstat.obj H5HFtest.obj H5HFtiny.obj H5HG.obj H5HGcache.obj H5HGdbg.obj H5HGquery.obj H5HL.obj H5HLcache.obj H5HLdbg.obj H5HLint.obj H5HLprfx.obj H5HLdblk.obj H5HP.obj H5I.obj H5Itest.obj H5L.obj H5Lexternal.obj H5MF.obj H5MFaggr.obj H5MFdbg.obj H5MFsection.obj H5MM.obj H5MP.obj H5MPtest.obj H5O.obj H5Oainfo.obj H5Oalloc.obj H5Oattr.obj H5Oattribute.obj H5Obogus.obj H5Obtreek.obj H5Ocache.obj H5Ocache_image.obj H5Ochunk.obj H5Ocont.obj H5Ocopy.obj H5Odbg.obj H5Odrvinfo.obj H5Odtype.obj H5Oefl.obj H5Ofill.obj H5Oflush.obj H5Ofsinfo.obj H5Oginfo.obj H5Olayout.obj H5Olinfo.obj H5Olink.obj H5Omessage.obj H5Omtime.obj H5Oname.obj H5Onull.obj H5Opline.obj H5Orefcount.obj H5Osdspace.obj H5Oshared.obj H5Oshmesg.obj H5Ostab.obj H5Otest.obj H5Ounknown.obj H5P.obj H5Pacpl.obj H5Pdapl.obj H5Pdcpl.obj H5Pdeprec.obj H5Pdxpl.obj H5Pencdec.obj H5Pfapl.obj H5Pfcpl.obj H5Pfmpl.obj H5Pgcpl.obj H5Pint.obj H5Plapl.obj H5Plcpl.obj H5Pocpl.obj H5Pocpypl.obj H5Pstrcpl.obj H5Ptest.obj H5PB.obj H5PL.obj H5R.obj H5Rdeprec.obj H5UC.obj H5RS.obj H5S.obj H5Sall.obj H5Sdbg.obj H5Shyper.obj H5Snone.obj H5Spoint.obj H5Sselect.obj H5Stest.obj H5SL.obj H5SM.obj H5SMbtree2.obj H5SMcache.obj H5SMmessage.obj H5SMtest.obj H5ST.obj H5T.obj H5Tarray.obj H5Tbit.obj H5Tcommit.obj H5Tcompound.obj H5Tconv.obj H5Tcset.obj H5Tdbg.obj H5Tdeprec.obj H5Tenum.obj H5Tfields.obj H5Tfixed.obj H5Tfloat.obj H5Tnative.obj H5Toffset.obj H5Toh.obj H5Topaque.obj H5Torder.obj H5Tpad.obj H5Tprecis.obj H5Tstrpad.obj H5Tvisit.obj H5Tvlen.obj H5TS.obj H5VM.obj H5WB.obj H5Z.obj H5Zdeflate.obj H5Zfletcher32.obj H5Znbit.obj H5Zscaleoffset.obj H5Zshuffle.obj H5Zszip.obj H5Ztrans.obj H5Tinit.obj H5lib_settings.obj blosc_filter.obj jpeg_h5filter.obj -lszip -lzlib -lblosc -ljpeg -lws2_32 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o H5detect.exe -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ H5detect.obj -lnetapi32 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make -C ./hdf5_hlSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5TB.d ../H5TB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5PT.d ../H5PT.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTparse.d ../H5LTparse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTanalyze.d ../H5LTanalyze.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LT.d ../H5LT.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LD.d ../H5LD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../composite.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5IM.d ../H5IM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DS.d ../H5DS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DO.d ../H5DO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../compress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5DO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../confirm_access.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5DS.c -../H5DS.c: In function ‘H5DSset_label’: -../H5DS.c:1436:7: warning: ‘u.buf’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1436 | } u; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5IM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../constitute.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LT.c -In file included from /usr/include/string.h:495, - from ../H5LT.c:17: -In function ‘strncat’, - inlined from ‘realloc_and_append’ at ../H5LT.c:2296:4, - inlined from ‘indentation’ at ../H5LT.c:2337:16: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output may be truncated copying between 0 and 255 bytes from a string of length 255 [-Wstringop-truncation] - 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../decorate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LTanalyze.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../delegate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LTparse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../deprecate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5PT.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../describe.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5TB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -/usr/bin/ar -rc libhdf5_hl.a H5DO.o H5DS.o H5IM.o H5LD.o H5LT.o H5LTanalyze.o H5LTparse.o H5PT.o H5TB.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -/usr/bin/ranlib libhdf5_hl.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -g++ -o libhdf5_hl.so -shared -fPIC -Wl,-hlibhdf5_hl.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 H5DO.o H5DS.o H5IM.o H5LD.o H5LT.o H5LTanalyze.o H5LTparse.o H5PT.o H5TB.o -lhdf5 -lszip -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5TB.d -MT H5TB.obj ../H5TB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5PT.d -MT H5PT.obj ../H5PT.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTparse.d -MT H5LTparse.obj ../H5LTparse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTanalyze.d -MT H5LTanalyze.obj ../H5LTanalyze.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LT.d -MT H5LT.obj ../H5LT.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LD.d -MT H5LD.obj ../H5LD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5IM.d -MT H5IM.obj ../H5IM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DS.d -MT H5DS.obj ../H5DS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DO.d -MT H5DO.obj ../H5DO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5DO.obj -c ../H5DO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5DS.obj -c ../H5DS.c -../H5DS.c: In function ‘H5DSset_label’: -../H5DS.c:1436:7: warning: ‘u.buf’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1436 | } u; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../display.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5IM.obj -c ../H5IM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../draw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5LD.obj -c ../H5LD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5LT.obj -c ../H5LT.c -In file included from ../H5HLprivate2.h:24, - from ../H5LTprivate.h:18, - from ../H5LT.c:19: -In function ‘realloc_and_append’, - inlined from ‘indentation’ at ../H5LT.c:2337:16: -../../hdf5Src/H5private.h:1358:31: warning: ‘strncat’ output may be truncated copying between 0 and 255 bytes from a string of length 255 [-Wstringop-truncation] - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5LT.c:2296:4: note: in expansion of macro ‘HDstrncat’ - 2296 | HDstrncat(buf, str_to_add, size_str_to_add); - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5LTanalyze.obj -c ../H5LTanalyze.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../effect.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5LTparse.obj -c ../H5LTparse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../enhance.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5PT.obj -c ../H5PT.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../enum_strings.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../error.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5TB.obj -c ../H5TB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o hdf5_hl.dll -shared -Wl,--out-implib,libhdf5_hl.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ H5DO.obj H5DS.obj H5IM.obj H5LD.obj H5LT.obj H5LTanalyze.obj H5LTparse.obj H5PT.obj H5TB.obj -lhdf5 -lszip -lzlib -lws2_32 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make -C ./hdf5PluginSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5plugin.d ../jpeg_h5plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d ../../../supportApp/hdf5Src/jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_plugin.d ../blosc_plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d ../../../supportApp/hdf5Src/blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/hdf5Src/blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../blosc_plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/hdf5Src/jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jpeg_h5plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -g++ -o libHDF5_blosc_plugin.so -shared -fPIC -Wl,-hlibHDF5_blosc_plugin.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 blosc_filter.o blosc_plugin.o -lhdf5 -lblosc -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -g++ -o libHDF5_jpeg_plugin.so -shared -fPIC -Wl,-hlibHDF5_jpeg_plugin.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jpeg_h5filter.o jpeg_h5plugin.o -lhdf5 -ljpeg -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5plugin.d -MT jpeg_h5plugin.obj ../jpeg_h5plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d -MT jpeg_h5filter.obj ../../../supportApp/hdf5Src/jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_plugin.d -MT blosc_plugin.obj ../blosc_plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d -MT blosc_filter.obj ../../../supportApp/hdf5Src/blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosc_filter.obj -c ../../../supportApp/hdf5Src/blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosc_plugin.obj -c ../blosc_plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jpeg_h5filter.obj -c ../../../supportApp/hdf5Src/jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jpeg_h5plugin.obj -c ../jpeg_h5plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o HDF5_blosc_plugin.dll -shared -Wl,--out-implib,libHDF5_blosc_plugin.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ blosc_filter.obj blosc_plugin.obj -lhdf5 -lblosc -lws2_32 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o HDF5_jpeg_plugin.dll -shared -Wl,--out-implib,libHDF5_jpeg_plugin.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ jpeg_h5filter.obj jpeg_h5plugin.obj -lhdf5 -ljpeg -lws2_32 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make -C ./netCDFSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_initialize.d ../../../supportApp/netCDFSrc/liblib/nc_initialize.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF utf8proc.d ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutil.d ../../../supportApp/netCDFSrc/libdispatch/dutil.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dwinpath.d ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF doffsets.d ../../../supportApp/netCDFSrc/libdispatch/doffsets.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dauth.d ../../../supportApp/netCDFSrc/libdispatch/dauth.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF drc.d ../../../supportApp/netCDFSrc/libdispatch/drc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclistmgr.d ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc.d ../../../supportApp/netCDFSrc/libdispatch/nc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nctime.d ../../../supportApp/netCDFSrc/libdispatch/nctime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nchashmap.d ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncbytes.d ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclist.d ../../../supportApp/netCDFSrc/libdispatch/nclist.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncuri.d ../../../supportApp/netCDFSrc/libdispatch/ncuri.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dstring.d ../../../supportApp/netCDFSrc/libdispatch/dstring.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclog.d ../../../supportApp/netCDFSrc/libdispatch/nclog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutf8.d ../../../supportApp/netCDFSrc/libdispatch/dutf8.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddispatch.d ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dinternal.d ../../../supportApp/netCDFSrc/libdispatch/dinternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarinq.d ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarput.d ../../../supportApp/netCDFSrc/libdispatch/dvarput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarget.d ../../../supportApp/netCDFSrc/libdispatch/dvarget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvar.d ../../../supportApp/netCDFSrc/libdispatch/dvar.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF derror.d ../../../supportApp/netCDFSrc/libdispatch/derror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattget.d ../../../supportApp/netCDFSrc/libdispatch/dattget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattput.d ../../../supportApp/netCDFSrc/libdispatch/dattput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattinq.d ../../../supportApp/netCDFSrc/libdispatch/dattinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF datt.d ../../../supportApp/netCDFSrc/libdispatch/datt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddim.d ../../../supportApp/netCDFSrc/libdispatch/ddim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dfile.d ../../../supportApp/netCDFSrc/libdispatch/dfile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dcopy.d ../../../supportApp/netCDFSrc/libdispatch/dcopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dparallel.d ../../../supportApp/netCDFSrc/libdispatch/dparallel.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF posixio.d ../../../supportApp/netCDFSrc/libsrc/posixio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF memio.d ../../../supportApp/netCDFSrc/libsrc/memio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncio.d ../../../supportApp/netCDFSrc/libsrc/ncio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lookup3.d ../../../supportApp/netCDFSrc/libsrc/lookup3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_hashmap.d ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncx.d ../../../supportApp/netCDFSrc/libsrc/ncx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dim.d ../../../supportApp/netCDFSrc/libsrc/dim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF var.d ../../../supportApp/netCDFSrc/libsrc/var.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3internal.d ../../../supportApp/netCDFSrc/libsrc/nc3internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3dispatch.d ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF attr.d ../../../supportApp/netCDFSrc/libsrc/attr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF putget.d ../../../supportApp/netCDFSrc/libsrc/putget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF v1hpg.d ../../../supportApp/netCDFSrc/libsrc/v1hpg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/v1hpg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/putget.c -putget.m4: In function ‘putNCvx_char_char’: -putget.m4:754:15: warning: unused variable ‘fillp’ [-Wunused-variable] -At top level: -putget.m4:912:1: warning: ‘getNCvx_char_char’ defined but not used [-Wunused-function] -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/attr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/nc3internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/var.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/dim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/ncx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../export.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../floats.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/lookup3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/ncio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/memio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../fx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/posixio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dparallel.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../gem.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dcopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../gradient.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dfile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../hclut.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ddim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/datt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dattinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dattput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dattget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/derror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvar.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../image.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvarget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvarput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dinternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dutf8.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nclog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dstring.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ncuri.c -In file included from /usr/include/string.h:495, - from ../../../supportApp/netCDFSrc/libdispatch/ncuri.c:8: -In function ‘strncpy’, - inlined from ‘ncuriparse’ at ../../../supportApp/netCDFSrc/libdispatch/ncuri.c:153:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/ncuri.c: In function ‘ncuriparse’: -../../../supportApp/netCDFSrc/libdispatch/ncuri.c:137:12: note: length computed here - 137 | len0 = strlen(uri0); - | ^~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nclist.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nctime.c -../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdParseRelunits’: -../../../supportApp/netCDFSrc/libdispatch/nctime.c:384:25: warning: ‘%s’ directive writing up to 47 bytes into a region of size between 0 and 47 [-Wformat-overflow=] - 384 | sprintf(basetime,"%s %s",basetime_1,basetime_2); - | ^~ ~~~~~~~~~~ -In file included from /usr/include/stdio.h:867, - from ../../../supportApp/netCDFSrc/libdispatch/nctime.c:20: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output between 2 and 96 bytes into a destination of size 48 - 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 37 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdComp2Rel.constprop’: -../../../supportApp/netCDFSrc/libdispatch/nctime.c:877:15: warning: ‘ndel’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 877 | *reltime = (double)ndel; - | ^~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c:871:19: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 871 | *reltime = delta/168.0; - | ~~~~~^~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdRel2Comp’: -../../../supportApp/netCDFSrc/libdispatch/nctime.c:1073:3: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1073 | Cde2h(base_etm+delta, old_timetype, 1970, &humantime); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdRel2Iso’: -../../../supportApp/netCDFSrc/libdispatch/nctime.c:1073:3: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1073 | Cde2h(base_etm+delta, old_timetype, 1970, &humantime); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c:983:9: note: ‘delta’ was declared here - 983 | double delta; - | ^~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/drc.c -In file included from /usr/include/string.h:495, - from ../../../supportApp/netCDFSrc/libdispatch/drc.c:15: -In function ‘strncpy’, - inlined from ‘rcsearch’ at ../../../supportApp/netCDFSrc/libdispatch/drc.c:403:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/drc.c: In function ‘rcsearch’: -../../../supportApp/netCDFSrc/libdispatch/drc.c:396:16: note: length computed here - 396 | int plen = strlen(prefix); - | ^~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dauth.c -In file included from /usr/include/string.h:495, - from ../../../supportApp/netCDFSrc/libdispatch/dauth.c:10: -In function ‘strncpy’, - inlined from ‘NC_combinehostport’ at ../../../supportApp/netCDFSrc/libdispatch/dauth.c:82:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/doffsets.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dutil.c -In file included from /usr/include/string.h:495, - from ../../../supportApp/netCDFSrc/libdispatch/dutil.c:8: -In function ‘strncpy’, - inlined from ‘NC_mktmp’ at ../../../supportApp/netCDFSrc/libdispatch/dutil.c:210:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 4096 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../import.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../list.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../locale.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/liblib/nc_initialize.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../test_big_classic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../log.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -/usr/bin/ar -rc libnetCDF.a v1hpg.o putget.o attr.o nc3dispatch.o nc3internal.o var.o dim.o ncx.o nc_hashmap.o lookup3.o ncio.o memio.o posixio.o dparallel.o dcopy.o dfile.o ddim.o datt.o dattinq.o dattput.o dattget.o derror.o dvar.o dvarget.o dvarput.o dvarinq.o dinternal.o ddispatch.o dutf8.o nclog.o dstring.o ncuri.o nclist.o ncbytes.o nchashmap.o nctime.o nc.o nclistmgr.o drc.o dauth.o doffsets.o dwinpath.o dutil.o utf8proc.o nc_initialize.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -/usr/bin/ranlib libnetCDF.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -g++ -o libnetCDF.so -shared -fPIC -Wl,-hlibnetCDF.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 v1hpg.o putget.o attr.o nc3dispatch.o nc3internal.o var.o dim.o ncx.o nc_hashmap.o lookup3.o ncio.o memio.o posixio.o dparallel.o dcopy.o dfile.o ddim.o datt.o dattinq.o dattput.o dattget.o derror.o dvar.o dvarget.o dvarput.o dvarinq.o dinternal.o ddispatch.o dutf8.o nclog.o dstring.o ncuri.o nclist.o ncbytes.o nchashmap.o nctime.o nc.o nclistmgr.o drc.o dauth.o doffsets.o dwinpath.o dutil.o utf8proc.o nc_initialize.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../magic.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -g++ -o test_big_classic -Wl,-Bstatic -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 test_big_classic.o -lnetCDF -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_initialize.d -MT nc_initialize.obj ../../../supportApp/netCDFSrc/liblib/nc_initialize.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF utf8proc.d -MT utf8proc.obj ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../magick.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutil.d -MT dutil.obj ../../../supportApp/netCDFSrc/libdispatch/dutil.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dwinpath.d -MT dwinpath.obj ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF doffsets.d -MT doffsets.obj ../../../supportApp/netCDFSrc/libdispatch/doffsets.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dauth.d -MT dauth.obj ../../../supportApp/netCDFSrc/libdispatch/dauth.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF drc.d -MT drc.obj ../../../supportApp/netCDFSrc/libdispatch/drc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclistmgr.d -MT nclistmgr.obj ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc.d -MT nc.obj ../../../supportApp/netCDFSrc/libdispatch/nc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nctime.d -MT nctime.obj ../../../supportApp/netCDFSrc/libdispatch/nctime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../magick_endian.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nchashmap.d -MT nchashmap.obj ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncbytes.d -MT ncbytes.obj ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclist.d -MT nclist.obj ../../../supportApp/netCDFSrc/libdispatch/nclist.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncuri.d -MT ncuri.obj ../../../supportApp/netCDFSrc/libdispatch/ncuri.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dstring.d -MT dstring.obj ../../../supportApp/netCDFSrc/libdispatch/dstring.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclog.d -MT nclog.obj ../../../supportApp/netCDFSrc/libdispatch/nclog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutf8.d -MT dutf8.obj ../../../supportApp/netCDFSrc/libdispatch/dutf8.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddispatch.d -MT ddispatch.obj ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dinternal.d -MT dinternal.obj ../../../supportApp/netCDFSrc/libdispatch/dinternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarinq.d -MT dvarinq.obj ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarput.d -MT dvarput.obj ../../../supportApp/netCDFSrc/libdispatch/dvarput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarget.d -MT dvarget.obj ../../../supportApp/netCDFSrc/libdispatch/dvarget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvar.d -MT dvar.obj ../../../supportApp/netCDFSrc/libdispatch/dvar.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../map.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF derror.d -MT derror.obj ../../../supportApp/netCDFSrc/libdispatch/derror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattget.d -MT dattget.obj ../../../supportApp/netCDFSrc/libdispatch/dattget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattput.d -MT dattput.obj ../../../supportApp/netCDFSrc/libdispatch/dattput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattinq.d -MT dattinq.obj ../../../supportApp/netCDFSrc/libdispatch/dattinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF datt.d -MT datt.obj ../../../supportApp/netCDFSrc/libdispatch/datt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddim.d -MT ddim.obj ../../../supportApp/netCDFSrc/libdispatch/ddim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../memory.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dfile.d -MT dfile.obj ../../../supportApp/netCDFSrc/libdispatch/dfile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dcopy.d -MT dcopy.obj ../../../supportApp/netCDFSrc/libdispatch/dcopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dparallel.d -MT dparallel.obj ../../../supportApp/netCDFSrc/libdispatch/dparallel.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../module.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../monitor.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF posixio.d -MT posixio.obj ../../../supportApp/netCDFSrc/libsrc/posixio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../montage.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../nt_base.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../nt_feature.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF memio.d -MT memio.obj ../../../supportApp/netCDFSrc/libsrc/memio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncio.d -MT ncio.obj ../../../supportApp/netCDFSrc/libsrc/ncio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lookup3.d -MT lookup3.obj ../../../supportApp/netCDFSrc/libsrc/lookup3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_hashmap.d -MT nc_hashmap.obj ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../omp_data_view.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncx.d -MT ncx.obj ../../../supportApp/netCDFSrc/libsrc/ncx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dim.d -MT dim.obj ../../../supportApp/netCDFSrc/libsrc/dim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF var.d -MT var.obj ../../../supportApp/netCDFSrc/libsrc/var.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3internal.d -MT nc3internal.obj ../../../supportApp/netCDFSrc/libsrc/nc3internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3dispatch.d -MT nc3dispatch.obj ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF attr.d -MT attr.obj ../../../supportApp/netCDFSrc/libsrc/attr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF putget.d -MT putget.obj ../../../supportApp/netCDFSrc/libsrc/putget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF v1hpg.d -MT v1hpg.obj ../../../supportApp/netCDFSrc/libsrc/v1hpg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o v1hpg.obj -c ../../../supportApp/netCDFSrc/libsrc/v1hpg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../operator.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../paint.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../pixel_cache.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../pixel_iterator.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../plasma.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../PreRvIcccm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o putget.obj -c ../../../supportApp/netCDFSrc/libsrc/putget.c -putget.m4: In function ‘putNCvx_char_char’: -putget.m4:754:15: warning: unused variable ‘fillp’ [-Wunused-variable] -At top level: -putget.m4:912:1: warning: ‘getNCvx_char_char’ defined but not used [-Wunused-function] -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../profile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o attr.obj -c ../../../supportApp/netCDFSrc/libsrc/attr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc3dispatch.obj -c ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc3internal.obj -c ../../../supportApp/netCDFSrc/libsrc/nc3internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../quantize.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../random.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o var.obj -c ../../../supportApp/netCDFSrc/libsrc/var.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../registry.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dim.obj -c ../../../supportApp/netCDFSrc/libsrc/dim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../render.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ncx.obj -c ../../../supportApp/netCDFSrc/libsrc/ncx.c -ncx.m4: In function ‘ncx_put_off_t’: -ncx.m4:2299:51: warning: right shift count >= width of type [-Wshift-count-overflow] -ncx.m4: In function ‘ncx_get_off_t’: -ncx.m4:2356:26: warning: left shift count >= width of type [-Wshift-count-overflow] -ncx.m4:2357:26: warning: left shift count >= width of type [-Wshift-count-overflow] -ncx.m4:2358:26: warning: left shift count >= width of type [-Wshift-count-overflow] -ncx.m4:2359:26: warning: left shift count >= width of type [-Wshift-count-overflow] -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc_hashmap.obj -c ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o lookup3.obj -c ../../../supportApp/netCDFSrc/libsrc/lookup3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ncio.obj -c ../../../supportApp/netCDFSrc/libsrc/ncio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../resize.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../resource.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o memio.obj -c ../../../supportApp/netCDFSrc/libsrc/memio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../segment.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../semaphore.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o posixio.obj -c ../../../supportApp/netCDFSrc/libsrc/posixio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dparallel.obj -c ../../../supportApp/netCDFSrc/libdispatch/dparallel.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../shear.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dcopy.obj -c ../../../supportApp/netCDFSrc/libdispatch/dcopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../signature.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dfile.obj -c ../../../supportApp/netCDFSrc/libdispatch/dfile.c -../../../supportApp/netCDFSrc/libdispatch/dfile.c: In function ‘nc__pseudofd’: -../../../supportApp/netCDFSrc/libdispatch/dfile.c:2172:13: warning: unused variable ‘maxfd’ [-Wunused-variable] - 2172 | int maxfd = 32767; /* default */ - | ^~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../statistics.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ddim.obj -c ../../../supportApp/netCDFSrc/libdispatch/ddim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o datt.obj -c ../../../supportApp/netCDFSrc/libdispatch/datt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dattinq.obj -c ../../../supportApp/netCDFSrc/libdispatch/dattinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../tempfile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dattput.obj -c ../../../supportApp/netCDFSrc/libdispatch/dattput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dattget.obj -c ../../../supportApp/netCDFSrc/libdispatch/dattget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../texture.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o derror.obj -c ../../../supportApp/netCDFSrc/libdispatch/derror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dvar.obj -c ../../../supportApp/netCDFSrc/libdispatch/dvar.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../timer.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../transform.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dvarget.obj -c ../../../supportApp/netCDFSrc/libdispatch/dvarget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../tsd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../type.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../unix_port.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dvarput.obj -c ../../../supportApp/netCDFSrc/libdispatch/dvarput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dvarinq.obj -c ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dinternal.obj -c ../../../supportApp/netCDFSrc/libdispatch/dinternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ddispatch.obj -c ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dutf8.obj -c ../../../supportApp/netCDFSrc/libdispatch/dutf8.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nclog.obj -c ../../../supportApp/netCDFSrc/libdispatch/nclog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dstring.obj -c ../../../supportApp/netCDFSrc/libdispatch/dstring.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ncuri.obj -c ../../../supportApp/netCDFSrc/libdispatch/ncuri.c -../../../supportApp/netCDFSrc/libdispatch/ncuri.c: In function ‘ncuriparse’: -../../../supportApp/netCDFSrc/libdispatch/ncuri.c:153:5: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 153 | strncpy(uri,uri0,len0+1); - | ^~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/ncuri.c:137:12: note: length computed here - 137 | len0 = strlen(uri0); - | ^~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nclist.obj -c ../../../supportApp/netCDFSrc/libdispatch/nclist.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ncbytes.obj -c ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../utility.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nchashmap.obj -c ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c -../../../supportApp/netCDFSrc/libdispatch/nchashmap.c: In function ‘printhstring’: -../../../supportApp/netCDFSrc/libdispatch/nchashmap.c:1948:37: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1948 | fprintf(stderr,"%lx %ld |%s|\n",(unsigned long)s,(unsigned long)n,ss); - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../version.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nctime.obj -c ../../../supportApp/netCDFSrc/libdispatch/nctime.c -../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdParseRelunits’: -../../../supportApp/netCDFSrc/libdispatch/nctime.c:384:25: warning: ‘%s’ directive writing up to 47 bytes into a region of size between 0 and 47 [-Wformat-overflow=] - 384 | sprintf(basetime,"%s %s",basetime_1,basetime_2); - | ^~ ~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c:384:4: note: ‘sprintf’ output between 2 and 96 bytes into a destination of size 48 - 384 | sprintf(basetime,"%s %s",basetime_1,basetime_2); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdComp2Rel.constprop’: -../../../supportApp/netCDFSrc/libdispatch/nctime.c:877:15: warning: ‘ndel’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 877 | *reltime = (double)ndel; - | ^~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c:871:19: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 871 | *reltime = delta/168.0; - | ~~~~~^~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdRel2Comp’: -../../../supportApp/netCDFSrc/libdispatch/nctime.c:1073:3: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1073 | Cde2h(base_etm+delta, old_timetype, 1970, &humantime); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc.obj -c ../../../supportApp/netCDFSrc/libdispatch/nc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nclistmgr.obj -c ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o drc.obj -c ../../../supportApp/netCDFSrc/libdispatch/drc.c -../../../supportApp/netCDFSrc/libdispatch/drc.c: In function ‘rcsearch’: -../../../supportApp/netCDFSrc/libdispatch/drc.c:403:5: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 403 | strncpy(path,prefix,pathlen); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/drc.c:396:16: note: length computed here - 396 | int plen = strlen(prefix); - | ^~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dauth.obj -c ../../../supportApp/netCDFSrc/libdispatch/dauth.c -../../../supportApp/netCDFSrc/libdispatch/dauth.c: In function ‘NC_combinehostport’: -../../../supportApp/netCDFSrc/libdispatch/dauth.c:82:5: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 82 | strncpy(hp,host,len); - | ^~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o doffsets.obj -c ../../../supportApp/netCDFSrc/libdispatch/doffsets.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dwinpath.obj -c ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dutil.obj -c ../../../supportApp/netCDFSrc/libdispatch/dutil.c -../../../supportApp/netCDFSrc/libdispatch/dutil.c: In function ‘NC_mktmp’: -../../../supportApp/netCDFSrc/libdispatch/dutil.c:210:5: warning: ‘strncpy’ specified bound 4096 equals destination size [-Wstringop-truncation] - 210 | strncpy(tmp,cvtpath,sizeof(tmp)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o utf8proc.obj -c ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc_initialize.obj -c ../../../supportApp/netCDFSrc/liblib/nc_initialize.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o test_big_classic.obj -c ../test_big_classic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o netCDF.dll -shared -Wl,--out-implib,libnetCDF.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ v1hpg.obj putget.obj attr.obj nc3dispatch.obj nc3internal.obj var.obj dim.obj ncx.obj nc_hashmap.obj lookup3.obj ncio.obj memio.obj posixio.obj dparallel.obj dcopy.obj dfile.obj ddim.obj datt.obj dattinq.obj dattput.obj dattget.obj derror.obj dvar.obj dvarget.obj dvarput.obj dvarinq.obj dinternal.obj ddispatch.obj dutf8.obj nclog.obj dstring.obj ncuri.obj nclist.obj ncbytes.obj nchashmap.obj nctime.obj nc.obj nclistmgr.obj drc.obj dauth.obj doffsets.obj dwinpath.obj dutil.obj utf8proc.obj nc_initialize.obj -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o test_big_classic.exe -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ test_big_classic.obj -lnetCDF -lnetapi32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../widget.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../analyze_Linux.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make -C ./nexusSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF stptok.d ../stptok.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxxml.d ../nxxml.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxstack.d ../nxstack.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxio.d ../nxio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxdataset.d ../nxdataset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napiu.d ../napiu.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi5.d ../napi5.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi.d ../napi.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../napi.c -In file included from /usr/include/string.h:495, - from ../napi.c:29: -In function ‘strncpy’, - inlined from ‘nxigetdata_’ at ../napi.c:1252:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi.c: In function ‘nxigetdata_’: -../napi.c:1252:3: note: length computed here - 1252 | strncpy((char *)data, pPtr2, strlen(pPtr2)); /* not NULL terminated by default */ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../xwindow.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -/usr/bin/ar -rc libMagick.a animate.o annotate.o attribute.o average.o bit_stream.o blob.o cdl.o channel.o color.o colormap.o colorspace.o color_lookup.o command.o compare.o composite.o compress.o confirm_access.o constitute.o decorate.o delegate.o deprecate.o describe.o display.o draw.o effect.o enhance.o enum_strings.o error.o export.o floats.o fx.o gem.o gradient.o hclut.o image.o import.o list.o locale.o log.o magic.o magick.o magick_endian.o map.o memory.o module.o monitor.o montage.o nt_base.o nt_feature.o omp_data_view.o operator.o paint.o pixel_cache.o pixel_iterator.o plasma.o PreRvIcccm.o profile.o quantize.o random.o registry.o render.o resize.o resource.o segment.o semaphore.o shear.o signature.o statistics.o tempfile.o texture.o timer.o transform.o tsd.o type.o unix_port.o utility.o version.o widget.o xwindow.o analyze_Linux.o -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -/usr/bin/ranlib libMagick.a -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -g++ -o libMagick.so -shared -fPIC -Wl,-hlibMagick.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 animate.o annotate.o attribute.o average.o bit_stream.o blob.o cdl.o channel.o color.o colormap.o colorspace.o color_lookup.o command.o compare.o composite.o compress.o confirm_access.o constitute.o decorate.o delegate.o deprecate.o describe.o display.o draw.o effect.o enhance.o enum_strings.o error.o export.o floats.o fx.o gem.o gradient.o hclut.o image.o import.o list.o locale.o log.o magic.o magick.o magick_endian.o map.o memory.o module.o monitor.o montage.o nt_base.o nt_feature.o omp_data_view.o operator.o paint.o pixel_cache.o pixel_iterator.o plasma.o PreRvIcccm.o profile.o quantize.o random.o registry.o render.o resize.o resource.o segment.o semaphore.o shear.o signature.o statistics.o tempfile.o texture.o timer.o transform.o tsd.o type.o unix_port.o utility.o version.o widget.o xwindow.o analyze_Linux.o -lbzlib -llcms -lttf -lzlib -Wl,-Bdynamic -lXext -lpthread -lm -lrt -ldl -lgcc -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ - T_A=windows-x64-mingw install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF analyze_Win32.d -MT analyze_Win32.obj ../analyze_Win32.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../napi5.c -../napi5.c: In function ‘NX5makegroup’: -../napi5.c:506:8: warning: variable ‘iRet’ set but not used [-Wunused-but-set-variable] - 506 | hid_t iRet; - | ^~~~ -../napi5.c: In function ‘NX5getinfo64’: -../napi5.c:1919:31: warning: unused variable ‘vlen_bytes’ [-Wunused-variable] - 1919 | hsize_t myDim[H5S_MAX_RANK], vlen_bytes = 0, total_dims_size = 1; - | ^~~~~~~~~~ -../napi5.c: In function ‘NX5compmakedata64’: -../napi5.c:879:5: warning: ‘dID’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 879 | if (dID < 0) { - | ^ -In file included from /usr/include/string.h:495, - from ../napi5.c:34: -In function ‘strncpy’, - inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, - inlined from ‘NX5getgroupinfo’ at ../napi5.c:1555:4: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5makegroup’: -../napi5.c:516:29: warning: ‘%s’ directive output may be truncated writing up to 1023 bytes into a region of size 1022 [-Wformat-truncation=] - 516 | snprintf(pBuffer, 1023, "/%s/%s", pFile->name_ref, name); - | ^~ -In file included from /usr/include/stdio.h:867, - from ../../../include/os/Linux/H5Epublic.h:20, - from ../../../include/os/Linux/hdf5.h:26, - from ../napi5.h:9, - from ../napi5.c:39: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output 3 or more bytes (assuming 1026) into a destination of size 1023 - 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 68 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5opengroup’: -../napi5.c:571:26: warning: ‘__builtin___sprintf_chk’ may write a terminating nul past the end of the destination [-Wformat-overflow=] - 571 | sprintf(pBuffer, "%s/%s", pFile->name_tmp, name); - | ^ -In file included from /usr/include/stdio.h:867, - from ../../../include/os/Linux/H5Epublic.h:20, - from ../../../include/os/Linux/hdf5.h:26, - from ../napi5.h:9, - from ../napi5.c:39: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output 2 or more bytes (assuming 1025) into a destination of size 1024 - 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 37 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c:575:34: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 1011 [-Wformat-overflow=] - 575 | sprintf(pBuffer, "ERROR: group %s does not exist", - | ^~ -In file included from /usr/include/stdio.h:867, - from ../../../include/os/Linux/H5Epublic.h:20, - from ../../../include/os/Linux/hdf5.h:26, - from ../napi5.h:9, - from ../napi5.c:39: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output between 29 and 1052 bytes into a destination of size 1024 - 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 37 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from ../napi5.c:34: -In function ‘strncpy’, - inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, - inlined from ‘NX5opengroup’ at ../napi5.c:611:10: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘NX5getattra’ at ../napi5.c:2540:4: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5getattra’: -../napi5.c:2540:4: note: length computed here - 2540 | strncpy(data, strdata, strlen(strdata)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from ../napi5.c:34: -In function ‘strncpy’, - inlined from ‘NX5getdata’ at ../napi5.c:1859:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5getdata’: -../napi5.c:1859:5: note: length computed here - 1859 | strncpy(data, strdata, strlen(strdata)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5getnextentry’: -../napi5.c:1766:20: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 243 [-Wformat-overflow=] - 1766 | "ERROR: group %s does not exist", - | ^~ - 1767 | ph_name); - | ~~~~~~~ -In file included from /usr/include/stdio.h:867, - from ../../../include/os/Linux/H5Epublic.h:20, - from ../../../include/os/Linux/hdf5.h:26, - from ../napi5.h:9, - from ../napi5.c:39: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output between 29 and 1052 bytes into a destination of size 256 - 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 37 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from ../napi5.c:34: -In function ‘strncpy’, - inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, - inlined from ‘NX5getnextentry’ at ../napi5.c:1781:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, - inlined from ‘NX5getgroupinfo_recurse’ at ../napi5.c:1496:4: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF xwindow.d -MT xwindow.obj ../xwindow.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../napiu.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF widget.d -MT widget.obj ../widget.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxdataset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxstack.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF version.d -MT version.obj ../version.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxxml.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../stptok.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF utility.d -MT utility.obj ../utility.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -/usr/bin/ar -rc libNeXus.a napi.o napi5.o napiu.o nxdataset.o nxio.o nxstack.o nxxml.o stptok.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -/usr/bin/ranlib libNeXus.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -g++ -o libNeXus.so -shared -fPIC -Wl,-hlibNeXus.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 napi.o napi5.o napiu.o nxdataset.o nxio.o nxstack.o nxxml.o stptok.o -lhdf5 -lszip -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF unix_port.d -MT unix_port.obj ../unix_port.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF stptok.d -MT stptok.obj ../stptok.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxxml.d -MT nxxml.obj ../nxxml.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxstack.d -MT nxstack.obj ../nxstack.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxio.d -MT nxio.obj ../nxio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type.d -MT type.obj ../type.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tsd.d -MT tsd.obj ../tsd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF transform.d -MT transform.obj ../transform.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxdataset.d -MT nxdataset.obj ../nxdataset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napiu.d -MT napiu.obj ../napiu.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi5.d -MT napi5.obj ../napi5.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF timer.d -MT timer.obj ../timer.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF texture.d -MT texture.obj ../texture.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tempfile.d -MT tempfile.obj ../tempfile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi.d -MT napi.obj ../napi.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF statistics.d -MT statistics.obj ../statistics.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF signature.d -MT signature.obj ../signature.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF shear.d -MT shear.obj ../shear.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF semaphore.d -MT semaphore.obj ../semaphore.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF segment.d -MT segment.obj ../segment.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resource.d -MT resource.obj ../resource.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resize.d -MT resize.obj ../resize.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF render.d -MT render.obj ../render.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF registry.d -MT registry.obj ../registry.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF random.d -MT random.obj ../random.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF quantize.d -MT quantize.obj ../quantize.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF profile.d -MT profile.obj ../profile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF PreRvIcccm.d -MT PreRvIcccm.obj ../PreRvIcccm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o napi.obj -c ../napi.c -../napi.c: In function ‘nxigetdata_’: -../napi.c:1252:3: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1252 | strncpy((char *)data, pPtr2, strlen(pPtr2)); /* not NULL terminated by default */ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF plasma.d -MT plasma.obj ../plasma.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_iterator.d -MT pixel_iterator.obj ../pixel_iterator.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_cache.d -MT pixel_cache.obj ../pixel_cache.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF paint.d -MT paint.obj ../paint.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF operator.d -MT operator.obj ../operator.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o napi5.obj -c ../napi5.c -../napi5.c: In function ‘NX5makegroup’: -../napi5.c:506:8: warning: variable ‘iRet’ set but not used [-Wunused-but-set-variable] - 506 | hid_t iRet; - | ^~~~ -../napi5.c: In function ‘NX5getinfo64’: -../napi5.c:1919:31: warning: unused variable ‘vlen_bytes’ [-Wunused-variable] - 1919 | hsize_t myDim[H5S_MAX_RANK], vlen_bytes = 0, total_dims_size = 1; - | ^~~~~~~~~~ -../napi5.c: In function ‘NX5compmakedata64’: -../napi5.c:879:5: warning: ‘dID’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 879 | if (dID < 0) { - | ^ -In function ‘readStringAttributeN’, - inlined from ‘NX5getgroupinfo’ at ../napi5.c:1555:4: -../napi5.c:171:3: warning: ‘strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] - 171 | strncpy(data, vdat, maxlen); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5opengroup’: -../napi5.c:571:26: warning: ‘sprintf’ may write a terminating nul past the end of the destination [-Wformat-overflow=] - 571 | sprintf(pBuffer, "%s/%s", pFile->name_tmp, name); - | ^ -../napi5.c:571:3: note: ‘sprintf’ output 2 or more bytes (assuming 1025) into a destination of size 1024 - 571 | sprintf(pBuffer, "%s/%s", pFile->name_tmp, name); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c:575:34: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 1011 [-Wformat-overflow=] - 575 | sprintf(pBuffer, "ERROR: group %s does not exist", - | ^~ -../napi5.c:575:3: note: ‘sprintf’ output between 29 and 1052 bytes into a destination of size 1024 - 575 | sprintf(pBuffer, "ERROR: group %s does not exist", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 576 | pFile->name_tmp); - | ~~~~~~~~~~~~~~~~ -In function ‘readStringAttributeN’, - inlined from ‘NX5opengroup’ at ../napi5.c:611:10: -../napi5.c:171:3: warning: ‘strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] - 171 | strncpy(data, vdat, maxlen); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5getattra’: -../napi5.c:2540:4: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 2540 | strncpy(data, strdata, strlen(strdata)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5getdata’: -../napi5.c:1859:5: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1859 | strncpy(data, strdata, strlen(strdata)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5getnextentry’: -../napi5.c:1766:20: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 243 [-Wformat-overflow=] - 1766 | "ERROR: group %s does not exist", - | ^~ - 1767 | ph_name); - | ~~~~~~~ -../napi5.c:1765:5: note: ‘sprintf’ output between 29 and 1052 bytes into a destination of size 256 - 1765 | sprintf(pBuffer, - | ^~~~~~~~~~~~~~~~ - 1766 | "ERROR: group %s does not exist", - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 1767 | ph_name); - | ~~~~~~~~ -In function ‘readStringAttributeN’, - inlined from ‘NX5getnextentry’ at ../napi5.c:1781:9: -../napi5.c:171:3: warning: ‘strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] - 171 | strncpy(data, vdat, maxlen); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘readStringAttributeN’, - inlined from ‘NX5getgroupinfo_recurse’ at ../napi5.c:1496:4: -../napi5.c:171:3: warning: ‘strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] - 171 | strncpy(data, vdat, maxlen); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o napiu.obj -c ../napiu.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF omp_data_view.d -MT omp_data_view.obj ../omp_data_view.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_feature.d -MT nt_feature.obj ../nt_feature.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_base.d -MT nt_base.obj ../nt_base.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF montage.d -MT montage.obj ../montage.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF monitor.d -MT monitor.obj ../monitor.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF module.d -MT module.obj ../module.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF memory.d -MT memory.obj ../memory.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nxdataset.obj -c ../nxdataset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nxio.obj -c ../nxio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF map.d -MT map.obj ../map.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nxstack.obj -c ../nxstack.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nxxml.obj -c ../nxxml.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o stptok.obj -c ../stptok.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick_endian.d -MT magick_endian.obj ../magick_endian.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o NeXus.dll -shared -Wl,--out-implib,libNeXus.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ napi.obj napi5.obj napiu.obj nxdataset.obj nxio.obj nxstack.obj nxxml.obj stptok.obj -lhdf5 -lszip -lzlib -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick.d -MT magick.obj ../magick.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magic.d -MT magic.obj ../magic.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF log.d -MT log.obj ../log.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF locale.d -MT locale.obj ../locale.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF list.d -MT list.obj ../list.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF import.d -MT import.obj ../import.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF image.d -MT image.obj ../image.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF hclut.d -MT hclut.obj ../hclut.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gradient.d -MT gradient.obj ../gradient.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gem.d -MT gem.obj ../gem.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fx.d -MT fx.obj ../fx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF floats.d -MT floats.obj ../floats.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF export.d -MT export.obj ../export.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF error.d -MT error.obj ../error.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enum_strings.d -MT enum_strings.obj ../enum_strings.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enhance.d -MT enhance.obj ../enhance.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF effect.d -MT effect.obj ../effect.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF draw.d -MT draw.obj ../draw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF display.d -MT display.obj ../display.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF describe.d -MT describe.obj ../describe.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF deprecate.d -MT deprecate.obj ../deprecate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF delegate.d -MT delegate.obj ../delegate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF decorate.d -MT decorate.obj ../decorate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF constitute.d -MT constitute.obj ../constitute.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF confirm_access.d -MT confirm_access.obj ../confirm_access.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compress.d -MT compress.obj ../compress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF composite.d -MT composite.obj ../composite.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compare.d -MT compare.obj ../compare.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF command.d -MT command.obj ../command.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color_lookup.d -MT color_lookup.obj ../color_lookup.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colorspace.d -MT colorspace.obj ../colorspace.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colormap.d -MT colormap.obj ../colormap.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color.d -MT color.obj ../color.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF channel.d -MT channel.obj ../channel.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cdl.d -MT cdl.obj ../cdl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF blob.d -MT blob.obj ../blob.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bit_stream.d -MT bit_stream.obj ../bit_stream.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF average.d -MT average.obj ../average.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF attribute.d -MT attribute.obj ../attribute.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF annotate.d -MT annotate.obj ../annotate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF animate.d -MT animate.obj ../animate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o animate.obj -c ../animate.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../animate.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o annotate.obj -c ../annotate.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../annotate.c:41: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, - from ../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, - from ../annotate.c:64: -../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] - 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ - | -../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] - 310 | # pragma warning( disable : 4018 ) - | -../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] - 311 | # pragma warning( disable : 4244 ) - | -../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] - 312 | # pragma warning( disable : 4142 ) - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o attribute.obj -c ../attribute.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../attribute.c:40: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o average.obj -c ../average.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../average.c:17: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o bit_stream.obj -c ../bit_stream.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../bit_stream.c:13: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o cdl.obj -c ../cdl.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../cdl.c:14: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o blob.obj -c ../blob.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../blob.c:40: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../blob.c:64: -/builds/DATAnet/adurl/.cache/adsupport-master/include/bzlib.h:81:14: note: #pragma message: BZIP compiling as DLL import - 81 | # pragma message( "BZIP compiling as DLL import" ) - | ^~~~~~~ -../blob.c: In function ‘GmBlobReserveSize’: -../blob.c:502:27: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 502 | "Request to reserve %" MAGICK_OFF_F "u output bytes %s", - | ^~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../blob.c:40: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../blob.c:502:27: warning: format ‘%s’ expects argument of type ‘char *’, but argument 6 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] - 502 | "Request to reserve %" MAGICK_OFF_F "u output bytes %s", - | ^~~~~~~~~~~~~~~~~~~~~~ - 503 | size, - | ~~~~ - | | - | magick_off_t {aka long long int} -../blob.c:502:80: note: format string is defined here - 502 | "Request to reserve %" MAGICK_OFF_F "u output bytes %s", - | ~^ - | | - | char * - | %I64d -../blob.c:502:27: warning: too many arguments for format [-Wformat-extra-args] - 502 | "Request to reserve %" MAGICK_OFF_F "u output bytes %s", - | ^~~~~~~~~~~~~~~~~~~~~~ -../blob.c: In function ‘GmMapBlob’: -../blob.c:2337:8: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2337 | "Failed to mmap fd %d using %s mode at offset %" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../blob.c:40: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../blob.c:2337:8: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2337 | "Failed to mmap fd %d using %s mode at offset %" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../blob.c:40: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../blob.c:2337:8: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] - 2337 | "Failed to mmap fd %d using %s mode at offset %" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 2338 | MAGICK_OFF_F "u and length %" MAGICK_OFF_F - 2339 | "u (%d=\"%s\").",file,MapModeToString(mode),offset, - | ~~~~~~ - | | - | magick_off_t {aka long long int} -../blob.c:2339:13: note: format string is defined here - 2339 | "u (%d=\"%s\").",file,MapModeToString(mode),offset, - | ~^ - | | - | int - | %I64d -../blob.c:2337:8: warning: format ‘%s’ expects argument of type ‘char *’, but argument 9 has type ‘long long int’ [-Wformat=] - 2337 | "Failed to mmap fd %d using %s mode at offset %" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -...... - 2340 | (magick_off_t) length,errno,strerror(errno)); - | ~~~~~~~~~~~~~~~~~~~~~ - | | - | long long int -../blob.c:2339:18: note: format string is defined here - 2339 | "u (%d=\"%s\").",file,MapModeToString(mode),offset, - | ~^ - | | - | char * - | %I64d -../blob.c:2337:8: warning: too many arguments for format [-Wformat-extra-args] - 2337 | "Failed to mmap fd %d using %s mode at offset %" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../blob.c:2344:4: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2344 | "Mmapped fd %d using %s mode at offset %" MAGICK_OFF_F - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../blob.c:40: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../blob.c:2344:4: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2344 | "Mmapped fd %d using %s mode at offset %" MAGICK_OFF_F - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../blob.c:40: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../blob.c:2344:4: warning: format ‘%p’ expects argument of type ‘void *’, but argument 8 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] - 2344 | "Mmapped fd %d using %s mode at offset %" MAGICK_OFF_F - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 2345 | "u and length %" MAGICK_OFF_F "u to address %p", - 2346 | file,MapModeToString(mode),offset,(magick_off_t) length, - | ~~~~~~ - | | - | magick_off_t {aka long long int} -../blob.c:2345:49: note: format string is defined here - 2345 | "u and length %" MAGICK_OFF_F "u to address %p", - | ~^ - | | - | void * - | %I64d -../blob.c:2344:4: warning: too many arguments for format [-Wformat-extra-args] - 2344 | "Mmapped fd %d using %s mode at offset %" MAGICK_OFF_F - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o color.obj -c ../color.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../color.c:36: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o channel.obj -c ../channel.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../channel.c:37: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o colormap.obj -c ../colormap.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../colormap.c:17: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o colorspace.obj -c ../colorspace.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../colorspace.c:32: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o color_lookup.obj -c ../color_lookup.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../color_lookup.c:16: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o compare.obj -c ../compare.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../compare.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o composite.obj -c ../composite.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../composite.c:41: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o compress.obj -c ../compress.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../compress.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o confirm_access.obj -c ../confirm_access.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../confirm_access.c:13: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o command.obj -c ../command.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../command.c:40: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o constitute.obj -c ../constitute.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../constitute.c:45: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o delegate.obj -c ../delegate.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../delegate.c:43: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o decorate.obj -c ../decorate.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../decorate.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o deprecate.obj -c ../deprecate.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../deprecate.c:37: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o display.obj -c ../display.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../display.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o describe.obj -c ../describe.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../describe.c:17: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o draw.obj -c ../draw.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../draw.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../draw.c: In function ‘GmDrawComposite’: -../draw.c:2411:27: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 3 has type ‘size_t’ {aka ‘long long unsigned int’} [-Wformat=] - 2411 | FormatString(buffer,"%" MAGICK_SIZE_T_F "d bytes", (4L*blob_length/3L+4L)); - | ^~~ ~~~~~~~~~~~~~~~~~~~~~~ - | | - | size_t {aka long long unsigned int} -../draw.c:2411:48: note: format string is defined here - 2411 | FormatString(buffer,"%" MAGICK_SIZE_T_F "d bytes", (4L*blob_length/3L+4L)); - | ~~~~~~~~~~~~~~~~~~~~^ - | | - | long int -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o enhance.obj -c ../enhance.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../enhance.c:42: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o effect.obj -c ../effect.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../effect.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o enum_strings.obj -c ../enum_strings.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../enum_strings.c:14: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o error.obj -c ../error.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../error.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o floats.obj -c ../floats.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../floats.c:17: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o fx.obj -c ../fx.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../fx.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o gem.obj -c ../gem.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../gem.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o gradient.obj -c ../gradient.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../gradient.c:17: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o hclut.obj -c ../hclut.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../hclut.c:14: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o image.obj -c ../image.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../image.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o import.obj -c ../import.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../import.c:16: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o list.obj -c ../list.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../list.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o locale.obj -c ../locale.c -In file included from ../studio.h:196, - from ../locale.c:35: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o log.obj -c ../log.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../log.c:37: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o magic.obj -c ../magic.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../magic.c:36: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o magick.obj -c ../magick.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../magick.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o magick_endian.obj -c ../magick_endian.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../magick_endian.c:25: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o map.obj -c ../map.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../map.c:13: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o memory.obj -c ../memory.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../memory.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o module.obj -c ../module.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../module.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o export.obj -c ../export.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../export.c:16: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o monitor.obj -c ../monitor.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../monitor.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o montage.obj -c ../montage.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../montage.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o nt_base.obj -c ../nt_base.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../nt_base.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../nt_base.c: In function ‘NTdlopen’: -../nt_base.c:817:10: warning: unused variable ‘Err’ [-Wunused-variable] - 817 | DWORD Err = GetLastError(); - | ^~~ -../nt_base.c:805:8: warning: variable ‘Err’ set but not used [-Wunused-but-set-variable] - 805 | DWORD Err = GetLastError(); - | ^~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o omp_data_view.obj -c ../omp_data_view.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../omp_data_view.c:31: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o nt_feature.obj -c ../nt_feature.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../nt_feature.c:35: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o paint.obj -c ../paint.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../paint.c:37: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o operator.obj -c ../operator.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../operator.c:16: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o pixel_iterator.obj -c ../pixel_iterator.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pixel_iterator.c:15: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o pixel_cache.obj -c ../pixel_cache.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pixel_cache.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../pixel_cache.c: In function ‘GmCheckImagePixelLimits’: -../pixel_cache.c:1331:28: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 1331 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../pixel_cache.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../pixel_cache.c:1331:28: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘magick_int64_t’ {aka ‘long long int’} [-Wformat=] - 1331 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~~~~~~~ -../pixel_cache.c:1331:64: note: format string is defined here - 1331 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", - | ~~~~~~^ - | | - | char * - | %.1024I64d -../pixel_cache.c:1331:28: warning: too many arguments for format [-Wformat-extra-args] - 1331 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~~~~~~~ -../pixel_cache.c:1347:28: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 1347 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../pixel_cache.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../pixel_cache.c:1347:28: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘magick_int64_t’ {aka ‘long long int’} [-Wformat=] - 1347 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~~~~~~~ -../pixel_cache.c:1347:64: note: format string is defined here - 1347 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", - | ~~~~~~^ - | | - | char * - | %.1024I64d -../pixel_cache.c:1347:28: warning: too many arguments for format [-Wformat-extra-args] - 1347 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~~~~~~~ -../pixel_cache.c:1368:22: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../pixel_cache.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../pixel_cache.c:1368:22: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../pixel_cache.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../pixel_cache.c:1368:22: warning: format ‘%s’ expects argument of type ‘char *’, but argument 3 has type ‘magick_int64_t’ {aka ‘long long int’} [-Wformat=] - 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~ - 1369 | total_pixels, - | ~~~~~~~~~~~~ - | | - | magick_int64_t {aka long long int} -../pixel_cache.c:1368:75: note: format string is defined here - 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", - | ~~~~~~^ - | | - | char * - | %.1024I64d -../pixel_cache.c:1368:22: warning: too many arguments for format [-Wformat-extra-args] - 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~ -../pixel_cache.c: In function ‘SetNexus’: -../pixel_cache.c:4240:8: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 4240 | "Failed to allocate %" MAGICK_SIZE_T_F - | ^~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../pixel_cache.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../pixel_cache.c:4240:8: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘magick_uint64_t’ {aka ‘long long unsigned int’} [-Wformat=] - 4240 | "Failed to allocate %" MAGICK_SIZE_T_F - | ^~~~~~~~~~~~~~~~~~~~~~ -...... - 4245 | number_pixels, - | ~~~~~~~~~~~~~ - | | - | magick_uint64_t {aka long long unsigned int} -../pixel_cache.c:4242:59: note: format string is defined here - 4242 | "(number pixels=%" MAGICK_OFF_F "u, region width=%lu, " - | ~~^ - | | - | long unsigned int - | %I64u -../pixel_cache.c:4240:8: warning: too many arguments for format [-Wformat-extra-args] - 4240 | "Failed to allocate %" MAGICK_SIZE_T_F - | ^~~~~~~~~~~~~~~~~~~~~~ -../pixel_cache.c: In function ‘WriteCacheIndexes’: -../pixel_cache.c:4591:11: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 4591 | "Failed to write row %ld at file offset %" MAGICK_OFF_F - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../pixel_cache.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../pixel_cache.c:4591:11: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 7 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] - 4591 | "Failed to write row %ld at file offset %" MAGICK_OFF_F - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -...... - 4595 | row_offset, - | ~~~~~~~~~~ - | | - | magick_off_t {aka long long int} -../pixel_cache.c:4592:43: note: format string is defined here - 4592 | "d. Wrote %" MAGICK_SSIZE_T_F "d rather than %" - | ~~~~~~~~~~~~~~~~~~~~~^ - | | - | long int -../pixel_cache.c:4591:11: warning: format ‘%s’ expects argument of type ‘char *’, but argument 9 has type ‘long unsigned int’ [-Wformat=] - 4591 | "Failed to write row %ld at file offset %" MAGICK_OFF_F - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -...... - 4597 | (MAGICK_SIZE_T) length, - | ~~~~~~~~~~~~~~~~~~~~~~ - | | - | long unsigned int -../pixel_cache.c:4593:66: note: format string is defined here - 4593 | MAGICK_SIZE_T_F "u bytes (%s).", - | ~^ - | | - | char * - | %ld -../pixel_cache.c:4591:11: warning: too many arguments for format [-Wformat-extra-args] - 4591 | "Failed to write row %ld at file offset %" MAGICK_OFF_F - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../pixel_cache.c: In function ‘WriteCachePixels’: -../pixel_cache.c:4754:11: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 4754 | "Failed to write row %ld at file offset %" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../pixel_cache.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../pixel_cache.c:4754:11: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 7 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] - 4754 | "Failed to write row %ld at file offset %" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -...... - 4759 | row_offset, - | ~~~~~~~~~~ - | | - | magick_off_t {aka long long int} -../pixel_cache.c:4756:57: note: format string is defined here - 4755 | MAGICK_OFF_F "d. Wrote %" - | ~~ - 4756 | MAGICK_SSIZE_T_F "d rather than %" - | ~~~~~~~~~~~~~~~~~~^ - | | - | long int -../pixel_cache.c:4754:11: warning: format ‘%s’ expects argument of type ‘char *’, but argument 9 has type ‘long unsigned int’ [-Wformat=] - 4754 | "Failed to write row %ld at file offset %" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -...... - 4761 | (MAGICK_SIZE_T) length, - | ~~~~~~~~~~~~~~~~~~~~~~ - | | - | long unsigned int -../pixel_cache.c:4757:66: note: format string is defined here - 4757 | MAGICK_SIZE_T_F "u bytes (%s).", - | ~^ - | | - | char * - | %ld -../pixel_cache.c:4754:11: warning: too many arguments for format [-Wformat-extra-args] - 4754 | "Failed to write row %ld at file offset %" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o plasma.obj -c ../plasma.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../plasma.c:17: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o PreRvIcccm.obj -c ../PreRvIcccm.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../PreRvIcccm.c:35: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o profile.obj -c ../profile.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../profile.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o random.obj -c ../random.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../random.c:15: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o quantize.obj -c ../quantize.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../quantize.c:174: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o registry.obj -c ../registry.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../registry.c:37: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o resize.obj -c ../resize.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../resize.c:35: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o resource.obj -c ../resource.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../resource.c:41: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o segment.obj -c ../segment.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../segment.c:80: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o render.obj -c ../render.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../render.c:43: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../render.c: In function ‘GmDrawImage’: -../render.c:2462:49: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2462 | FormatString(resource_str,"%" MAGICK_INT64_F "d", width_resource_limit); - | ^~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../render.c:43: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../render.c:2462:49: warning: too many arguments for format [-Wformat-extra-args] - 2462 | FormatString(resource_str,"%" MAGICK_INT64_F "d", width_resource_limit); - | ^~~ -../render.c:2470:49: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2470 | FormatString(resource_str,"%" MAGICK_INT64_F "d", hight_resource_limit); - | ^~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../render.c:43: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../render.c:2470:49: warning: too many arguments for format [-Wformat-extra-args] - 2470 | FormatString(resource_str,"%" MAGICK_INT64_F "d", hight_resource_limit); - | ^~~ -../render.c:2478:49: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2478 | FormatString(resource_str,"%" MAGICK_INT64_F "d", pixels_resource_limit); - | ^~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../render.c:43: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../render.c:2478:49: warning: too many arguments for format [-Wformat-extra-args] - 2478 | FormatString(resource_str,"%" MAGICK_INT64_F "d", pixels_resource_limit); - | ^~~ -../render.c:2494:52: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2494 | FormatString(gradient_size_str,"%" MAGICK_INT64_F "dx%" MAGICK_INT64_F "d", - | ^~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../render.c:43: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../render.c:2494:52: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2494 | FormatString(gradient_size_str,"%" MAGICK_INT64_F "dx%" MAGICK_INT64_F "d", - | ^~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../render.c:43: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../render.c:2494:52: warning: too many arguments for format [-Wformat-extra-args] - 2494 | FormatString(gradient_size_str,"%" MAGICK_INT64_F "dx%" MAGICK_INT64_F "d", - | ^~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o semaphore.obj -c ../semaphore.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../semaphore.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o shear.obj -c ../shear.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../shear.c:44: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o signature.obj -c ../signature.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../signature.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o tempfile.obj -c ../tempfile.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../tempfile.c:12: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o statistics.obj -c ../statistics.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../statistics.c:17: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o timer.obj -c ../timer.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../timer.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o texture.obj -c ../texture.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../texture.c:16: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o tsd.obj -c ../tsd.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../tsd.c:15: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o transform.obj -c ../transform.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../transform.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o type.obj -c ../type.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../type.c:37: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o unix_port.obj -c ../unix_port.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../unix_port.c:36: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o version.obj -c ../version.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../version.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o widget.obj -c ../widget.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../widget.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o xwindow.obj -c ../xwindow.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../xwindow.c:37: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o utility.obj -c ../utility.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../utility.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../utility.c: In function ‘GmMagickSpawnVP’: -../utility.c:4046:37: warning: passing argument 3 of ‘spawnvp’ from incompatible pointer type [-Wincompatible-pointer-types] - 4046 | status = spawnvp(_P_WAIT, file, (const char * const *) argv); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ - | | - | const char * const* -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/nt_base.h:26, - from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:222, - from ../utility.c:39: -/usr/share/mingw-w64/include/process.h:198:74: note: expected ‘char * const*’ but argument is of type ‘const char * const*’ - 198 | _CRTIMP intptr_t __cdecl spawnvp(int,const char *_Filename,char *const _ArgList[]) __MINGW_ATTRIB_DEPRECATED_MSVC2005; - | ~~~~~~~~~~~~^~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o analyze_Win32.obj -c ../analyze_Win32.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../analyze_Win32.c:17: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o Magick.dll -shared -Wl,--out-implib,libMagick.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ animate.obj annotate.obj attribute.obj average.obj bit_stream.obj blob.obj cdl.obj channel.obj color.obj colormap.obj colorspace.obj color_lookup.obj command.obj compare.obj composite.obj compress.obj confirm_access.obj constitute.obj decorate.obj delegate.obj deprecate.obj describe.obj display.obj draw.obj effect.obj enhance.obj enum_strings.obj error.obj export.obj floats.obj fx.obj gem.obj gradient.obj hclut.obj image.obj import.obj list.obj locale.obj log.obj magic.obj magick.obj magick_endian.obj map.obj memory.obj module.obj monitor.obj montage.obj nt_base.obj nt_feature.obj omp_data_view.obj operator.obj paint.obj pixel_cache.obj pixel_iterator.obj plasma.obj PreRvIcccm.obj profile.obj quantize.obj random.obj registry.obj render.obj resize.obj resource.obj segment.obj semaphore.obj shear.obj signature.obj statistics.obj tempfile.obj texture.obj timer.obj transform.obj tsd.obj type.obj unix_port.obj utility.obj version.obj widget.obj xwindow.obj analyze_Win32.obj -lbzlib -llcms -lttf -lzlib -ladvapi32 -luser32 -lgdi32 -lws2_32 -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make -C ./filters install -make -C ./coders install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' -mkdir -p O.Common -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' -mkdir -p O.Common -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF static.d ../static.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -MM -MF analyze.d ../analyze.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF yuv.d ../yuv.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xwd.d ../xwd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xtrn.d ../xtrn.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xpm.d ../xpm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xcf.d ../xcf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xc.d ../xc.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -c ../analyze.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xbm.d ../xbm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF x.d ../x.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -/usr/bin/ar -rc libfilters.a analyze.o -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -/usr/bin/ranlib libfilters.a -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wpg.d ../wpg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -g++ -o libfilters.so -shared -fPIC -Wl,-hlibfilters.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 analyze.o -lMagick -lttf -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ - T_A=windows-x64-mingw install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wmf.d ../wmf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF webp.d ../webp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wbmp.d ../wbmp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF viff.d ../viff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vid.d ../vid.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -MM -MF analyze.d -MT analyze.obj ../analyze.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vicar.d ../vicar.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uyvy.d ../uyvy.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF url.d ../url.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uil.d ../uil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF txt.d ../txt.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ttf.d ../ttf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF topol.d ../topol.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tim.d ../tim.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tile.d ../tile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tiff.d ../tiff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tga.d ../tga.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF svg.d ../svg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -o analyze.obj -c ../analyze.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../analyze.c:30: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sun.d ../sun.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o filters.dll -shared -Wl,--out-implib,libfilters.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ analyze.obj -lMagick -lttf -lws2_32 -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF stegano.d ../stegano.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sgi.d ../sgi.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sfw.d ../sfw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sct.d ../sct.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rle.d ../rle.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rla.d ../rla.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rgb.d ../rgb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pwp.d ../pwp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF psd.d ../psd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps3.d ../ps3.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps2.d ../ps2.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps.d ../ps.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF preview.d ../preview.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pnm.d ../pnm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF png.d ../png.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF plasma.d ../plasma.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pix.d ../pix.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pict.d ../pict.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdf.d ../pdf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdb.d ../pdb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcx.d ../pcx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcl.d ../pcl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcd.d ../pcd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF palm.d ../palm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF otb.d ../otb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF null.d ../null.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mvg.d ../mvg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mtv.d ../mtv.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpr.d ../mpr.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF msl.d ../msl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpeg.d ../mpeg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpc.d ../mpc.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mono.d ../mono.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF miff.d ../miff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF meta.d ../meta.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF matte.d ../matte.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mat.d ../mat.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF map.d ../map.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mac.d ../mac.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF logo.d ../logo.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF locale.d ../locale.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF label.d ../label.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jpeg.d ../jpeg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jp2.d ../jp2.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jnx.d ../jnx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jbig.d ../jbig.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF info.d ../info.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF identity.d ../identity.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF icon.d ../icon.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF html.d ../html.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hrz.d ../hrz.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF histogram.d ../histogram.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hdf.d ../hdf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gray.d ../gray.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gradient.d ../gradient.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gif.d ../gif.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fpx.d ../fpx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fits.d ../fits.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fax.d ../fax.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ept.d ../ept.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF emf.d ../emf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dpx.d ../dpx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dps.d ../dps.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dib.d ../dib.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcraw.d ../dcraw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcm.d ../dcm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cut.d ../cut.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cmyk.d ../cmyk.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF clipboard.d ../clipboard.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cineon.d ../cineon.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF caption.d ../caption.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cals.d ../cals.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF bmp.d ../bmp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avs.d ../avs.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avi.d ../avi.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF art.d ../art.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../art.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../avs.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../avi.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cals.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../caption.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cineon.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../clipboard.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cmyk.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../bmp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cut.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dcraw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dcm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dib.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dps.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../emf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ept.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../fax.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../fits.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../fpx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../gif.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../gradient.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dpx.c -In file included from /usr/include/string.h:495, - from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:126, - from ../dpx.c:123: -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3865:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3865:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3866:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3866:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3891:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3891:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3895:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3895:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3896:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3896:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3897:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3897:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3910:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3910:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3911:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3911:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3912:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3912:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3913:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3913:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3914:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3914:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3915:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3915:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3921:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3921:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3922:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3922:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../hdf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../gray.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../hrz.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../histogram.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../html.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../icon.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../identity.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../info.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jbig.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jnx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jp2.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../label.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jpeg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../locale.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mac.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../logo.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../map.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../matte.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mat.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../meta.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mono.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mpc.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../miff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mpr.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mpeg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mtv.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mvg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../null.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../otb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../palm.c -../palm.c:395:3: warning: ‘PalmPalette’ defined but not used [-Wunused-const-variable=] - 395 | PalmPalette[256][3] = - | ^~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../msl.c -In file included from /usr/include/string.h:495, - from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:126, - from ../msl.c:39: -In function ‘strncpy’, - inlined from ‘MSLStartElement’ at ../msl.c:3262:36: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin___strncpy_chk’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../msl.c: In function ‘MSLStartElement’: -../msl.c:3258:41: note: length computed here - 3258 | len = (int) strlen( value ); - | ^~~~~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pcl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pcd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pdb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pcx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pdf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pix.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pict.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:67, - from ../pict.c:38: -../pict.c: In function ‘WritePICTImage’: -../../../../include/magick/symbols.h:552:22: warning: argument 1 value ‘18446744073709551488’ exceeds maximum object size 9223372036854775807 [-Walloc-size-larger-than=] - 552 | #define MagickMalloc GmMagickMalloc -../../../../include/magick/memory.h:47:12: note: in expansion of macro ‘MagickMalloc’ - 47 | ((type) MagickMalloc((size_t) (size)))) - | ^~~~~~~~~~~~ -../pict.c:1654:12: note: in expansion of macro ‘MagickAllocateMemory’ - 1654 | scanline=MagickAllocateMemory(unsigned char *,row_bytes); - | ^~~~~~~~~~~~~~~~~~~~ -../../../../include/magick/symbols.h:552:22: note: in a call to allocation function ‘GmMagickMalloc’ declared here - 552 | #define MagickMalloc GmMagickMalloc - | ^~~~~~~~~~~~~~ -../../../../include/magick/memory.h:24:4: note: in expansion of macro ‘MagickMalloc’ - 24 | *MagickMalloc(const size_t size) MAGICK_FUNC_MALLOC MAGICK_FUNC_ALLOC_SIZE_1ARG(1), - | ^~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../plasma.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pnm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../preview.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ps.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ps2.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ps3.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../psd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pwp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../png.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../rla.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../rgb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sct.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sfw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../rle.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../stegano.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sgi.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sun.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tga.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../svg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tim.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../topol.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ttf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tiff.c -In file included from ../../../../include/os/Linux/jpeglib.h:27, - from ../tiff.c:78: -../../../../include/os/Linux/jmorecfg.h:248: warning: "EXTERN" redefined - 248 | #define EXTERN(type) extern type - | -In file included from ../tiff.c:64: -../../../../include/os/Linux/tiffio.h:91: note: this is the location of the previous definition - 91 | # define EXTERN extern - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../txt.c -../txt.c: In function ‘ReadTXTImage’: -../txt.c:940:25: warning: comparison between pointer and zero character constant [-Wpointer-compare] - 940 | if (draw_info->text != '\0') - | ^~ -../txt.c:940:9: note: did you mean to dereference the pointer? - 940 | if (draw_info->text != '\0') - | ^ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../uil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../url.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../uyvy.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../vicar.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../vid.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../wbmp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../viff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../wmf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../webp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../x.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../wpg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xbm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xc.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xpm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xcf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xtrn.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xwd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../yuv.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../static.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -/usr/bin/ar -rc libcoders.a art.o avi.o avs.o bmp.o cals.o caption.o cineon.o clipboard.o cmyk.o cut.o dcm.o dcraw.o dib.o dps.o dpx.o emf.o ept.o fax.o fits.o fpx.o gif.o gradient.o gray.o hdf.o histogram.o hrz.o html.o icon.o identity.o info.o jbig.o jnx.o jp2.o jpeg.o label.o locale.o logo.o mac.o map.o mat.o matte.o meta.o miff.o mono.o mpc.o mpeg.o mpr.o msl.o mtv.o mvg.o null.o otb.o palm.o pcd.o pcl.o pcx.o pdb.o pdf.o pict.o pix.o plasma.o png.o pnm.o preview.o ps.o ps2.o ps3.o psd.o pwp.o rgb.o rla.o rle.o sct.o sfw.o sgi.o stegano.o sun.o svg.o tga.o tiff.o tile.o tim.o topol.o ttf.o txt.o uil.o url.o uyvy.o vicar.o vid.o viff.o wbmp.o webp.o wmf.o wpg.o x.o xbm.o xc.o xcf.o xpm.o xtrn.o xwd.o yuv.o static.o -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -/usr/bin/ranlib libcoders.a -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -g++ -o libcoders.so -shared -fPIC -Wl,-hlibcoders.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 art.o avi.o avs.o bmp.o cals.o caption.o cineon.o clipboard.o cmyk.o cut.o dcm.o dcraw.o dib.o dps.o dpx.o emf.o ept.o fax.o fits.o fpx.o gif.o gradient.o gray.o hdf.o histogram.o hrz.o html.o icon.o identity.o info.o jbig.o jnx.o jp2.o jpeg.o label.o locale.o logo.o mac.o map.o mat.o matte.o meta.o miff.o mono.o mpc.o mpeg.o mpr.o msl.o mtv.o mvg.o null.o otb.o palm.o pcd.o pcl.o pcx.o pdb.o pdf.o pict.o pix.o plasma.o png.o pnm.o preview.o ps.o ps2.o ps3.o psd.o pwp.o rgb.o rla.o rle.o sct.o sfw.o sgi.o stegano.o sun.o svg.o tga.o tiff.o tile.o tim.o topol.o ttf.o txt.o uil.o url.o uyvy.o vicar.o vid.o viff.o wbmp.o webp.o wmf.o wpg.o x.o xbm.o xc.o xcf.o xpm.o xtrn.o xwd.o yuv.o static.o -lbzlib -ljbig -ljp2 -lMagick -lpng -lttf -lwebp -lwmf -ltiff -ljpeg -lxml2 -lnanohttp_stream -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ - T_A=windows-x64-mingw install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF yuv.d -MT yuv.obj ../yuv.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF static.d -MT static.obj ../static.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xwd.d -MT xwd.obj ../xwd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xpm.d -MT xpm.obj ../xpm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xtrn.d -MT xtrn.obj ../xtrn.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xcf.d -MT xcf.obj ../xcf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xc.d -MT xc.obj ../xc.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xbm.d -MT xbm.obj ../xbm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF x.d -MT x.obj ../x.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wpg.d -MT wpg.obj ../wpg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wmf.d -MT wmf.obj ../wmf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF webp.d -MT webp.obj ../webp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wbmp.d -MT wbmp.obj ../wbmp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF viff.d -MT viff.obj ../viff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vid.d -MT vid.obj ../vid.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vicar.d -MT vicar.obj ../vicar.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uyvy.d -MT uyvy.obj ../uyvy.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF url.d -MT url.obj ../url.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uil.d -MT uil.obj ../uil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF txt.d -MT txt.obj ../txt.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ttf.d -MT ttf.obj ../ttf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF topol.d -MT topol.obj ../topol.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tim.d -MT tim.obj ../tim.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tile.d -MT tile.obj ../tile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tiff.d -MT tiff.obj ../tiff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tga.d -MT tga.obj ../tga.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF svg.d -MT svg.obj ../svg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sun.d -MT sun.obj ../sun.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF stegano.d -MT stegano.obj ../stegano.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sgi.d -MT sgi.obj ../sgi.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sfw.d -MT sfw.obj ../sfw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sct.d -MT sct.obj ../sct.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rle.d -MT rle.obj ../rle.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rla.d -MT rla.obj ../rla.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rgb.d -MT rgb.obj ../rgb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pwp.d -MT pwp.obj ../pwp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF psd.d -MT psd.obj ../psd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps3.d -MT ps3.obj ../ps3.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps2.d -MT ps2.obj ../ps2.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps.d -MT ps.obj ../ps.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF preview.d -MT preview.obj ../preview.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pnm.d -MT pnm.obj ../pnm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF plasma.d -MT plasma.obj ../plasma.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF png.d -MT png.obj ../png.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pict.d -MT pict.obj ../pict.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pix.d -MT pix.obj ../pix.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdb.d -MT pdb.obj ../pdb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdf.d -MT pdf.obj ../pdf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcl.d -MT pcl.obj ../pcl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcx.d -MT pcx.obj ../pcx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcd.d -MT pcd.obj ../pcd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF palm.d -MT palm.obj ../palm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF null.d -MT null.obj ../null.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF otb.d -MT otb.obj ../otb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mvg.d -MT mvg.obj ../mvg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mtv.d -MT mtv.obj ../mtv.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpr.d -MT mpr.obj ../mpr.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF msl.d -MT msl.obj ../msl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpeg.d -MT mpeg.obj ../mpeg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpc.d -MT mpc.obj ../mpc.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mono.d -MT mono.obj ../mono.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF miff.d -MT miff.obj ../miff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF meta.d -MT meta.obj ../meta.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF matte.d -MT matte.obj ../matte.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mat.d -MT mat.obj ../mat.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF map.d -MT map.obj ../map.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mac.d -MT mac.obj ../mac.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF logo.d -MT logo.obj ../logo.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF locale.d -MT locale.obj ../locale.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF label.d -MT label.obj ../label.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jpeg.d -MT jpeg.obj ../jpeg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jp2.d -MT jp2.obj ../jp2.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jnx.d -MT jnx.obj ../jnx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jbig.d -MT jbig.obj ../jbig.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF info.d -MT info.obj ../info.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF identity.d -MT identity.obj ../identity.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF icon.d -MT icon.obj ../icon.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF html.d -MT html.obj ../html.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hrz.d -MT hrz.obj ../hrz.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF histogram.d -MT histogram.obj ../histogram.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hdf.d -MT hdf.obj ../hdf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gray.d -MT gray.obj ../gray.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gradient.d -MT gradient.obj ../gradient.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gif.d -MT gif.obj ../gif.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fpx.d -MT fpx.obj ../fpx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fits.d -MT fits.obj ../fits.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fax.d -MT fax.obj ../fax.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ept.d -MT ept.obj ../ept.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF emf.d -MT emf.obj ../emf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dpx.d -MT dpx.obj ../dpx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dps.d -MT dps.obj ../dps.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dib.d -MT dib.obj ../dib.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcraw.d -MT dcraw.obj ../dcraw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcm.d -MT dcm.obj ../dcm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cut.d -MT cut.obj ../cut.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cmyk.d -MT cmyk.obj ../cmyk.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF clipboard.d -MT clipboard.obj ../clipboard.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cineon.d -MT cineon.obj ../cineon.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF caption.d -MT caption.obj ../caption.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cals.d -MT cals.obj ../cals.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF bmp.d -MT bmp.obj ../bmp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avs.d -MT avs.obj ../avs.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avi.d -MT avi.obj ../avi.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF art.d -MT art.obj ../art.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o art.obj -c ../art.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../art.c:36: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o avi.obj -c ../avi.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../avi.c:37: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o avs.obj -c ../avs.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../avs.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o cals.obj -c ../cals.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../cals.c:35: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o caption.obj -c ../caption.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../caption.c:37: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o cineon.obj -c ../cineon.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../cineon.c:40: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o clipboard.obj -c ../clipboard.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../clipboard.c:33: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o cmyk.obj -c ../cmyk.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../cmyk.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o bmp.obj -c ../bmp.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../bmp.c:39: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../bmp.c: In function ‘ReadBMPImage’: -../bmp.c:610:9: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 610 | " BMP size: %lu, File size: %" MAGICK_OFF_F "u", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../bmp.c:39: -../../../../include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../bmp.c:610:9: warning: too many arguments for format [-Wformat-extra-args] - 610 | " BMP size: %lu, File size: %" MAGICK_OFF_F "u", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../bmp.c:843:29: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 843 | "File size: Claimed=%lu, Actual=%" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../bmp.c:39: -../../../../include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../bmp.c:843:29: warning: too many arguments for format [-Wformat-extra-args] - 843 | "File size: Claimed=%lu, Actual=%" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o cut.obj -c ../cut.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../cut.c:36: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dcraw.obj -c ../dcraw.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../dcraw.c:27: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dcm.obj -c ../dcm.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../dcm.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dps.obj -c ../dps.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../dps.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dib.obj -c ../dib.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../dib.c:37: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o emf.obj -c ../emf.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../emf.c:35: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ept.obj -c ../ept.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../ept.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o fax.obj -c ../fax.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../fax.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dpx.obj -c ../dpx.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../dpx.c:123: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../dpx.c: In function ‘WriteDPXImage’: -../dpx.c:4067:28: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 4067 | (void) fprintf(stderr,"### Descriptor %u offset %u, TellBlob says %" MAGICK_OFF_F "d\n", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../dpx.c:123: -../../../../include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../dpx.c:4067:28: warning: too many arguments for format [-Wformat-extra-args] - 4067 | (void) fprintf(stderr,"### Descriptor %u offset %u, TellBlob says %" MAGICK_OFF_F "d\n", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:4067:28: warning: unknown conversion type character ‘l’ in format [-Wformat=] -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../dpx.c:123: -../../../../include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../dpx.c:4067:28: warning: too many arguments for format [-Wformat-extra-args] - 4067 | (void) fprintf(stderr,"### Descriptor %u offset %u, TellBlob says %" MAGICK_OFF_F "d\n", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:4391:24: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 4391 | (void) fprintf(stderr,"### File length %u, TellBlob says %" MAGICK_OFF_F "d\n", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../dpx.c:123: -../../../../include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../dpx.c:4391:24: warning: too many arguments for format [-Wformat-extra-args] - 4391 | (void) fprintf(stderr,"### File length %u, TellBlob says %" MAGICK_OFF_F "d\n", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:4391:24: warning: unknown conversion type character ‘l’ in format [-Wformat=] -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../dpx.c:123: -../../../../include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../dpx.c:4391:24: warning: too many arguments for format [-Wformat-extra-args] - 4391 | (void) fprintf(stderr,"### File length %u, TellBlob says %" MAGICK_OFF_F "d\n", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3865:3: note: in expansion of macro ‘AttributeToString’ - 3865 | AttributeToString(image_info,image,"DPX:file.project.name",dpx_file_info.project_name); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3865:3: note: in expansion of macro ‘AttributeToString’ - 3865 | AttributeToString(image_info,image,"DPX:file.project.name",dpx_file_info.project_name); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3866:3: note: in expansion of macro ‘AttributeToString’ - 3866 | AttributeToString(image_info,image,"DPX:file.copyright",dpx_file_info.copyright); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3866:3: note: in expansion of macro ‘AttributeToString’ - 3866 | AttributeToString(image_info,image,"DPX:file.copyright",dpx_file_info.copyright); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3891:3: note: in expansion of macro ‘AttributeToString’ - 3891 | AttributeToString(image_info,image,"DPX:source.filename",dpx_source_info.source_image_filename); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3891:3: note: in expansion of macro ‘AttributeToString’ - 3891 | AttributeToString(image_info,image,"DPX:source.filename",dpx_source_info.source_image_filename); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3895:3: note: in expansion of macro ‘AttributeToString’ - 3895 | AttributeToString(image_info,image,"DPX:source.creation.datetime",dpx_source_info.source_image_datetime); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3895:3: note: in expansion of macro ‘AttributeToString’ - 3895 | AttributeToString(image_info,image,"DPX:source.creation.datetime",dpx_source_info.source_image_datetime); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3896:3: note: in expansion of macro ‘AttributeToString’ - 3896 | AttributeToString(image_info,image,"DPX:source.device.name",dpx_source_info.input_device_name); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3896:3: note: in expansion of macro ‘AttributeToString’ - 3896 | AttributeToString(image_info,image,"DPX:source.device.name",dpx_source_info.input_device_name); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3897:3: note: in expansion of macro ‘AttributeToString’ - 3897 | AttributeToString(image_info,image,"DPX:source.device.serialnumber",dpx_source_info.input_device_serialnumber); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3897:3: note: in expansion of macro ‘AttributeToString’ - 3897 | AttributeToString(image_info,image,"DPX:source.device.serialnumber",dpx_source_info.input_device_serialnumber); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3910:3: note: in expansion of macro ‘AttributeToString’ - 3910 | AttributeToString(image_info,image,"DPX:mp.film.manufacturer.id",dpx_mp_info.film_mfg_id_code); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3910:3: note: in expansion of macro ‘AttributeToString’ - 3910 | AttributeToString(image_info,image,"DPX:mp.film.manufacturer.id",dpx_mp_info.film_mfg_id_code); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3911:3: note: in expansion of macro ‘AttributeToString’ - 3911 | AttributeToString(image_info,image,"DPX:mp.film.type",dpx_mp_info.film_type); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3911:3: note: in expansion of macro ‘AttributeToString’ - 3911 | AttributeToString(image_info,image,"DPX:mp.film.type",dpx_mp_info.film_type); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3912:3: note: in expansion of macro ‘AttributeToString’ - 3912 | AttributeToString(image_info,image,"DPX:mp.perfs.offset",dpx_mp_info.perfs_offset); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3912:3: note: in expansion of macro ‘AttributeToString’ - 3912 | AttributeToString(image_info,image,"DPX:mp.perfs.offset",dpx_mp_info.perfs_offset); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3913:3: note: in expansion of macro ‘AttributeToString’ - 3913 | AttributeToString(image_info,image,"DPX:mp.prefix",dpx_mp_info.prefix); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3913:3: note: in expansion of macro ‘AttributeToString’ - 3913 | AttributeToString(image_info,image,"DPX:mp.prefix",dpx_mp_info.prefix); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3914:3: note: in expansion of macro ‘AttributeToString’ - 3914 | AttributeToString(image_info,image,"DPX:mp.count",dpx_mp_info.count); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3914:3: note: in expansion of macro ‘AttributeToString’ - 3914 | AttributeToString(image_info,image,"DPX:mp.count",dpx_mp_info.count); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3915:3: note: in expansion of macro ‘AttributeToString’ - 3915 | AttributeToString(image_info,image,"DPX:mp.format",dpx_mp_info.format); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3915:3: note: in expansion of macro ‘AttributeToString’ - 3915 | AttributeToString(image_info,image,"DPX:mp.format",dpx_mp_info.format); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3921:3: note: in expansion of macro ‘AttributeToString’ - 3921 | AttributeToString(image_info,image,"DPX:mp.frame.id",dpx_mp_info.frame_id); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3921:3: note: in expansion of macro ‘AttributeToString’ - 3921 | AttributeToString(image_info,image,"DPX:mp.frame.id",dpx_mp_info.frame_id); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3922:3: note: in expansion of macro ‘AttributeToString’ - 3922 | AttributeToString(image_info,image,"DPX:mp.slate.info",dpx_mp_info.slate_info); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3922:3: note: in expansion of macro ‘AttributeToString’ - 3922 | AttributeToString(image_info,image,"DPX:mp.slate.info",dpx_mp_info.slate_info); - | ^~~~~~~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o fits.obj -c ../fits.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../fits.c:40: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ output truncated before terminating nul copying 30 bytes from a string of the same length [-Wstringop-truncation] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ output truncated before terminating nul copying 30 bytes from a string of the same length [-Wstringop-truncation] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ output truncated before terminating nul copying 3 bytes from a string of the same length [-Wstringop-truncation] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../fits.c: In function ‘WriteFITSImage’: -../fits.c:670:9: note: length computed here - 670 | len = strlen(data); - | ^~~~~~~~~~~~ -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../fits.c: In function ‘WriteFITSImage’: -../fits.c:670:9: note: length computed here - 670 | len = strlen(data); - | ^~~~~~~~~~~~ -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../fits.c: In function ‘WriteFITSImage’: -../fits.c:670:9: note: length computed here - 670 | len = strlen(data); - | ^~~~~~~~~~~~ -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../fits.c: In function ‘WriteFITSImage’: -../fits.c:670:9: note: length computed here - 670 | len = strlen(data); - | ^~~~~~~~~~~~ -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../fits.c: In function ‘WriteFITSImage’: -../fits.c:670:9: note: length computed here - 670 | len = strlen(data); - | ^~~~~~~~~~~~ -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../fits.c: In function ‘WriteFITSImage’: -../fits.c:670:9: note: length computed here - 670 | len = strlen(data); - | ^~~~~~~~~~~~ -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../fits.c: In function ‘WriteFITSImage’: -../fits.c:670:9: note: length computed here - 670 | len = strlen(data); - | ^~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o fpx.obj -c ../fpx.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../fpx.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o gradient.obj -c ../gradient.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../gradient.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o gif.obj -c ../gif.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../gif.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o gray.obj -c ../gray.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../gray.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o hdf.obj -c ../hdf.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../hdf.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o histogram.obj -c ../histogram.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../histogram.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o hrz.obj -c ../hrz.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../hrz.c:34: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o html.obj -c ../html.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../html.c:39: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o icon.obj -c ../icon.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../icon.c:42: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o identity.obj -c ../identity.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../identity.c:13: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o info.obj -c ../info.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../info.c:13: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o jbig.obj -c ../jbig.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../jbig.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../jbig.c:56: -../../../../supportApp/GraphicsMagickSrc/jbig/libjbig/jbig.h:255: warning: ignoring #pragma warning [-Wunknown-pragmas] - 255 | # pragma warning( disable : 4273 ) - | -../../../../supportApp/GraphicsMagickSrc/jbig/libjbig/jbig.h:267: warning: ignoring #pragma warning [-Wunknown-pragmas] - 267 | # pragma warning( disable : 4018 ) - | -../../../../supportApp/GraphicsMagickSrc/jbig/libjbig/jbig.h:268: warning: ignoring #pragma warning [-Wunknown-pragmas] - 268 | # pragma warning( disable : 4244 ) - | -../../../../supportApp/GraphicsMagickSrc/jbig/libjbig/jbig.h:269: warning: ignoring #pragma warning [-Wunknown-pragmas] - 269 | # pragma warning( disable : 4142 ) - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o jnx.obj -c ../jnx.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../jnx.c:35: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o jp2.obj -c ../jp2.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../jp2.c:39: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jasper.h:65, - from ../jp2.c:74: -../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:17:14: note: #pragma message: JAS compiling as DLL import - 17 | # pragma message( "JAS compiling as DLL import" ) - | ^~~~~~~ -../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o label.obj -c ../label.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../label.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o jpeg.obj -c ../jpeg.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../jpeg.c:42: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o logo.obj -c ../logo.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../logo.c:42: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o locale.obj -c ../locale.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../locale.c:37: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mac.obj -c ../mac.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../mac.c:35: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o map.obj -c ../map.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../map.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o matte.obj -c ../matte.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../matte.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mat.obj -c ../mat.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../mat.c:39: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o meta.obj -c ../meta.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../meta.c:37: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mono.obj -c ../mono.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../mono.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o miff.obj -c ../miff.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../miff.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../miff.c:57: -../../../../include/bzlib.h:81:14: note: #pragma message: BZIP compiling as DLL import - 81 | # pragma message( "BZIP compiling as DLL import" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mpeg.obj -c ../mpeg.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../mpeg.c:36: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mpc.obj -c ../mpc.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../mpc.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mpr.obj -c ../mpr.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../mpr.c:37: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mtv.obj -c ../mtv.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../mtv.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mvg.obj -c ../mvg.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../mvg.c:36: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o msl.obj -c ../msl.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../msl.c:39: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../msl.c: In function ‘MSLStartElement’: -../msl.c:3262:36: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 3262 | (void) strncpy(tmp, value, (size_t) (len-1)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../msl.c:3258:41: note: length computed here - 3258 | len = (int) strlen( value ); - | ^~~~~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o null.obj -c ../null.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../null.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o otb.obj -c ../otb.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../otb.c:36: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o palm.obj -c ../palm.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../palm.c:51: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../palm.c:395:3: warning: ‘PalmPalette’ defined but not used [-Wunused-const-variable=] - 395 | PalmPalette[256][3] = - | ^~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pcl.obj -c ../pcl.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pcl.c:43: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pcd.obj -c ../pcd.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pcd.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pcx.obj -c ../pcx.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pcx.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pdb.obj -c ../pdb.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pdb.c:37: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pdf.obj -c ../pdf.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pdf.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pict.obj -c ../pict.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pict.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pix.obj -c ../pix.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pix.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o plasma.obj -c ../plasma.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../plasma.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pnm.obj -c ../pnm.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pnm.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o preview.obj -c ../preview.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../preview.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ps.obj -c ../ps.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../ps.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o png.obj -c ../png.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../png.c:58: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ps2.obj -c ../ps2.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../ps2.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o psd.obj -c ../psd.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../psd.c:39: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ps3.obj -c ../ps3.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../ps3.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pwp.obj -c ../pwp.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pwp.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o rgb.obj -c ../rgb.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../rgb.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o rla.obj -c ../rla.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../rla.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o sct.obj -c ../sct.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../sct.c:49: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o rle.obj -c ../rle.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../rle.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o sfw.obj -c ../sfw.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../sfw.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o stegano.obj -c ../stegano.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../stegano.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o sgi.obj -c ../sgi.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../sgi.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o sun.obj -c ../sun.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../sun.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o tga.obj -c ../tga.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../tga.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o svg.obj -c ../svg.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../svg.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o tile.obj -c ../tile.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../tile.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o tim.obj -c ../tim.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../tim.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o topol.obj -c ../topol.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../topol.c:35: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o tiff.obj -c ../tiff.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../tiff.c:41: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ttf.obj -c ../ttf.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../ttf.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o uil.obj -c ../uil.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../uil.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o txt.obj -c ../txt.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../txt.c:45: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../txt.c: In function ‘ReadTXTImage’: -../txt.c:940:25: warning: comparison between pointer and zero character constant [-Wpointer-compare] - 940 | if (draw_info->text != '\0') - | ^~ -../txt.c:940:9: note: did you mean to dereference the pointer? - 940 | if (draw_info->text != '\0') - | ^ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o url.obj -c ../url.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../url.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o uyvy.obj -c ../uyvy.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../uyvy.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o vicar.obj -c ../vicar.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../vicar.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o vid.obj -c ../vid.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../vid.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o wbmp.obj -c ../wbmp.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../wbmp.c:37: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o viff.obj -c ../viff.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../viff.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o webp.obj -c ../webp.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../webp.c:39: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../supportApp/GraphicsMagickSrc/webp/src/webp/decode.h:17, - from ../webp.c:60: -../../../../supportApp/GraphicsMagickSrc/webp/src/webp/./types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../supportApp/GraphicsMagickSrc/webp/src/webp/./types.h:49:16: note: #pragma message: libwebp compiling as DLL import - 49 | # pragma message( "libwebp compiling as DLL import" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o wmf.obj -c ../wmf.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../wmf.c:40: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, - from ../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, - from ../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, - from ../wmf.c:74: -../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] - 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ - | -../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] - 310 | # pragma warning( disable : 4018 ) - | -../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] - 311 | # pragma warning( disable : 4244 ) - | -../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] - 312 | # pragma warning( disable : 4142 ) - | -In file included from ../wmf.c:75: -../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:31:14: note: #pragma message: WMF compiling as DLL import - 31 | # pragma message( "WMF compiling as DLL import" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o wpg.obj -c ../wpg.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../wpg.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o x.obj -c ../x.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../x.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../x.c:48:3: warning: ‘WriteXImage’ declared ‘static’ but never defined [-Wunused-function] - 48 | WriteXImage(const ImageInfo *,Image *); - | ^~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xc.obj -c ../xc.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../xc.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xbm.obj -c ../xbm.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../xbm.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xpm.obj -c ../xpm.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../xpm.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xcf.obj -c ../xcf.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../xcf.c:37: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xwd.obj -c ../xwd.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../xwd.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../xwd.c:52:3: warning: ‘WriteXWDImage’ declared ‘static’ but never defined [-Wunused-function] - 52 | WriteXWDImage(const ImageInfo *,Image *); - | ^~~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xtrn.obj -c ../xtrn.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../xtrn.c:53: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../xtrn.c: In function ‘ReadXTRNImage’: -../xtrn.c:165:42: warning: format ‘%s’ expects argument of type ‘char *’, but argument 5 has type ‘char (*)[2053]’ [-Wformat=] - 165 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); - | ^~~ ~~~~~~~~~ - | | - | char (*)[2053] -../xtrn.c:165:88: note: format string is defined here - 165 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); - | ~^ - | | - | char * -../xtrn.c:165:42: warning: format ‘%s’ expects argument of type ‘char *’, but argument 5 has type ‘char (*)[2053]’ [-Wformat=] - 165 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); - | ^~~ ~~~~~~~~~ - | | - | char (*)[2053] -../xtrn.c:165:88: note: format string is defined here - 165 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); - | ~^ - | | - | char * -../xtrn.c:195:42: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[2053]’ [-Wformat=] - 195 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1,&filename); - | ^~~ ~~~~~~~~~ - | | - | char (*)[2053] -../xtrn.c:195:66: note: format string is defined here - 195 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1,&filename); - | ~^ - | | - | char * -../xtrn.c:195:42: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[2053]’ [-Wformat=] - 195 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1,&filename); - | ^~~ ~~~~~~~~~ - | | - | char (*)[2053] -../xtrn.c:195:66: note: format string is defined here - 195 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1,&filename); - | ~^ - | | - | char * -../xtrn.c: In function ‘WriteXTRNImage’: -../xtrn.c:460:46: warning: format ‘%s’ expects argument of type ‘char *’, but argument 5 has type ‘char (*)[2053]’ [-Wformat=] - 460 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", - | ^~~ - 461 | (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); - | ~~~~~~~~~ - | | - | char (*)[2053] -../xtrn.c:460:92: note: format string is defined here - 460 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", - | ~^ - | | - | char * -../xtrn.c:460:46: warning: format ‘%s’ expects argument of type ‘char *’, but argument 5 has type ‘char (*)[2053]’ [-Wformat=] - 460 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", - | ^~~ - 461 | (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); - | ~~~~~~~~~ - | | - | char (*)[2053] -../xtrn.c:460:92: note: format string is defined here - 460 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", - | ~^ - | | - | char * -../xtrn.c:503:46: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[2053]’ [-Wformat=] - 503 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", - | ^~~ - 504 | (MAGICK_SIZE_T *)¶m1,&filename); - | ~~~~~~~~~ - | | - | char (*)[2053] -../xtrn.c:503:70: note: format string is defined here - 503 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", - | ~^ - | | - | char * -../xtrn.c:503:46: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[2053]’ [-Wformat=] - 503 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", - | ^~~ - 504 | (MAGICK_SIZE_T *)¶m1,&filename); - | ~~~~~~~~~ - | | - | char (*)[2053] -../xtrn.c:503:70: note: format string is defined here - 503 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", - | ~^ - | | - | char * -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o static.obj -c ../static.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../static.c:39: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o yuv.obj -c ../yuv.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../yuv.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o coders.dll -shared -Wl,--out-implib,libcoders.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ art.obj avi.obj avs.obj bmp.obj cals.obj caption.obj cineon.obj clipboard.obj cmyk.obj cut.obj dcm.obj dcraw.obj dib.obj dps.obj dpx.obj emf.obj ept.obj fax.obj fits.obj fpx.obj gif.obj gradient.obj gray.obj hdf.obj histogram.obj hrz.obj html.obj icon.obj identity.obj info.obj jbig.obj jnx.obj jp2.obj jpeg.obj label.obj locale.obj logo.obj mac.obj map.obj mat.obj matte.obj meta.obj miff.obj mono.obj mpc.obj mpeg.obj mpr.obj msl.obj mtv.obj mvg.obj null.obj otb.obj palm.obj pcd.obj pcl.obj pcx.obj pdb.obj pdf.obj pict.obj pix.obj plasma.obj png.obj pnm.obj preview.obj ps.obj ps2.obj ps3.obj psd.obj pwp.obj rgb.obj rla.obj rle.obj sct.obj sfw.obj sgi.obj stegano.obj sun.obj svg.obj tga.obj tiff.obj tile.obj tim.obj topol.obj ttf.obj txt.obj uil.obj url.obj uyvy.obj vicar.obj vid.obj viff.obj wbmp.obj webp.obj wmf.obj wpg.obj x.obj xbm.obj xc.obj xcf.obj xpm.obj xtrn.obj xwd.obj yuv.obj static.obj -lbzlib -ljbig -ljp2 -lMagick -lpng -lttf -lwebp -lwmf -ltiff -ljpeg -lxml2 -lnanohttp_stream -lzlib -luser32 -lgdi32 -loleaut32 -lws2_32 -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make -C ./Magick++ install -make -C ./lib install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' -mkdir -p O.Common -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF TypeMetric.d ../TypeMetric.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Thread.d ../Thread.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF STL.d ../STL.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Pixels.d ../Pixels.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Montage.d ../Montage.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Options.d ../Options.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF ImageRef.d ../ImageRef.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Image.d ../Image.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Geometry.d ../Geometry.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Functions.d ../Functions.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Exception.d ../Exception.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Drawable.d ../Drawable.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Color.d ../Color.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF CoderInfo.d ../CoderInfo.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF BlobRef.d ../BlobRef.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Blob.d ../Blob.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -mkdir ../../../../../include/Magick++ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../BlobRef.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Blob.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../CoderInfo.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Color.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Exception.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Functions.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Geometry.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Drawable.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../ImageRef.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Montage.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Options.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Image.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Pixels.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Thread.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../TypeMetric.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../STL.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -/usr/bin/ar -rc libMagick++.a Blob.o BlobRef.o CoderInfo.o Color.o Drawable.o Exception.o Functions.o Geometry.o Image.o ImageRef.o Montage.o Options.o Pixels.o STL.o Thread.o TypeMetric.o -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -/usr/bin/ranlib libMagick++.a -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -o libMagick++.so -shared -fPIC -Wl,-hlibMagick++.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 Blob.o BlobRef.o CoderInfo.o Color.o Drawable.o Exception.o Functions.o Geometry.o Image.o ImageRef.o Montage.o Options.o Pixels.o STL.o Thread.o TypeMetric.o -lMagick -lcoders -Wl,-Bdynamic -lXext -lpthread -lm -lrt -ldl -lgcc -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ - T_A=windows-x64-mingw install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF TypeMetric.d -MT TypeMetric.obj ../TypeMetric.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF STL.d -MT STL.obj ../STL.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Thread.d -MT Thread.obj ../Thread.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Options.d -MT Options.obj ../Options.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Montage.d -MT Montage.obj ../Montage.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Pixels.d -MT Pixels.obj ../Pixels.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF ImageRef.d -MT ImageRef.obj ../ImageRef.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Image.d -MT Image.obj ../Image.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Geometry.d -MT Geometry.obj ../Geometry.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Functions.d -MT Functions.obj ../Functions.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Exception.d -MT Exception.obj ../Exception.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Drawable.d -MT Drawable.obj ../Drawable.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Color.d -MT Color.obj ../Color.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF CoderInfo.d -MT CoderInfo.obj ../CoderInfo.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF BlobRef.d -MT BlobRef.obj ../BlobRef.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Blob.d -MT Blob.obj ../Blob.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o BlobRef.obj -c ../BlobRef.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../BlobRef.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../BlobRef.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../BlobRef.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Blob.obj -c ../Blob.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Blob.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Blob.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Blob.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o CoderInfo.obj -c ../CoderInfo.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../CoderInfo.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../CoderInfo.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../CoderInfo.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Color.obj -c ../Color.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Color.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Color.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Color.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Exception.obj -c ../Exception.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Exception.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Exception.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Exception.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Functions.obj -c ../Functions.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Functions.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Functions.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Functions.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Drawable.obj -c ../Drawable.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Drawable.cpp:12: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Drawable.cpp:12: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Drawable.cpp:12: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Geometry.obj -c ../Geometry.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Geometry.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Geometry.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Geometry.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o ImageRef.obj -c ../ImageRef.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Magick++/ImageRef.h:14, - from ../ImageRef.cpp:13: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Magick++/ImageRef.h:14, - from ../ImageRef.cpp:13: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Magick++/ImageRef.h:14, - from ../ImageRef.cpp:13: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Montage.obj -c ../Montage.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Montage.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Montage.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Montage.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Options.obj -c ../Options.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Options.cpp:13: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Options.cpp:13: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Options.cpp:13: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Image.obj -c ../Image.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Image.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Image.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Image.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Pixels.obj -c ../Pixels.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Pixels.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Pixels.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Pixels.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o STL.obj -c ../STL.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Magick++/Image.h:11, - from ../STL.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Magick++/Image.h:11, - from ../STL.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Magick++/Image.h:11, - from ../STL.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o TypeMetric.obj -c ../TypeMetric.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Magick++/TypeMetric.h:13, - from ../TypeMetric.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Magick++/TypeMetric.h:13, - from ../TypeMetric.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Magick++/TypeMetric.h:13, - from ../TypeMetric.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Thread.obj -c ../Thread.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Magick++/Thread.h:13, - from ../Thread.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Magick++/Thread.h:13, - from ../Thread.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Magick++/Thread.h:13, - from ../Thread.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o Magick++.dll -shared -Wl,--out-implib,libMagick++.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ Blob.obj BlobRef.obj CoderInfo.obj Color.obj Drawable.obj Exception.obj Functions.obj Geometry.obj Image.obj ImageRef.obj Montage.obj Options.obj Pixels.obj STL.obj Thread.obj TypeMetric.obj -lMagick -lcoders -lws2_32 -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make -C /builds/DATAnet/adurl/.cache/adcore-R3-10 install -make -C ./configure install -make -C ./ADApp install -make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../.. -make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' -make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../.. -make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' -make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' -mkdir -p O.Common -make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' -make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ - T_A=linux-x86_64 install -make -C ./Db install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease -make -C O.windows-x64-mingw -f ../Makefile TOP=../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db/O.linux-x86_64' -mkdir ../../../db -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db/O.linux-x86_64' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease -make -C ./ADSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myAttributeFunctions.d ../myAttributeFunctions.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myTimeStampSource.d ../myTimeStampSource.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DUSE_TYPED_RSET -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parseAreaPrefixes.d ../parseAreaPrefixes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF functAttribute.d ../functAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF PVAttribute.d ../PVAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF CCDMultiTrack.d ../CCDMultiTrack.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF paramAttribute.d ../paramAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ADDriver.d ../ADDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF asynNDArrayDriver.d ../asynNDArrayDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArray.d ../NDArray.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Nothing to be done for 'install'. -make -C ./op install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayPool.d ../NDArrayPool.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[3]: Nothing to be done for 'install'. -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttributeList.d ../NDAttributeList.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttribute.d ../NDAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -Installing CFG file ../../../cfg/commonLibraryMakefile -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -Installing CFG file ../../../cfg/commonDriverMakefile -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -mkdir ../../../cfg -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -mkdir ../../../include -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -mkdir ../../../dbd -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDAttributeList.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDArray.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../asynNDArrayDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../ADDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../paramAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../CCDMultiTrack.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../PVAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDArrayPool.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DUSE_TYPED_RSET -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../parseAreaPrefixes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../functAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../myTimeStampSource.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../myAttributeFunctions.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -/usr/bin/ar -rc libADBase.a NDAttribute.o NDAttributeList.o NDArrayPool.o NDArray.o asynNDArrayDriver.o ADDriver.o paramAttribute.o CCDMultiTrack.o PVAttribute.o functAttribute.o parseAreaPrefixes.o myTimeStampSource.o myAttributeFunctions.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -/usr/bin/ranlib libADBase.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -o libADBase.so -shared -fPIC -Wl,-hlibADBase.so -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 NDAttribute.o NDAttributeList.o NDArrayPool.o NDArray.o asynNDArrayDriver.o ADDriver.o paramAttribute.o CCDMultiTrack.o PVAttribute.o functAttribute.o parseAreaPrefixes.o myTimeStampSource.o myAttributeFunctions.o -lasyn -ldbRecStd -ldbCore -lca -lCom -lxml2 -Wl,-Bdynamic -lpthread -lreadline -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myTimeStampSource.d -MT myTimeStampSource.obj ../myTimeStampSource.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -DUSE_TYPED_RSET -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parseAreaPrefixes.d -MT parseAreaPrefixes.obj ../parseAreaPrefixes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myAttributeFunctions.d -MT myAttributeFunctions.obj ../myAttributeFunctions.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF functAttribute.d -MT functAttribute.obj ../functAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF PVAttribute.d -MT PVAttribute.obj ../PVAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF CCDMultiTrack.d -MT CCDMultiTrack.obj ../CCDMultiTrack.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF paramAttribute.d -MT paramAttribute.obj ../paramAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ADDriver.d -MT ADDriver.obj ../ADDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF asynNDArrayDriver.d -MT asynNDArrayDriver.obj ../asynNDArrayDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArray.d -MT NDArray.obj ../NDArray.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttributeList.d -MT NDAttributeList.obj ../NDAttributeList.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayPool.d -MT NDArrayPool.obj ../NDArrayPool.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttribute.d -MT NDAttribute.obj ../NDAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDAttributeList.obj -c ../NDAttributeList.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDAttribute.obj -c ../NDAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDArray.obj -c ../NDArray.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o asynNDArrayDriver.obj -c ../asynNDArrayDriver.cpp -../asynNDArrayDriver.cpp: In member function ‘virtual asynStatus asynNDArrayDriver::createFilePath(const char*, int)’: -../asynNDArrayDriver.cpp:134:11: warning: unused variable ‘saveptr’ [-Wunused-variable] - 134 | char* saveptr; - | ^~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ADDriver.obj -c ../ADDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o paramAttribute.obj -c ../paramAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o CCDMultiTrack.obj -c ../CCDMultiTrack.cpp -../CCDMultiTrack.cpp: In member function ‘void CCDMultiTrack::storeTrackAttributes(NDAttributeList*)’: -../CCDMultiTrack.cpp:44:38: warning: unknown conversion type character ‘z’ in format [-Wformat=] - 44 | epicsSnprintf(Buf, 10, "%zd", TrackNum + 1); - | ^ -../CCDMultiTrack.cpp:44:36: warning: too many arguments for format [-Wformat-extra-args] - 44 | epicsSnprintf(Buf, 10, "%zd", TrackNum + 1); - | ^~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o PVAttribute.obj -c ../PVAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDArrayPool.obj -c ../NDArrayPool.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o functAttribute.obj -c ../functAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -DUSE_TYPED_RSET -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o parseAreaPrefixes.obj -c ../parseAreaPrefixes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o myTimeStampSource.obj -c ../myTimeStampSource.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o myAttributeFunctions.obj -c ../myAttributeFunctions.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o ADBase.dll -shared -Wl,--out-implib,libADBase.dll.a -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ NDAttribute.obj NDAttributeList.obj NDArrayPool.obj NDArray.obj asynNDArrayDriver.obj ADDriver.obj paramAttribute.obj CCDMultiTrack.obj PVAttribute.obj functAttribute.obj parseAreaPrefixes.obj myTimeStampSource.obj myAttributeFunctions.obj -lasyn -ldbRecStd -ldbCore -lca -lCom -lxml2 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -mkdir ../../../bin -mkdir ../../../bin/windows-x64-mingw -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.windows-x64-mingw' -make -C ./ntndArrayConverterSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ntndArrayConverter_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ntndArrayConverter.d ../ntndArrayConverter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ntndArrayConverter_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../ntndArrayConverter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -/usr/bin/ar -rc libntndArrayConverter.a ntndArrayConverter.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -/usr/bin/ranlib libntndArrayConverter.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -g++ -o libntndArrayConverter.so -shared -fPIC -Wl,-hlibntndArrayConverter.so -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 ntndArrayConverter.o -lADBase -lpvData -lnt -lasyn -ldbRecStd -ldbCore -lca -lCom -Wl,-Bdynamic -lpthread -lreadline -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ntndArrayConverter_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ntndArrayConverter.d -MT ntndArrayConverter.obj ../ntndArrayConverter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ntndArrayConverter_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ntndArrayConverter.obj -c ../ntndArrayConverter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o ntndArrayConverter.dll -shared -Wl,--out-implib,libntndArrayConverter.dll.a -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ ntndArrayConverter.obj -lADBase -lpvData -lnt -lasyn -ldbRecStd -ldbCore -lca -lCom -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' -make -C ./pluginSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileTIFF.d ../NDFileTIFF.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNexus.d ../NDFileNexus.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginPva.d ../NDPluginPva.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNetCDF.d ../NDFileNetCDF.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileJPEG.d ../NDFileJPEG.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Layout.d ../NDFileHDF5Layout.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5LayoutXML.d ../NDFileHDF5LayoutXML.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5AttributeDataset.d ../NDFileHDF5AttributeDataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Dataset.d ../NDFileHDF5Dataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5.d ../NDFileHDF5.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileMagick.d ../NDFileMagick.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNull.d ../NDFileNull.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFile.d ../NDPluginFile.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPluginFileReader.d ../NDPosPluginFileReader.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPlugin.d ../NDPosPlugin.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCodec.d ../NDPluginCodec.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTransform.d ../NDPluginTransform.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttrPlot.d ../NDPluginAttrPlot.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTimeSeries.d ../NDPluginTimeSeries.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStdArrays.d ../NDPluginStdArrays.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStats.d ../NDPluginStats.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginScatter.d ../NDPluginScatter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROIStat.d ../NDPluginROIStat.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROI.d ../NDPluginROI.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlayTextFont.d ../NDPluginOverlayTextFont.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginProcess.d ../NDPluginProcess.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlay.d ../NDPluginOverlay.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fft.d ../fft.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginGather.d ../NDPluginGather.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFFT.d ../NDPluginFFT.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginColorConvert.d ../NDPluginColorConvert.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayRing.d ../NDArrayRing.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCircularBuff.d ../NDPluginCircularBuff.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttribute.d ../NDPluginAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF throttler.d ../throttler.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginDriver.d ../NDPluginDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/dbdExpand.pl -I. -I.. -I../O.Common -I../../../dbd -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/dbd -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/dbd -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/dbd -I/builds/DATAnet/adurl/.cache/asyn-R4-41/dbd -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/dbd -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/dbd -I/builds/DATAnet/adurl/.cache/adcore-R3-10/dbd -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/dbd -o NDPluginSupport.dbd NDPluginAttribute.dbd NDPluginCircularBuff.dbd NDPluginColorConvert.dbd NDPluginFFT.dbd NDPluginGather.dbd NDPluginOverlay.dbd NDPluginProcess.dbd NDPluginROI.dbd NDPluginROIStat.dbd NDPluginScatter.dbd NDPluginStats.dbd NDPluginStdArrays.dbd NDPluginTimeSeries.dbd NDPluginTransform.dbd NDPluginAttrPlot.dbd NDPluginCodec.dbd -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../throttler.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDArrayRing.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginCircularBuff.cpp -In file included from /usr/include/string.h:495, - from ../NDPluginCircularBuff.cpp:11: -In function ‘char* strncpy(char*, const char*, size_t)’, - inlined from ‘virtual asynStatus NDPluginCircularBuff::writeOctet(asynUser*, const char*, size_t, size_t*)’ at ../NDPluginCircularBuff.cpp:343:14: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:34: warning: ‘char* __builtin_strncpy(char*, const char*, long unsigned int)’ specified bound 100 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginFFT.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../fft.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginGather.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginColorConvert.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginOverlayTextFont.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginProcess.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginOverlay.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginROI.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginScatter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginROIStat.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginStdArrays.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginStats.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginTimeSeries.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginAttrPlot.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginCodec.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPosPlugin.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginTransform.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPosPluginFileReader.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileNull.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginFile.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileMagick.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5Dataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5AttributeDataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5LayoutXML.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileJPEG.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileNetCDF.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5Layout.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileNexus.cpp -../NDFileNexus.cpp: In member function ‘int NDFileNexus::processNode(xmlNode*, NDArray*)’: -../NDFileNexus.cpp:423:36: warning: ‘__builtin___sprintf_chk’ may write a terminating nul past the end of the destination [-Wformat-overflow=] - 423 | sprintf(this->dataPath, "%c%s", '/', dPath); - | ^ -In file included from /usr/include/stdio.h:867, - from ../NDFileNexus.cpp:12: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:34: note: ‘__builtin___sprintf_chk’ output between 2 and 129 bytes into a destination of size 128 - 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, - | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 37 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileTIFF.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginPva.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -/usr/bin/ar -rc libNDPlugin.a NDPluginDriver.o throttler.o NDPluginAttribute.o NDPluginCircularBuff.o NDArrayRing.o NDPluginColorConvert.o NDPluginFFT.o fft.o NDPluginGather.o NDPluginOverlay.o NDPluginOverlayTextFont.o NDPluginProcess.o NDPluginROI.o NDPluginROIStat.o NDPluginScatter.o NDPluginStats.o NDPluginStdArrays.o NDPluginTimeSeries.o NDPluginTransform.o NDPluginAttrPlot.o NDPluginCodec.o NDPosPlugin.o NDPosPluginFileReader.o NDPluginFile.o NDFileNull.o NDFileMagick.o NDFileHDF5.o NDFileHDF5Dataset.o NDFileHDF5AttributeDataset.o NDFileHDF5LayoutXML.o NDFileHDF5Layout.o NDFileJPEG.o NDFileNetCDF.o NDFileNexus.o NDFileTIFF.o NDPluginPva.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -/usr/bin/ranlib libNDPlugin.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -o libNDPlugin.so -shared -fPIC -Wl,-hlibNDPlugin.so -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 NDPluginDriver.o throttler.o NDPluginAttribute.o NDPluginCircularBuff.o NDArrayRing.o NDPluginColorConvert.o NDPluginFFT.o fft.o NDPluginGather.o NDPluginOverlay.o NDPluginOverlayTextFont.o NDPluginProcess.o NDPluginROI.o NDPluginROIStat.o NDPluginScatter.o NDPluginStats.o NDPluginStdArrays.o NDPluginTimeSeries.o NDPluginTransform.o NDPluginAttrPlot.o NDPluginCodec.o NDPosPlugin.o NDPosPluginFileReader.o NDPluginFile.o NDFileNull.o NDFileMagick.o NDFileHDF5.o NDFileHDF5Dataset.o NDFileHDF5AttributeDataset.o NDFileHDF5LayoutXML.o NDFileHDF5Layout.o NDFileJPEG.o NDFileNetCDF.o NDFileNexus.o NDFileTIFF.o NDPluginPva.o -lADBase -lasyn -lntndArrayConverter -lnt -lpvDatabase -lpvAccess -lpvData -lnetCDF -lMagick++ -lcoders -lMagick -ljbig -ljp2 -lbzlib -lpng -lwebp -llcms -lttf -lwmf -lfilters -ltiff -lxml2 -lNeXus -lhdf5 -lhdf5_hl -lblosc -lszip -lzlib -ljpeg -ldbRecStd -ldbCore -lca -lCom -Wl,-Bdynamic -lX11 -lXext -lpthread -lreadline -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileTIFF.d -MT NDFileTIFF.obj ../NDFileTIFF.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginPva.d -MT NDPluginPva.obj ../NDPluginPva.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNexus.d -MT NDFileNexus.obj ../NDFileNexus.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNetCDF.d -MT NDFileNetCDF.obj ../NDFileNetCDF.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileJPEG.d -MT NDFileJPEG.obj ../NDFileJPEG.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Layout.d -MT NDFileHDF5Layout.obj ../NDFileHDF5Layout.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5LayoutXML.d -MT NDFileHDF5LayoutXML.obj ../NDFileHDF5LayoutXML.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5AttributeDataset.d -MT NDFileHDF5AttributeDataset.obj ../NDFileHDF5AttributeDataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Dataset.d -MT NDFileHDF5Dataset.obj ../NDFileHDF5Dataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5.d -MT NDFileHDF5.obj ../NDFileHDF5.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNull.d -MT NDFileNull.obj ../NDFileNull.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileMagick.d -MT NDFileMagick.obj ../NDFileMagick.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFile.d -MT NDPluginFile.obj ../NDPluginFile.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPluginFileReader.d -MT NDPosPluginFileReader.obj ../NDPosPluginFileReader.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPlugin.d -MT NDPosPlugin.obj ../NDPosPlugin.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCodec.d -MT NDPluginCodec.obj ../NDPluginCodec.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTransform.d -MT NDPluginTransform.obj ../NDPluginTransform.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttrPlot.d -MT NDPluginAttrPlot.obj ../NDPluginAttrPlot.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTimeSeries.d -MT NDPluginTimeSeries.obj ../NDPluginTimeSeries.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStdArrays.d -MT NDPluginStdArrays.obj ../NDPluginStdArrays.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStats.d -MT NDPluginStats.obj ../NDPluginStats.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginScatter.d -MT NDPluginScatter.obj ../NDPluginScatter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROI.d -MT NDPluginROI.obj ../NDPluginROI.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROIStat.d -MT NDPluginROIStat.obj ../NDPluginROIStat.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlayTextFont.d -MT NDPluginOverlayTextFont.obj ../NDPluginOverlayTextFont.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginProcess.d -MT NDPluginProcess.obj ../NDPluginProcess.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlay.d -MT NDPluginOverlay.obj ../NDPluginOverlay.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fft.d -MT fft.obj ../fft.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginGather.d -MT NDPluginGather.obj ../NDPluginGather.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFFT.d -MT NDPluginFFT.obj ../NDPluginFFT.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginColorConvert.d -MT NDPluginColorConvert.obj ../NDPluginColorConvert.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayRing.d -MT NDArrayRing.obj ../NDArrayRing.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCircularBuff.d -MT NDPluginCircularBuff.obj ../NDPluginCircularBuff.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttribute.d -MT NDPluginAttribute.obj ../NDPluginAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF throttler.d -MT throttler.obj ../throttler.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginDriver.d -MT NDPluginDriver.obj ../NDPluginDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o throttler.obj -c ../throttler.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginAttribute.obj -c ../NDPluginAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginDriver.obj -c ../NDPluginDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDArrayRing.obj -c ../NDArrayRing.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginCircularBuff.obj -c ../NDPluginCircularBuff.cpp -../NDPluginCircularBuff.cpp: In member function ‘virtual asynStatus NDPluginCircularBuff::writeOctet(asynUser*, const char*, size_t, size_t*)’: -../NDPluginCircularBuff.cpp:343:14: warning: ‘char* strncpy(char*, const char*, size_t)’ specified bound 100 equals destination size [-Wstringop-truncation] - 343 | strncpy(triggerCalcInfix_, value, sizeof(triggerCalcInfix_)); - | ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginFFT.obj -c ../NDPluginFFT.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o fft.obj -c ../fft.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginGather.obj -c ../NDPluginGather.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginColorConvert.obj -c ../NDPluginColorConvert.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginOverlayTextFont.obj -c ../NDPluginOverlayTextFont.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginProcess.obj -c ../NDPluginProcess.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginOverlay.obj -c ../NDPluginOverlay.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginROI.obj -c ../NDPluginROI.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginScatter.obj -c ../NDPluginScatter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginROIStat.obj -c ../NDPluginROIStat.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginStdArrays.obj -c ../NDPluginStdArrays.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginStats.obj -c ../NDPluginStats.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginTimeSeries.obj -c ../NDPluginTimeSeries.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginAttrPlot.obj -c ../NDPluginAttrPlot.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginCodec.obj -c ../NDPluginCodec.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPosPlugin.obj -c ../NDPosPlugin.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPosPluginFileReader.obj -c ../NDPosPluginFileReader.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginTransform.obj -c ../NDPluginTransform.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileNull.obj -c ../NDFileNull.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginFile.obj -c ../NDPluginFile.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileMagick.obj -c ../NDFileMagick.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5Dataset.obj -c ../NDFileHDF5Dataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5AttributeDataset.obj -c ../NDFileHDF5AttributeDataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5LayoutXML.obj -c ../NDFileHDF5LayoutXML.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5.obj -c ../NDFileHDF5.cpp -../NDFileHDF5.cpp: In member function ‘char* NDFileHDF5::getDimsReport()’: -../NDFileHDF5.cpp:3563:46: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 3563 | epicsSnprintf(strdims+c, maxlen-c, "%6lli,", dimsizes[i].dimsize[j]); - | ^ -../NDFileHDF5.cpp:3563:42: warning: too many arguments for format [-Wformat-extra-args] - 3563 | epicsSnprintf(strdims+c, maxlen-c, "%6lli,", dimsizes[i].dimsize[j]); - | ^~~~~~~~ -In file included from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynStandardInterfaces.h:20, - from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynPortDriver.h:11, - from ../../../include/asynNDArrayDriver.h:7, - from ../NDPluginDriver.h:12, - from ../NDPluginFile.h:7, - from ../NDFileHDF5.h:13, - from ../NDFileHDF5.cpp:28: -../NDFileHDF5.cpp: In member function ‘asynStatus NDFileHDF5::createNewFile(const char*)’: -../NDFileHDF5.cpp:3765:11: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 3765 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynDriver.h:281:70: note: in definition of macro ‘asynPrint’ - 281 | ? pasynTrace->printSource((pasynUser),(reason),__FILE__,__LINE__,__VA_ARGS__) \ - | ^~~~~~~~~~~ -../NDFileHDF5.cpp:3765:60: note: format string is defined here - 3765 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", - | ^ -In file included from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynStandardInterfaces.h:20, - from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynPortDriver.h:11, - from ../../../include/asynNDArrayDriver.h:7, - from ../NDPluginDriver.h:12, - from ../NDPluginFile.h:7, - from ../NDFileHDF5.h:13, - from ../NDFileHDF5.cpp:28: -../NDFileHDF5.cpp:3765:11: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 3765 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynDriver.h:281:70: note: in definition of macro ‘asynPrint’ - 281 | ? pasynTrace->printSource((pasynUser),(reason),__FILE__,__LINE__,__VA_ARGS__) \ - | ^~~~~~~~~~~ -../NDFileHDF5.cpp:3765:79: note: format string is defined here - 3765 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", - | ^ -In file included from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynStandardInterfaces.h:20, - from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynPortDriver.h:11, - from ../../../include/asynNDArrayDriver.h:7, - from ../NDPluginDriver.h:12, - from ../NDPluginFile.h:7, - from ../NDFileHDF5.h:13, - from ../NDFileHDF5.cpp:28: -../NDFileHDF5.cpp:3765:11: warning: too many arguments for format [-Wformat-extra-args] - 3765 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynDriver.h:281:70: note: in definition of macro ‘asynPrint’ - 281 | ? pasynTrace->printSource((pasynUser),(reason),__FILE__,__LINE__,__VA_ARGS__) \ - | ^~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileJPEG.obj -c ../NDFileJPEG.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileNetCDF.obj -c ../NDFileNetCDF.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5Layout.obj -c ../NDFileHDF5Layout.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileNexus.obj -c ../NDFileNexus.cpp -../NDFileNexus.cpp: In member function ‘void NDFileNexus::constTextToDataType(char*, int, void*)’: -../NDFileNexus.cpp:703:39: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 703 | sscanf((const char *)inText, "%lld", &i64val); - | ^ -../NDFileNexus.cpp:703:36: warning: too many arguments for format [-Wformat-extra-args] - 703 | sscanf((const char *)inText, "%lld", &i64val); - | ^~~~~~ -../NDFileNexus.cpp:703:39: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 703 | sscanf((const char *)inText, "%lld", &i64val); - | ^ -../NDFileNexus.cpp:703:36: warning: too many arguments for format [-Wformat-extra-args] - 703 | sscanf((const char *)inText, "%lld", &i64val); - | ^~~~~~ -../NDFileNexus.cpp:707:39: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 707 | sscanf((const char *)inText, "%llu", &i64val); - | ^ -../NDFileNexus.cpp:707:36: warning: too many arguments for format [-Wformat-extra-args] - 707 | sscanf((const char *)inText, "%llu", &i64val); - | ^~~~~~ -../NDFileNexus.cpp:707:39: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 707 | sscanf((const char *)inText, "%llu", &i64val); - | ^ -../NDFileNexus.cpp:707:36: warning: too many arguments for format [-Wformat-extra-args] - 707 | sscanf((const char *)inText, "%llu", &i64val); - | ^~~~~~ -../NDFileNexus.cpp: In member function ‘int NDFileNexus::processNode(xmlNode*, NDArray*)’: -../NDFileNexus.cpp:423:36: warning: ‘sprintf’ may write a terminating nul past the end of the destination [-Wformat-overflow=] - 423 | sprintf(this->dataPath, "%c%s", '/', dPath); - | ^ -../NDFileNexus.cpp:423:14: note: ‘sprintf’ output between 2 and 129 bytes into a destination of size 128 - 423 | sprintf(this->dataPath, "%c%s", '/', dPath); - | ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileTIFF.obj -c ../NDFileTIFF.cpp -../NDFileTIFF.cpp: In member function ‘virtual asynStatus NDFileTIFF::openFile(const char*, NDFileOpenMode_t, NDArray*)’: -../NDFileTIFF.cpp:307:69: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 307 | epicsSnprintf(tagString, sizeof(tagString)-1, "%s:%lld", attributeName, value.i64); - | ^ -../NDFileTIFF.cpp:307:63: warning: too many arguments for format [-Wformat-extra-args] - 307 | epicsSnprintf(tagString, sizeof(tagString)-1, "%s:%lld", attributeName, value.i64); - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginPva.obj -c ../NDPluginPva.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o NDPlugin.dll -shared -Wl,--out-implib,libNDPlugin.dll.a -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ NDPluginDriver.obj throttler.obj NDPluginAttribute.obj NDPluginCircularBuff.obj NDArrayRing.obj NDPluginColorConvert.obj NDPluginFFT.obj fft.obj NDPluginGather.obj NDPluginOverlay.obj NDPluginOverlayTextFont.obj NDPluginProcess.obj NDPluginROI.obj NDPluginROIStat.obj NDPluginScatter.obj NDPluginStats.obj NDPluginStdArrays.obj NDPluginTimeSeries.obj NDPluginTransform.obj NDPluginAttrPlot.obj NDPluginCodec.obj NDPosPlugin.obj NDPosPluginFileReader.obj NDPluginFile.obj NDFileNull.obj NDFileMagick.obj NDFileHDF5.obj NDFileHDF5Dataset.obj NDFileHDF5AttributeDataset.obj NDFileHDF5LayoutXML.obj NDFileHDF5Layout.obj NDFileJPEG.obj NDFileNetCDF.obj NDFileNexus.obj NDFileTIFF.obj NDPluginPva.obj -lADBase -lasyn -lntndArrayConverter -lnt -lpvDatabase -lpvAccess -lpvData -lnetCDF -lMagick++ -lcoders -lMagick -ljbig -ljp2 -lbzlib -lpng -lwebp -llcms -lttf -lwmf -lfilters -ltiff -lxml2 -lNeXus -lhdf5 -lhdf5_hl -lblosc -lszip -lzlib -ljpeg -ldbRecStd -ldbCore -lca -lCom -lws2_32 -luser32 -lgdi32 -loleaut32 -lws2_32 -/usr/bin/x86_64-w64-mingw32-ld: /usr/lib/gcc/x86_64-w64-mingw32/9.3-posix/libgcc_eh.a(unwind-seh.o):(.text+0x3d0): multiple definition of `_Unwind_Resume'; /builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw/libMagick++.dll.a(d000016.o):(.text+0x0): first defined here -collect2: error: ld returned 1 exit status -make[4]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_BUILD:298: NDPlugin.dll] Error 1 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.windows-x64-mingw' -make[3]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_ARCHS:58: install.windows-x64-mingw] Error 2 -make[2]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: pluginSrc.install] Error 2 -make[1]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: ADApp.install] Error 2 -make: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: /builds/DATAnet/adurl/.cache/adcore-R3-10.install] Error 2 -DEBUG:__main__:EXEC DONE diff --git a/.ci-local/adurl_install_Linux.log b/.ci-local/adurl_install_Linux.log deleted file mode 100644 index 5c47d048..00000000 --- a/.ci-local/adurl_install_Linux.log +++ /dev/null @@ -1,10573 +0,0 @@ -DEBUG:__main__:Detected a build hosted on gitlab, using gcc on linux (x64) configured as shared-optimized (test: True, clean_deps: False) -Build using gcc compiler on linux (x64) hosted by gitlab -Python setup -2.7.18 (default, Mar 8 2021, 13:02:45) -[GCC 9.3.0] -PYTHONPATH - /builds/DATAnet/adurl/.ci - /usr/lib/python2.7 - /usr/lib/python2.7/plat-x86_64-linux-gnu - /usr/lib/python2.7/lib-tk - /usr/lib/python2.7/lib-old - /usr/lib/python2.7/lib-dynload - /usr/local/lib/python2.7/dist-packages - /usr/lib/python2.7/dist-packages -platform = linux-x86_64 -Opening setup file .ci-local/stable.set -DEBUG:__main__:.ci-local/stable.set: setup[MODULES] = sncseq sscan calc asyn autosave busy area_Detector ADSupport ADCore -DEBUG:__main__:.ci-local/stable.set: setup[BASE] = R7.0.3.1 -DEBUG:__main__:.ci-local/stable.set: setup[SNCSEQ] = R2-2-9 -DEBUG:__main__:.ci-local/stable.set: setup[SSCAN] = R2-11-5 -DEBUG:__main__:.ci-local/stable.set: setup[CALC] = R3-7-3 -DEBUG:__main__:.ci-local/stable.set: setup[ASYN] = R4-41 -DEBUG:__main__:.ci-local/stable.set: setup[BUSY] = R1-7-1 -DEBUG:__main__:.ci-local/stable.set: setup[AUTOSAVE] = R5-7-1 -DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR] = R3-10 -DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR_REPOURL] = https://github.com/areaDetector/areaDetector -DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR_RECURSIVE] = NO -DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR_HOOK] = .ci-local/area_detector_hook.sh -DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT] = master -DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT_REPOURL] = https://github.com/pheest/ADSupport -DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT_RECURSIVE] = NO -DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT_HOOK] = .ci-local/adsupport_hook.sh -DEBUG:__main__:.ci-local/stable.set: setup[ADCORE] = R3-10 -DEBUG:__main__:.ci-local/stable.set: setup[ADCORE_REPOURL] = https://github.com/areaDetector/ADCore -DEBUG:__main__:.ci-local/stable.set: setup[ADCORE_RECURSIVE] = NO -DEBUG:__main__:.ci-local/stable.set: setup[ADCORE_HOOK] = .ci-local/adcore_hook.sh -DEBUG:__main__:Done with setup file .ci-local/stable.set -Opening setup file .ci/defaults.set -DEBUG:__main__:.ci/defaults.set: setup[BASE_DIRNAME] = base -DEBUG:__main__:.ci/defaults.set: setup[BASE_REPONAME] = epics-base -DEBUG:__main__:.ci/defaults.set: setup[BASE_REPOOWNER] = epics-base -DEBUG:__main__:.ci/defaults.set: setup[BASE_VARNAME] = EPICS_BASE -DEBUG:__main__:.ci/defaults.set: setup[PVDATA_DIRNAME] = pvData -DEBUG:__main__:.ci/defaults.set: setup[PVDATA_REPONAME] = pvDataCPP -DEBUG:__main__:.ci/defaults.set: setup[PVDATA_REPOOWNER] = epics-base -DEBUG:__main__:.ci/defaults.set: setup[PVACCESS_DIRNAME] = pvAccess -DEBUG:__main__:.ci/defaults.set: setup[PVACCESS_REPONAME] = pvAccessCPP -DEBUG:__main__:.ci/defaults.set: setup[PVACCESS_REPOOWNER] = epics-base -DEBUG:__main__:.ci/defaults.set: setup[NTYPES_DIRNAME] = normativeTypes -DEBUG:__main__:.ci/defaults.set: setup[NTYPES_REPONAME] = normativeTypesCPP -DEBUG:__main__:.ci/defaults.set: setup[NTYPES_REPOOWNER] = epics-base -DEBUG:__main__:.ci/defaults.set: setup[SNCSEQ_REPOURL] = https://www-csr.bessy.de/control/SoftDist/sequencer/repo/branch-2-2.git -DEBUG:__main__:.ci/defaults.set: setup[SNCSEQ_DEPTH] = 0 -DEBUG:__main__:.ci/defaults.set: setup[SNCSEQ_DIRNAME] = seq -DEBUG:__main__:.ci/defaults.set: setup[STREAM_REPONAME] = StreamDevice -DEBUG:__main__:.ci/defaults.set: setup[STREAM_REPOOWNER] = paulscherrerinstitute -DEBUG:__main__:Done with setup file .ci/defaults.set -DEBUG:__main__:ENV assignment: BASE_RECURSIVE = YES -DEBUG:__main__:Loaded setup -DEBUG:__main__: ADCORE = "R3-10" -DEBUG:__main__: ADCORE_DEPTH = "-1" -DEBUG:__main__: ADCORE_DIRNAME = "adcore" -DEBUG:__main__: ADCORE_HOOK = ".ci-local/adcore_hook.sh" -DEBUG:__main__: ADCORE_RECURSIVE = "NO" -DEBUG:__main__: ADCORE_REPONAME = "adcore" -DEBUG:__main__: ADCORE_REPOOWNER = "epics-modules" -DEBUG:__main__: ADCORE_REPOURL = "https://github.com/areaDetector/ADCore" -DEBUG:__main__: ADCORE_VARNAME = "ADCORE" -DEBUG:__main__: ADD_MODULES = "" -DEBUG:__main__: ADSUPPORT = "master" -DEBUG:__main__: ADSUPPORT_DEPTH = "-1" -DEBUG:__main__: ADSUPPORT_DIRNAME = "adsupport" -DEBUG:__main__: ADSUPPORT_HOOK = ".ci-local/adsupport_hook.sh" -DEBUG:__main__: ADSUPPORT_RECURSIVE = "NO" -DEBUG:__main__: ADSUPPORT_REPONAME = "adsupport" -DEBUG:__main__: ADSUPPORT_REPOOWNER = "epics-modules" -DEBUG:__main__: ADSUPPORT_REPOURL = "https://github.com/pheest/ADSupport" -DEBUG:__main__: ADSUPPORT_VARNAME = "ADSUPPORT" -DEBUG:__main__: AREA_DETECTOR = "R3-10" -DEBUG:__main__: AREA_DETECTOR_DEPTH = "-1" -DEBUG:__main__: AREA_DETECTOR_DIRNAME = "area_detector" -DEBUG:__main__: AREA_DETECTOR_HOOK = ".ci-local/area_detector_hook.sh" -DEBUG:__main__: AREA_DETECTOR_RECURSIVE = "NO" -DEBUG:__main__: AREA_DETECTOR_REPONAME = "area_detector" -DEBUG:__main__: AREA_DETECTOR_REPOOWNER = "epics-modules" -DEBUG:__main__: AREA_DETECTOR_REPOURL = "https://github.com/areaDetector/areaDetector" -DEBUG:__main__: AREA_DETECTOR_VARNAME = "AREA_DETECTOR" -DEBUG:__main__: ASYN = "R4-41" -DEBUG:__main__: ASYN_DEPTH = "-1" -DEBUG:__main__: ASYN_DIRNAME = "asyn" -DEBUG:__main__: ASYN_RECURSIVE = "YES" -DEBUG:__main__: ASYN_REPONAME = "asyn" -DEBUG:__main__: ASYN_REPOOWNER = "epics-modules" -DEBUG:__main__: ASYN_REPOURL = "https://github.com/epics-modules/asyn.git" -DEBUG:__main__: ASYN_VARNAME = "ASYN" -DEBUG:__main__: AUTOSAVE = "R5-7-1" -DEBUG:__main__: AUTOSAVE_DEPTH = "-1" -DEBUG:__main__: AUTOSAVE_DIRNAME = "autosave" -DEBUG:__main__: AUTOSAVE_RECURSIVE = "YES" -DEBUG:__main__: AUTOSAVE_REPONAME = "autosave" -DEBUG:__main__: AUTOSAVE_REPOOWNER = "epics-modules" -DEBUG:__main__: AUTOSAVE_REPOURL = "https://github.com/epics-modules/autosave.git" -DEBUG:__main__: AUTOSAVE_VARNAME = "AUTOSAVE" -DEBUG:__main__: BASE = "R7.0.3.1" -DEBUG:__main__: BASE_DEPTH = "-1" -DEBUG:__main__: BASE_DIRNAME = "base" -DEBUG:__main__: BASE_RECURSIVE = "YES" -DEBUG:__main__: BASE_REPONAME = "epics-base" -DEBUG:__main__: BASE_REPOOWNER = "epics-base" -DEBUG:__main__: BASE_REPOURL = "https://github.com/epics-base/epics-base.git" -DEBUG:__main__: BASE_VARNAME = "EPICS_BASE" -DEBUG:__main__: BUSY = "R1-7-1" -DEBUG:__main__: BUSY_DEPTH = "-1" -DEBUG:__main__: BUSY_DIRNAME = "busy" -DEBUG:__main__: BUSY_RECURSIVE = "YES" -DEBUG:__main__: BUSY_REPONAME = "busy" -DEBUG:__main__: BUSY_REPOOWNER = "epics-modules" -DEBUG:__main__: BUSY_REPOURL = "https://github.com/epics-modules/busy.git" -DEBUG:__main__: BUSY_VARNAME = "BUSY" -DEBUG:__main__: CALC = "R3-7-3" -DEBUG:__main__: CALC_DEPTH = "-1" -DEBUG:__main__: CALC_DIRNAME = "calc" -DEBUG:__main__: CALC_RECURSIVE = "YES" -DEBUG:__main__: CALC_REPONAME = "calc" -DEBUG:__main__: CALC_REPOOWNER = "epics-modules" -DEBUG:__main__: CALC_REPOURL = "https://github.com/epics-modules/calc.git" -DEBUG:__main__: CALC_VARNAME = "CALC" -DEBUG:__main__: MODULES = "sncseq sscan calc asyn autosave busy area_Detector ADSupport ADCore" -DEBUG:__main__: NTYPES_DIRNAME = "normativeTypes" -DEBUG:__main__: NTYPES_REPONAME = "normativeTypesCPP" -DEBUG:__main__: NTYPES_REPOOWNER = "epics-base" -DEBUG:__main__: PVACCESS_DIRNAME = "pvAccess" -DEBUG:__main__: PVACCESS_REPONAME = "pvAccessCPP" -DEBUG:__main__: PVACCESS_REPOOWNER = "epics-base" -DEBUG:__main__: PVDATA_DIRNAME = "pvData" -DEBUG:__main__: PVDATA_REPONAME = "pvDataCPP" -DEBUG:__main__: PVDATA_REPOOWNER = "epics-base" -DEBUG:__main__: REPOOWNER = "epics-modules" -DEBUG:__main__: SNCSEQ = "R2-2-9" -DEBUG:__main__: SNCSEQ_DEPTH = "0" -DEBUG:__main__: SNCSEQ_DIRNAME = "seq" -DEBUG:__main__: SNCSEQ_RECURSIVE = "YES" -DEBUG:__main__: SNCSEQ_REPONAME = "sncseq" -DEBUG:__main__: SNCSEQ_REPOOWNER = "epics-modules" -DEBUG:__main__: SNCSEQ_REPOURL = "https://www-csr.bessy.de/control/SoftDist/sequencer/repo/branch-2-2.git" -DEBUG:__main__: SNCSEQ_VARNAME = "SNCSEQ" -DEBUG:__main__: SSCAN = "R2-11-5" -DEBUG:__main__: SSCAN_DEPTH = "-1" -DEBUG:__main__: SSCAN_DIRNAME = "sscan" -DEBUG:__main__: SSCAN_RECURSIVE = "YES" -DEBUG:__main__: SSCAN_REPONAME = "sscan" -DEBUG:__main__: SSCAN_REPOOWNER = "epics-modules" -DEBUG:__main__: SSCAN_REPOURL = "https://github.com/epics-modules/sscan.git" -DEBUG:__main__: SSCAN_VARNAME = "SSCAN" -DEBUG:__main__: STREAM_REPONAME = "StreamDevice" -DEBUG:__main__: STREAM_REPOOWNER = "paulscherrerinstitute" -DEBUG:__main__:Effective module list: ['BASE', 'SNCSEQ', 'SSCAN', 'CALC', 'ASYN', 'AUTOSAVE', 'BUSY', 'AREA_DETECTOR', 'ADSUPPORT', 'ADCORE'] -DEBUG:__main__:EXEC 'git config --global advice.detachedHead false' in /builds/DATAnet/adurl -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Adding dependency BASE with tag R7.0.3.1 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-base/epics-base.git R7.0.3.1' in /builds/DATAnet/adurl -9cd04f577222ab0eecae23dfc143d1c494d06e2e refs/tags/R7.0.3.1 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency BASE: directory /builds/DATAnet/adurl/.cache/base-R7.0.3.1 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit 34834dfe973a577f342503441e7b33b7fe322de5, git head is 34834dfe973a577f342503441e7b33b7fe322de5 -Found R7.0.3.1 of dependency BASE up-to-date in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 -DEBUG:__main__:RELEASE.local does not exist, creating it -DEBUG:__main__:Opening RELEASE.local for adding 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding new definition: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency SNCSEQ with tag R2-2-9 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://www-csr.bessy.de/control/SoftDist/sequencer/repo/branch-2-2.git R2-2-9' in /builds/DATAnet/adurl -b21d8a8763599326115ebbba6c62905d814b3ccb refs/tags/R2-2-9 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency SNCSEQ: directory /builds/DATAnet/adurl/.cache/seq-R2-2-9 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/seq-R2-2-9 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit e5e361509df1c0d3c667872243d8f7a9894514b4, git head is e5e361509df1c0d3c667872243d8f7a9894514b4 -Found R2-2-9 of dependency SNCSEQ up-to-date in /builds/DATAnet/adurl/.cache/seq-R2-2-9 -DEBUG:__main__:Opening RELEASE.local for adding 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency SSCAN with tag R2-11-5 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/sscan.git R2-11-5' in /builds/DATAnet/adurl -f4ed91fa90d81eee5ba92d0d0c00d8d5d0b269da refs/tags/R2-11-5 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency SSCAN: directory /builds/DATAnet/adurl/.cache/sscan-R2-11-5 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/sscan-R2-11-5 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit f4ed91fa90d81eee5ba92d0d0c00d8d5d0b269da, git head is f4ed91fa90d81eee5ba92d0d0c00d8d5d0b269da -Found R2-11-5 of dependency SSCAN up-to-date in /builds/DATAnet/adurl/.cache/sscan-R2-11-5 -DEBUG:__main__:Opening RELEASE.local for adding 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency CALC with tag R3-7-3 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/calc.git R3-7-3' in /builds/DATAnet/adurl -2a3ceff7afee73fd82a2c60d637611020cb65bca refs/tags/R3-7-3 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency CALC: directory /builds/DATAnet/adurl/.cache/calc-R3-7-3 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/calc-R3-7-3 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit 2a3ceff7afee73fd82a2c60d637611020cb65bca, git head is 2a3ceff7afee73fd82a2c60d637611020cb65bca -Found R3-7-3 of dependency CALC up-to-date in /builds/DATAnet/adurl/.cache/calc-R3-7-3 -DEBUG:__main__:Opening RELEASE.local for adding 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency ASYN with tag R4-41 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/asyn.git R4-41' in /builds/DATAnet/adurl -0c70f16c4b27f6717920f40e8c8e0fb2182cac64 refs/tags/R4-41 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency ASYN: directory /builds/DATAnet/adurl/.cache/asyn-R4-41 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/asyn-R4-41 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit 0c70f16c4b27f6717920f40e8c8e0fb2182cac64, git head is 0c70f16c4b27f6717920f40e8c8e0fb2182cac64 -Found R4-41 of dependency ASYN up-to-date in /builds/DATAnet/adurl/.cache/asyn-R4-41 -DEBUG:__main__:Opening RELEASE.local for adding 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency AUTOSAVE with tag R5-7-1 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/autosave.git R5-7-1' in /builds/DATAnet/adurl -31e041c2ba4e0212f11ce5cf5541b572d1d1e887 refs/tags/R5-7-1 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency AUTOSAVE: directory /builds/DATAnet/adurl/.cache/autosave-R5-7-1 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/autosave-R5-7-1 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit 31e041c2ba4e0212f11ce5cf5541b572d1d1e887, git head is 31e041c2ba4e0212f11ce5cf5541b572d1d1e887 -Found R5-7-1 of dependency AUTOSAVE up-to-date in /builds/DATAnet/adurl/.cache/autosave-R5-7-1 -DEBUG:__main__:Opening RELEASE.local for adding 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency BUSY with tag R1-7-1 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/busy.git R1-7-1' in /builds/DATAnet/adurl -adb6da968ceac134d4d67be495e9f196c31a1b3d refs/tags/R1-7-1 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency BUSY: directory /builds/DATAnet/adurl/.cache/busy-R1-7-1 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/busy-R1-7-1 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit adb6da968ceac134d4d67be495e9f196c31a1b3d, git head is adb6da968ceac134d4d67be495e9f196c31a1b3d -Found R1-7-1 of dependency BUSY up-to-date in /builds/DATAnet/adurl/.cache/busy-R1-7-1 -DEBUG:__main__:Opening RELEASE.local for adding 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency AREA_DETECTOR with tag R3-10 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/areaDetector/areaDetector R3-10' in /builds/DATAnet/adurl -9739d42659d180f88e08104cad4d02cbd414a75f refs/tags/R3-10 -DEBUG:__main__:EXEC DONE -Cloning R3-10 of dependency AREA_DETECTOR into /builds/DATAnet/adurl/.cache/area_detector-R3-10 -DEBUG:__main__:EXEC 'git clone --quiet --depth 5 --branch R3-10 https://github.com/areaDetector/areaDetector area_detector-R3-10' in /builds/DATAnet/adurl/.cache -DEBUG:__main__:EXEC DONE -commit 9739d42659d180f88e08104cad4d02cbd414a75f -Author: Mark Rivers -Date: Sun Sep 20 15:28:44 2020 -0500 - - Notes for R3-10 -DEBUG:__main__:Setting do_recompile = True (all following modules will be recompiled -Running hook .ci-local/area_detector_hook.sh in /builds/DATAnet/adurl/.cache/area_detector-R3-10 -Reading package lists... -Building dependency tree... -Reading state information... -libxext-dev is already the newest version (2:1.3.4-0ubuntu1). -libx11-dev is already the newest version (2:1.6.9-2ubuntu1.2). -The following package was automatically installed and is no longer required: - libfwupdplugin1 -Use 'sudo apt autoremove' to remove it. -0 to upgrade, 0 to newly install, 0 to remove and 8 not to upgrade. -/builds/DATAnet/adurl/.cache/area_detector-R3-10/configure /builds/DATAnet/adurl/.cache/area_detector-R3-10 -Copying from example. -/builds/DATAnet/adurl/.cache/area_detector-R3-10 -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/area_detector-R3-10 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Writing hash of checked-out dependency (9739d42659d180f88e08104cad4d02cbd414a75f) to marker file -DEBUG:__main__:Opening RELEASE.local for adding 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency ADSUPPORT with tag master -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/pheest/ADSupport master' in /builds/DATAnet/adurl -1b5b589b560b90fb37d152ed7440aef4162119b5 refs/heads/master -DEBUG:__main__:EXEC DONE -Cloning master of dependency ADSUPPORT into /builds/DATAnet/adurl/.cache/adsupport-master -DEBUG:__main__:EXEC 'git clone --quiet --depth 5 --branch master https://github.com/pheest/ADSupport adsupport-master' in /builds/DATAnet/adurl/.cache -DEBUG:__main__:EXEC DONE -commit 1b5b589b560b90fb37d152ed7440aef4162119b5 -Author: Heesterman, Peter J -Date: Thu May 19 16:55:57 2022 +0100 - - Need to define XMLPUBFUN __declspec(dllimport) for DLL importing builds. - There's no need for any difference between Visual Studio and MingW build defines. -DEBUG:__main__:Setting do_recompile = True (all following modules will be recompiled -Running hook .ci-local/adsupport_hook.sh in /builds/DATAnet/adurl/.cache/adsupport-master -Reading package lists... -Building dependency tree... -Reading state information... -libxext-dev is already the newest version (2:1.3.4-0ubuntu1). -libx11-dev is already the newest version (2:1.6.9-2ubuntu1.2). -The following package was automatically installed and is no longer required: - libfwupdplugin1 -Use 'sudo apt autoremove' to remove it. -0 to upgrade, 0 to newly install, 0 to remove and 8 not to upgrade. -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/adsupport-master -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Writing hash of checked-out dependency (1b5b589b560b90fb37d152ed7440aef4162119b5) to marker file -DEBUG:__main__:Opening RELEASE.local for adding 'ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency ADCORE with tag R3-10 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/areaDetector/ADCore R3-10' in /builds/DATAnet/adurl -7fd8c0f2f3c96083193d5eaee61e85ea5f5e9fe1 refs/tags/R3-10 -DEBUG:__main__:EXEC DONE -Cloning R3-10 of dependency ADCORE into /builds/DATAnet/adurl/.cache/adcore-R3-10 -DEBUG:__main__:EXEC 'git clone --quiet --depth 5 --branch R3-10 https://github.com/areaDetector/ADCore adcore-R3-10' in /builds/DATAnet/adurl/.cache -DEBUG:__main__:EXEC DONE -commit 7fd8c0f2f3c96083193d5eaee61e85ea5f5e9fe1 -Author: Mark Rivers -Date: Sun Sep 20 12:35:28 2020 -0500 - - Notes for R3-10 -DEBUG:__main__:Setting do_recompile = True (all following modules will be recompiled -Running hook .ci-local/adcore_hook.sh in /builds/DATAnet/adurl/.cache/adcore-R3-10 -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/adcore-R3-10 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Writing hash of checked-out dependency (7fd8c0f2f3c96083193d5eaee61e85ea5f5e9fe1) to marker file -DEBUG:__main__:Opening RELEASE.local for adding 'ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-10' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' -DEBUG:__main__:Writing line to RELEASE.local: 'ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-10' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Setting up the build environment -DEBUG:__main__:Using EPICS Base at /builds/DATAnet/adurl/.cache/base-R7.0.3.1 -DEBUG:__main__:Running script to detect EPICS host architecture in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 -DEBUG:__main__:/builds/DATAnet/adurl/.cache/base-R7.0.3.1/src/tools/EpicsHostArch.pl returned: linux-x86_64 -DEBUG:__main__:Check if EPICS Base is a 3.14 series: False -DEBUG:__main__:Check if make is a 3.x series: False -EPICS_HOST_ARCH = linux-x86_64 -$ make --version -DEBUG:__main__:EXEC 'make --version' in /builds/DATAnet/adurl -GNU Make 4.2.1 -Built for x86_64-pc-linux-gnu -Copyright (C) 1988-2016 Free Software Foundation, Inc. -Licence GPLv3+: GNU GPL version 3 or later -This is free software: you are free to change and redistribute it. -There is NO WARRANTY, to the extent permitted by law. -DEBUG:__main__:EXEC DONE -$ perl --version - -This is perl 5, version 30, subversion 0 (v5.30.0) built for x86_64-linux-gnu-thread-multi -(with 50 registered patches, see perl -V for more detail) - -Copyright 1987-2019, Larry Wall - -Perl may be copied only under the terms of either the Artistic License or the -GNU General Public License, which may be found in the Perl 5 source kit. - -Complete documentation for Perl, including FAQ lists, should be found on -this system using "man perl" or "perldoc perl". If you have access to the -Internet, point your browser at http://www.perl.org/, the Perl Home Page. - -$ gcc --version -gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 -Copyright (C) 2019 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. - -$ g++ --version -g++ (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 -Copyright (C) 2019 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. - -SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9 -SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5 -CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3 -ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41 -AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1 -BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1 -AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10 -ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master -ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-10 -EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1 - --include $(TOP)/../RELEASE.local - --include $(TOP)/../RELEASE.local - -9739d42659d180f88e08104cad4d02cbd414a75f - -7fd8c0f2f3c96083193d5eaee61e85ea5f5e9fe1 - -1b5b589b560b90fb37d152ed7440aef4162119b5 - --include $(TOP)/../RELEASE.local - -DEBUG:__main__:EXEC 'make -j2 -Otarget' in /builds/DATAnet/adurl/.cache/area_detector-R3-10 -Building dependency AREA_DETECTOR in /builds/DATAnet/adurl/.cache/area_detector-R3-10 -make -C /builds/DATAnet/adurl/.cache/adsupport-master install -make -C ./configure install -make -C ./supportApp install -make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../.. -make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' -make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' -mkdir -p O.Common -make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' -make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ - T_A=linux-x86_64 install -make -C ./jpegSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease -make -C ./zlibSrc install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompressJPEG.d ../decompressJPEG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemnobs.d ../jmemnobs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemmgr.d ../jmemmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jutils.d ../jutils.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant2.d ../jquant2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zutil.d ../zutil.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant1.d ../jquant1.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uncompr.d ../uncompr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctint.d ../jidctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF trees.d ../trees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctfst.d ../jidctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inftrees.d ../inftrees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctflt.d ../jidctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inflate.d ../inflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctint.d ../jfdctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inffast.d ../inffast.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctfst.d ../jfdctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF infback.d ../infback.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctflt.d ../jfdctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzwrite.d ../gzwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jerror.d ../jerror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdtrans.d ../jdtrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzread.d ../gzread.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdsample.d ../jdsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzlib.d ../gzlib.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdpostct.d ../jdpostct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzclose.d ../gzclose.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmerge.d ../jdmerge.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF deflate.d ../deflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmaster.d ../jdmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crc32.d ../crc32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmarker.d ../jdmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d ../compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmainct.d ../jdmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdinput.d ../jdinput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdhuff.d ../jdhuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jddctmgr.d ../jddctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF adler32.d ../adler32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcolor.d ../jdcolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcoefct.d ../jdcoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatasrc.d ../jdatasrc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatadst.d ../jdatadst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdarith.d ../jdarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapistd.d ../jdapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -mkdir ../../../include -mkdir ../../../include/os -mkdir ../../../include/os/Linux -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapimin.d ../jdapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jctrans.d ../jctrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcsample.d ../jcsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcprepct.d ../jcprepct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcparam.d ../jcparam.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcomapi.d ../jcomapi.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmaster.d ../jcmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmarker.d ../jcmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../adler32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmainct.d ../jcmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcinit.d ../jcinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jchuff.d ../jchuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcdctmgr.d ../jcdctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccolor.d ../jccolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccoefct.d ../jccoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcarith.d ../jcarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapistd.d ../jcapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapimin.d ../jcapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../crc32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jaricom.d ../jaricom.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jaricom.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../deflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzclose.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzlib.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jccoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzread.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jccolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcdctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../infback.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../inffast.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jchuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../inflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../inftrees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcomapi.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../trees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../uncompr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../zutil.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcparam.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -/usr/bin/ar -rc libzlib.a adler32.o compress.o crc32.o deflate.o gzclose.o gzlib.o gzread.o gzwrite.o infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -/usr/bin/ranlib libzlib.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -g++ -o libzlib.so -shared -fPIC -Wl,-hlibzlib.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 adler32.o compress.o crc32.o deflate.o gzclose.o gzlib.o gzread.o gzwrite.o infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make -C ./szipSrc install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcprepct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF sz_api.d ../sz_api.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF rice.d ../rice.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d ../encoding.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../encoding.c -../encoding.c:16:15: warning: ‘szip_encoder_status’ initialized and declared ‘extern’ - 16 | extern char * szip_encoder_status = "SZIP ENCODER ENABLED"; - | ^~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jctrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdatadst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdatasrc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdcoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdcolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jddctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdhuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdinput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../rice.c -../rice.c: In function ‘encode_scanline’: -../rice.c:1478:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1478 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1479:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1479 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1480:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1480 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1481:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1481 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1482:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1482 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1483:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1483 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1484:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1484 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1492:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1492 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1519:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1519 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1520:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1520 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1521:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1521 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1522:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1522 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1523:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1523 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1524:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1524 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1525:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1525 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1533:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1533 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1560:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1560 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1561:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1561 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1562:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1562 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1563:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1563 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1567:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1567 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1568:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1568 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1576:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1576 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1603:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1603 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1604:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1604 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1605:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1605 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1609:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1609 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1610:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1610 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1611:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1611 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1619:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1619 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1646:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1646 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1647:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1647 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1651:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1651 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1652:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1652 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1656:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1656 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1664:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1664 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1689:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1689 | value = (value << 6) | *s++ & 0x3f; - | ~~~~~^~~~~~ -../rice.c:1706:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1706 | value = (value << 7) | *s++ & 0x7f; - | ~~~~~^~~~~~ -../rice.c:1723:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1723 | value = (value << 8) | *s++ & 0xff; - | ~~~~~^~~~~~ -../rice.c: In function ‘rice_decode’: -../rice.c:4977:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4977 | *(s+1) = (*(s+1) << 1) | (data_word >> 30) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4978:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4978 | *(s+2) = (*(s+2) << 1) | (data_word >> 29) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4979:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4979 | *(s+3) = (*(s+3) << 1) | (data_word >> 28) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4980:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4980 | *(s+4) = (*(s+4) << 1) | (data_word >> 27) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4981:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4981 | *(s+5) = (*(s+5) << 1) | (data_word >> 26) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4982:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4982 | *(s+6) = (*(s+6) << 1) | (data_word >> 25) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4983:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4983 | *(s+7) = (*(s+7) << 1) | (data_word >> 24) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4998:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4998 | *(s+0) = (*(s+0) << 2) | (data_word >> 30) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4999:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4999 | *(s+1) = (*(s+1) << 2) | (data_word >> 28) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5000:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5000 | *(s+2) = (*(s+2) << 2) | (data_word >> 26) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5001:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5001 | *(s+3) = (*(s+3) << 2) | (data_word >> 24) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5002:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5002 | *(s+4) = (*(s+4) << 2) | (data_word >> 22) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5003:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5003 | *(s+5) = (*(s+5) << 2) | (data_word >> 20) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5004:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5004 | *(s+6) = (*(s+6) << 2) | (data_word >> 18) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5005:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5005 | *(s+7) = (*(s+7) << 2) | (data_word >> 16) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5017:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5017 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5018:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5018 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5019:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5019 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5020:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5020 | *(s+3) = (*(s+3) << 3) | (data_word >> 20) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5021:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5021 | *(s+4) = (*(s+4) << 3) | (data_word >> 17) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5031:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5031 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5032:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5032 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5033:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5033 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5048:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5048 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5049:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5049 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5050:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5050 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5051:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5051 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5058:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5058 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5059:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5059 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5060:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5060 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5061:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5061 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5073:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5073 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5074:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5074 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5075:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5075 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5085:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5085 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5086:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5086 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5087:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5087 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5097:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5097 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5098:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5098 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5113:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5113 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5114:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5114 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5124:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5124 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5125:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5125 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5135:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5135 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5136:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5136 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5146:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5146 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5147:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5147 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5162:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5162 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5163:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5163 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5173:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5173 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5174:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5174 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5184:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5184 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5185:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5185 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5195:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5195 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5196:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5196 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5211:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5211 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5212:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5212 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5219:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5219 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5220:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5220 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5227:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5227 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5228:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5228 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5235:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5235 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5236:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5236 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5358:8: warning: ‘ext2_bit’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 5358 | if (ext2_bit) - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmerge.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../sz_api.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdpostct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -/usr/bin/ar -rc libszip.a encoding.o rice.o sz_api.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -/usr/bin/ranlib libszip.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -g++ -o libszip.so -shared -fPIC -Wl,-hlibszip.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 encoding.o rice.o sz_api.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make -C ./bitshuffleSrc install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdtrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Nothing to be done for 'install'. -make -C ./cbfSrc install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jerror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF md5c.d ../md5c.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_ws.d ../cbf_ws.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jfdctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_write_binary.d ../cbf_write_binary.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_write.d ../cbf_write.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_uncompressed.d ../cbf_uncompressed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_tree.d ../cbf_tree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jfdctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_stx.d ../cbf_stx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_string.d ../cbf_string.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_simple.d ../cbf_simple.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_read_mime.d ../cbf_read_mime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_read_binary.d ../cbf_read_binary.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_predictor.d ../cbf_predictor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_packed.d ../cbf_packed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_lex.d ../cbf_lex.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_getopt.d ../cbf_getopt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_file.d ../cbf_file.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_context.d ../cbf_context.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_compress.d ../cbf_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_codes.d ../cbf_codes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_canonical.d ../cbf_canonical.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_byte_offset.d ../cbf_byte_offset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_binary.d ../cbf_binary.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_ascii.d ../cbf_ascii.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_alloc.d ../cbf_alloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf.d ../cbf.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jfdctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jidctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jidctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf.c -../cbf.c: In function ‘cbf_validate’: -../cbf.c:7388:8: warning: ignoring return value of ‘fscanf’, declared with attribute warn_unused_result [-Wunused-result] - 7388 | fscanf(fout, "%s", output); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cbf.c:7493:8: warning: ignoring return value of ‘fscanf’, declared with attribute warn_unused_result [-Wunused-result] - 7493 | fscanf(fout, "%s", output); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cbf.c: In function ‘cbf_drel’: -../cbf.c:8417:2: warning: ignoring return value of ‘system’, declared with attribute warn_unused_result [-Wunused-result] - 8417 | system(preprocess); - | ^~~~~~~~~~~~~~~~~~ -../cbf.c:8425:2: warning: ignoring return value of ‘system’, declared with attribute warn_unused_result [-Wunused-result] - 8425 | system(evaluate); - | ^~~~~~~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from ../cbf.c:264: -In function ‘strncpy’, - inlined from ‘cbf_validate’ at ../cbf.c:7362:6: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 80 bytes from a string of length 81 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘cbf_validate’ at ../cbf.c:7441:19: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 80 bytes from a string of length 81 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_alloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_ascii.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_binary.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_byte_offset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_canonical.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jidctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jquant1.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jquant2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jutils.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_codes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jmemmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jmemnobs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_context.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../decompressJPEG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -g++ -o libjpeg.so -shared -fPIC -Wl,-hlibjpeg.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jaricom.o jcapimin.o jcapistd.o jcarith.o jccoefct.o jccolor.o jcdctmgr.o jchuff.o jcinit.o jcmainct.o jcmarker.o jcmaster.o jcomapi.o jcparam.o jcprepct.o jcsample.o jctrans.o jdapimin.o jdapistd.o jdarith.o jdatadst.o jdatasrc.o jdcoefct.o jdcolor.o jddctmgr.o jdhuff.o jdinput.o jdmainct.o jdmarker.o jdmaster.o jdmerge.o jdpostct.o jdsample.o jdtrans.o jerror.o jfdctflt.o jfdctfst.o jfdctint.o jidctflt.o jidctfst.o jidctint.o jquant1.o jquant2.o jutils.o jmemmgr.o jmemnobs.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -/usr/bin/ar -rc libjpeg.a jaricom.o jcapimin.o jcapistd.o jcarith.o jccoefct.o jccolor.o jcdctmgr.o jchuff.o jcinit.o jcmainct.o jcmarker.o jcmaster.o jcomapi.o jcparam.o jcprepct.o jcsample.o jctrans.o jdapimin.o jdapistd.o jdarith.o jdatadst.o jdatasrc.o jdcoefct.o jdcolor.o jddctmgr.o jdhuff.o jdinput.o jdmainct.o jdmarker.o jdmaster.o jdmerge.o jdpostct.o jdsample.o jdtrans.o jerror.o jfdctflt.o jfdctfst.o jfdctint.o jidctflt.o jidctfst.o jidctint.o jquant1.o jquant2.o jutils.o jmemmgr.o jmemnobs.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -/usr/bin/ranlib libjpeg.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -/usr/bin/ar -rc libdecompressJPEG.a decompressJPEG.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -/usr/bin/ranlib libdecompressJPEG.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -g++ -o libdecompressJPEG.so -shared -fPIC -Wl,-hlibdecompressJPEG.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 decompressJPEG.o -ljpeg -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_file.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_getopt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_packed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_predictor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_read_binary.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_lex.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_read_mime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_string.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_stx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_tree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_uncompressed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_write.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_write_binary.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_simple.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_ws.c -../cbf_ws.c: In function ‘cbf_find_bracketstring’: -../cbf_ws.c:1087:26: warning: ‘tokentype’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1087 | tokentype[depth-1]= *stringtype; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make -C ./bloscSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle.d ../../../supportApp/bloscSrc/blosc/shuffle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bitshuffle-generic.d ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../md5c.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle-generic.d ../../../supportApp/bloscSrc/blosc/shuffle-generic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosclz.d ../../../supportApp/bloscSrc/blosc/blosclz.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc.d ../../../supportApp/bloscSrc/blosc/blosc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4hc.d ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4.d ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -/usr/bin/ar -rc libcbfad.a cbf.o cbf_alloc.o cbf_ascii.o cbf_binary.o cbf_byte_offset.o cbf_canonical.o cbf_codes.o cbf_compress.o cbf_context.o cbf_file.o cbf_getopt.o cbf_lex.o cbf_packed.o cbf_predictor.o cbf_read_binary.o cbf_read_mime.o cbf_simple.o cbf_string.o cbf_stx.o cbf_tree.o cbf_uncompressed.o cbf_write.o cbf_write_binary.o cbf_ws.o md5c.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -/usr/bin/ranlib libcbfad.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-stubs-internal.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -g++ -o libcbfad.so -shared -fPIC -Wl,-hlibcbfad.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 cbf.o cbf_alloc.o cbf_ascii.o cbf_binary.o cbf_byte_offset.o cbf_canonical.o cbf_codes.o cbf_compress.o cbf_context.o cbf_file.o cbf_getopt.o cbf_lex.o cbf_packed.o cbf_predictor.o cbf_read_binary.o cbf_read_mime.o cbf_simple.o cbf_string.o cbf_stx.o cbf_tree.o cbf_uncompressed.o cbf_write.o cbf_write_binary.o cbf_ws.o md5c.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-sinksource.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make -C ./tiffSrc install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-c.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_decompress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_decompress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_unix.d ../tif_unix.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstdmt_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_zip.d ../tif_zip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_write.d ../tif_write.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_warning.d ../tif_warning.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_version.d ../tif_version.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_common.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_tile.d ../tif_tile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xxhash.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_thunder.d ../tif_thunder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threading.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_swab.d ../tif_swab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pool.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_strip.d ../tif_strip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_decompress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error_private.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_read.d ../tif_read.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_print.d ../tif_print.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_predict.d ../tif_predict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_pixarlog.d ../tif_pixarlog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_packbits.d ../tif_packbits.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entropy_common.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_open.d ../tif_open.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_ojpeg.d ../tif_ojpeg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_next.d ../tif_next.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_lzw.d ../tif_lzw.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_luv.d ../tif_luv.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg_12.d ../tif_jpeg_12.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg.d ../tif_jpeg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jbig.d ../tif_jbig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_getimage.d ../tif_getimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_flush.d ../tif_flush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3sm.d ../tif_fax3sm.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3.d ../tif_fax3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_extension.d ../tif_extension.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_error.d ../tif_error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dumpmode.d ../tif_dumpmode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirwrite.d ../tif_dirwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirread.d ../tif_dirread.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirinfo.d ../tif_dirinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dir.d ../tif_dir.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_compress.d ../tif_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_color.d ../tif_color.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_codec.d ../tif_codec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_close.d ../tif_close.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_aux.d ../tif_aux.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_aux.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_close.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_codec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_color.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dir.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dirinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dirread.c -../tif_dirread.c: In function ‘EstimateStripByteCounts’: -../tif_dirread.c:4272:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 4272 | if( !_TIFFFillStriles( tif ) ) - | ^~ -../tif_dirread.c:4275:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 4275 | if (td->td_stripbytecount) - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dirwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dumpmode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_extension.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_fax3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_fax3sm.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_flush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_getimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_jbig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_jpeg.c -In file included from ../../../include/os/Linux/jpeglib.h:27, - from ../tif_jpeg.c:88: -../../../include/os/Linux/jmorecfg.h:248: warning: "EXTERN" redefined - 248 | #define EXTERN(type) extern type - | -In file included from ../tiffiop.h:66, - from ../tif_jpeg.c:30: -../os/default/tiffio.h:91: note: this is the location of the previous definition - 91 | # define EXTERN extern - | -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_jpeg_12.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_luv.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_lzw.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_next.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_ojpeg.c -In file included from ../../../include/os/Linux/jpeglib.h:27, - from ../tif_ojpeg.c:217: -../../../include/os/Linux/jmorecfg.h:248: warning: "EXTERN" redefined - 248 | #define EXTERN(type) extern type - | -In file included from ../tiffiop.h:66, - from ../tif_ojpeg.c:126: -../os/default/tiffio.h:91: note: this is the location of the previous definition - 91 | # define EXTERN extern - | -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_open.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_packbits.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_pixarlog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_predict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_print.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::Append(const char*, size_t)’: -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1013:33: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long unsigned int’} [-Wsign-compare] - 1013 | if (curr_iov_index_ + 1 >= output_iov_count_) { - | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::AppendFromSelf(size_t, size_t)’: -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1095:35: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long unsigned int’} [-Wsign-compare] - 1095 | if (curr_iov_index_ + 1 >= output_iov_count_) { - | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: At global scope: -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:567:13: warning: ‘void snappy::ComputeTable()’ defined but not used [-Wunused-function] - 567 | static void ComputeTable() { - | ^~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_read.c -../tif_read.c: In function ‘TIFFFillStrip’: -../tif_read.c:495:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 495 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) - | ^~ -../tif_read.c:498:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 498 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) - | ^~ -../tif_read.c: In function ‘TIFFFillTile’: -../tif_read.c:798:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 798 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) - | ^~ -../tif_read.c:801:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 801 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) - | ^~ -../tif_read.c: In function ‘TIFFStartStrip’: -../tif_read.c:960:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 960 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) - | ^~ -../tif_read.c:963:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 963 | if ((tif->tif_flags & TIFF_CODERSETUP) == 0) { - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_strip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_swab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_thunder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_tile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_version.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_warning.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_write.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_zip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_unix.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -/usr/bin/ar -rc libtiff.a tif_aux.o tif_close.o tif_codec.o tif_color.o tif_compress.o tif_dir.o tif_dirinfo.o tif_dirread.o tif_dirwrite.o tif_dumpmode.o tif_error.o tif_extension.o tif_fax3.o tif_fax3sm.o tif_flush.o tif_getimage.o tif_jbig.o tif_jpeg.o tif_jpeg_12.o tif_luv.o tif_lzw.o tif_next.o tif_ojpeg.o tif_open.o tif_packbits.o tif_pixarlog.o tif_predict.o tif_print.o tif_read.o tif_strip.o tif_swab.o tif_thunder.o tif_tile.o tif_version.o tif_warning.o tif_write.o tif_zip.o tif_unix.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -/usr/bin/ranlib libtiff.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -g++ -o libtiff.so -shared -fPIC -Wl,-hlibtiff.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 tif_aux.o tif_close.o tif_codec.o tif_color.o tif_compress.o tif_dir.o tif_dirinfo.o tif_dirread.o tif_dirwrite.o tif_dumpmode.o tif_error.o tif_extension.o tif_fax3.o tif_fax3sm.o tif_flush.o tif_getimage.o tif_jbig.o tif_jpeg.o tif_jpeg_12.o tif_luv.o tif_lzw.o tif_next.o tif_ojpeg.o tif_open.o tif_packbits.o tif_pixarlog.o tif_predict.o tif_print.o tif_read.o tif_strip.o tif_swab.o tif_thunder.o tif_tile.o tif_version.o tif_warning.o tif_write.o tif_zip.o tif_unix.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/blosc.c -In file included from /usr/include/stdio.h:867, - from ../../../supportApp/bloscSrc/blosc/blosc.c:11: -In function ‘fprintf’, - inlined from ‘blosc_d.isra.0’ at ../../../supportApp/bloscSrc/blosc/blosc.c:752:9: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:100:10: warning: ‘%s’ directive argument is null [-Wformat-overflow=] - 100 | return __fprintf_chk (__stream, __USE_FORTIFY_LEVEL - 1, __fmt, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 101 | __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘blosc_d.isra.0’: -../../../supportApp/bloscSrc/blosc/blosc.c:754:31: note: format string is defined here - 754 | "support for '%s' format. ", compname); - | ^~ -In file included from /usr/include/stdio.h:867, - from ../../../supportApp/bloscSrc/blosc/blosc.c:11: -In function ‘fprintf’, - inlined from ‘write_compression_header.isra.0’ at ../../../supportApp/bloscSrc/blosc/blosc.c:1105:5: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:100:10: warning: ‘%s’ directive argument is null [-Wformat-overflow=] - 100 | return __fprintf_chk (__stream, __USE_FORTIFY_LEVEL - 1, __fmt, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 101 | __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/blosclz.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/shuffle-generic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/shuffle.c -../../../supportApp/bloscSrc/blosc/shuffle.c:288:4: warning: #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. [-Wcpp] - 288 | #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. - | ^~~~~~~ -../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘get_shuffle_implementation’: -../../../supportApp/bloscSrc/blosc/shuffle.c:298:22: warning: unused variable ‘cpu_features’ [-Wunused-variable] - 298 | blosc_cpu_features cpu_features = blosc_get_cpu_features(); - | ^~~~~~~~~~~~ -In file included from ../../../supportApp/bloscSrc/blosc/shuffle.c:12: -At top level: -../../../supportApp/bloscSrc/blosc/shuffle-generic.h:61:13: warning: ‘unshuffle_generic_inline’ defined but not used [-Wunused-function] - 61 | static void unshuffle_generic_inline(const size_t type_size, - | ^~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/blosc/shuffle-generic.h:32:13: warning: ‘shuffle_generic_inline’ defined but not used [-Wunused-function] - 32 | static void shuffle_generic_inline(const size_t type_size, - | ^~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make -C ./xml2Src install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp_stream.d ../nanohttp_stream.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlstring.d ../xmlstring.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpointer.d ../xpointer.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -/usr/bin/ar -rc libblosc.a entropy_common.o error_private.o fse_decompress.o pool.o threading.o xxhash.o zstd_common.o fse_compress.o zstd_compress.o huf_compress.o zstdmt_compress.o huf_decompress.o zstd_decompress.o snappy.o snappy-c.o snappy-sinksource.o snappy-stubs-internal.o lz4.o lz4hc.o blosc.o blosclz.o shuffle-generic.o bitshuffle-generic.o shuffle.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -/usr/bin/ranlib libblosc.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpath.d ../xpath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -o libblosc.so -shared -fPIC -Wl,-hlibblosc.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 entropy_common.o error_private.o fse_decompress.o pool.o threading.o xxhash.o zstd_common.o fse_compress.o zstd_compress.o huf_compress.o zstdmt_compress.o huf_decompress.o zstd_decompress.o snappy.o snappy-c.o snappy-sinksource.o snappy-stubs-internal.o lz4.o lz4hc.o blosc.o blosclz.o shuffle-generic.o bitshuffle-generic.o shuffle.o -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlwriter.d ../xmlwriter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make -C ./hdf5Src install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlunicode.d ../xmlunicode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemastypes.d ../xmlschemastypes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5detect.d ../H5detect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d ../jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemas.d ../xmlschemas.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d ../blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5lib_settings.d ../H5lib_settings.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlsave.d ../xmlsave.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tinit.d ../os/Linux/H5Tinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmodule.d ../xmlmodule.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ztrans.d ../H5Ztrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlregexp.d ../xmlregexp.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zszip.d ../H5Zszip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zshuffle.d ../H5Zshuffle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlreader.d ../xmlreader.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zscaleoffset.d ../H5Zscaleoffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmemory.d ../xmlmemory.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Znbit.d ../H5Znbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zfletcher32.d ../H5Zfletcher32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlIO.d ../xmlIO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zdeflate.d ../H5Zdeflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xlink.d ../xlink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Z.d ../H5Z.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xinclude.d ../xinclude.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5WB.d ../H5WB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5VM.d ../H5VM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF valid.d ../valid.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5TS.d ../H5TS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvlen.d ../H5Tvlen.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uri.d ../uri.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvisit.d ../H5Tvisit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tree.d ../tree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tstrpad.d ../H5Tstrpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tprecis.d ../H5Tprecis.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threads.d ../threads.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tpad.d ../H5Tpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF schematron.d ../schematron.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Torder.d ../H5Torder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX.d ../SAX.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Topaque.d ../H5Topaque.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toh.d ../H5Toh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX2.d ../SAX2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toffset.d ../H5Toffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF relaxng.d ../relaxng.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tnative.d ../H5Tnative.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pattern.d ../pattern.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfloat.d ../H5Tfloat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfixed.d ../H5Tfixed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parserInternals.d ../parserInternals.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfields.d ../H5Tfields.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parser.d ../parser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tenum.d ../H5Tenum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp.d ../nanohttp.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdeprec.d ../H5Tdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdbg.d ../H5Tdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanoftp.d ../nanoftp.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcset.d ../H5Tcset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF list.d ../list.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tconv.d ../H5Tconv.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF legacy.d ../legacy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLtree.d ../HTMLtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcompound.d ../H5Tcompound.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLparser.d ../HTMLparser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcommit.d ../H5Tcommit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF hash.d ../hash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tbit.d ../H5Tbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF globals.d ../globals.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tarray.d ../H5Tarray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error.d ../error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5T.d ../H5T.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ST.d ../H5ST.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entities.d ../entities.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMtest.d ../H5SMtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d ../encoding.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMmessage.d ../H5SMmessage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF DOCBparser.d ../DOCBparser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMcache.d ../H5SMcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dict.d ../dict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMbtree2.d ../H5SMbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF debugXML.d ../debugXML.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SM.d ../H5SM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF chvalid.d ../chvalid.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SL.d ../H5SL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF catalog.d ../catalog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Stest.d ../H5Stest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF c14n.d ../c14n.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sselect.d ../H5Sselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Spoint.d ../H5Spoint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Snone.d ../H5Snone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF buf.d ../buf.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Shyper.d ../H5Shyper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sdbg.d ../H5Sdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -mkdir ../../../include/os/Linux/libxml -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sall.d ../H5Sall.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5S.d ../H5S.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5RS.d ../H5RS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5UC.d ../H5UC.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Rdeprec.d ../H5Rdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5R.d ../H5R.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PL.d ../H5PL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PB.d ../H5PB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ptest.d ../H5Ptest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pstrcpl.d ../H5Pstrcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpypl.d ../H5Pocpypl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpl.d ../H5Pocpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plcpl.d ../H5Plcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plapl.d ../H5Plapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pint.d ../H5Pint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pgcpl.d ../H5Pgcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfmpl.d ../H5Pfmpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfcpl.d ../H5Pfcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfapl.d ../H5Pfapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pencdec.d ../H5Pencdec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdxpl.d ../H5Pdxpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdeprec.d ../H5Pdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdcpl.d ../H5Pdcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdapl.d ../H5Pdapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pacpl.d ../H5Pacpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5P.d ../H5P.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ounknown.d ../H5Ounknown.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Otest.d ../H5Otest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ostab.d ../H5Ostab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../buf.c -../buf.c: In function ‘xmlBufMemoryError’: -../buf.c:94:5: warning: too many arguments for format [-Wformat-extra-args] - 94 | __xmlSimpleError(XML_FROM_BUFFER, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../buf.c: In function ‘xmlBufOverflowError’: -../buf.c:109:5: warning: too many arguments for format [-Wformat-extra-args] - 109 | __xmlSimpleError(XML_FROM_BUFFER, XML_BUF_OVERFLOW, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshmesg.d ../H5Oshmesg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshared.d ../H5Oshared.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Osdspace.d ../H5Osdspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Orefcount.d ../H5Orefcount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Opline.d ../H5Opline.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Onull.d ../H5Onull.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oname.d ../H5Oname.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omtime.d ../H5Omtime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omessage.d ../H5Omessage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olink.d ../H5Olink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olinfo.d ../H5Olinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olayout.d ../H5Olayout.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../c14n.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oginfo.d ../H5Oginfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofsinfo.d ../H5Ofsinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oflush.d ../H5Oflush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofill.d ../H5Ofill.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oefl.d ../H5Oefl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odtype.d ../H5Odtype.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odrvinfo.d ../H5Odrvinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odbg.d ../H5Odbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocopy.d ../H5Ocopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocont.d ../H5Ocont.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ochunk.d ../H5Ochunk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache_image.d ../H5Ocache_image.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache.d ../H5Ocache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obtreek.d ../H5Obtreek.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obogus.d ../H5Obogus.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattribute.d ../H5Oattribute.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattr.d ../H5Oattr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oalloc.d ../H5Oalloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oainfo.d ../H5Oainfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../catalog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5O.d ../H5O.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MPtest.d ../H5MPtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MP.d ../H5MP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MM.d ../H5MM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../chvalid.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFsection.d ../H5MFsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFdbg.d ../H5MFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFaggr.d ../H5MFaggr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MF.d ../H5MF.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Lexternal.d ../H5Lexternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5L.d ../H5L.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Itest.d ../H5Itest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5I.d ../H5I.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HP.d ../H5HP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdblk.d ../H5HLdblk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLprfx.d ../H5HLprfx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLint.d ../H5HLint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdbg.d ../H5HLdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLcache.d ../H5HLcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HL.d ../H5HL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGquery.d ../H5HGquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGdbg.d ../H5HGdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGcache.d ../H5HGcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HG.d ../H5HG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtiny.d ../H5HFtiny.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtest.d ../H5HFtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFstat.d ../H5HFstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFspace.d ../H5HFspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../debugXML.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFsection.d ../H5HFsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFman.d ../H5HFman.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiter.d ../H5HFiter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiblock.d ../H5HFiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhuge.d ../H5HFhuge.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhdr.d ../H5HFhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdtable.d ../H5HFdtable.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../dict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdblock.d ../H5HFdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdbg.d ../H5HFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFcache.d ../H5HFcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../DOCBparser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFbtree2.d ../H5HFbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HF.d ../H5HF.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtraverse.d ../H5Gtraverse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtest.d ../H5Gtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gstab.d ../H5Gstab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Groot.d ../H5Groot.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Goh.d ../H5Goh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gobj.d ../H5Gobj.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gnode.d ../H5Gnode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gname.d ../H5Gname.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gloc.d ../H5Gloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Glink.d ../H5Glink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gint.d ../H5Gint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../encoding.c -../encoding.c: In function ‘xmlEncodingErrMemory’: -../encoding.c:86:5: warning: too many arguments for format [-Wformat-extra-args] - 86 | __xmlSimpleError(XML_FROM_I18N, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../encoding.c: In function ‘xmlCharEncCloseFunc__internal_alias’: -../encoding.c:2856:12: warning: variable ‘handler_in_list’ set but not used [-Wunused-but-set-variable] - 2856 | int i, handler_in_list = 0; - | ^~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gent.d ../H5Gent.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdeprec.d ../H5Gdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdense.d ../H5Gdense.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcompact.d ../H5Gcompact.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcache.d ../H5Gcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gbtree2.d ../H5Gbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5G.d ../H5G.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../entities.c -../entities.c: In function ‘xmlEntitiesErrMemory’: -../entities.c:76:5: warning: too many arguments for format [-Wformat-extra-args] - 76 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FStest.d ../H5FStest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSstat.d ../H5FSstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSsection.d ../H5FSsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSint.d ../H5FSint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSdbg.d ../H5FSdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FScache.d ../H5FScache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FS.d ../H5FS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FO.d ../H5FO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FL.d ../H5FL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDtest.d ../H5FDtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDstdio.d ../H5FDstdio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDspace.d ../H5FDspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDsec2.d ../H5FDsec2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDmulti.d ../H5FDmulti.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDlog.d ../H5FDlog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../globals.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDint.d ../H5FDint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDfamily.d ../H5FDfamily.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDcore.d ../H5FDcore.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FD.d ../H5FD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAtest.d ../H5FAtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAstat.d ../H5FAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAint.d ../H5FAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAhdr.d ../H5FAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../hash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblkpage.d ../H5FAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../HTMLparser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblock.d ../H5FAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdbg.d ../H5FAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../HTMLtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAcache.d ../H5FAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FA.d ../H5FA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ftest.d ../H5Ftest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper_cache.d ../H5Fsuper_cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper.d ../H5Fsuper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fspace.d ../H5Fspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsfile.d ../H5Fsfile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../legacy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fquery.d ../H5Fquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fmount.d ../H5Fmount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fio.d ../H5Fio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fint.d ../H5Fint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ffake.d ../H5Ffake.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fefc.d ../H5Fefc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../list.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdeprec.d ../H5Fdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdbg.d ../H5Fdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fcwfs.d ../H5Fcwfs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Faccum.d ../H5Faccum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5F.d ../H5F.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAtest.d ../H5EAtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAstat.d ../H5EAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAsblock.d ../H5EAsblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAint.d ../H5EAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAiblock.d ../H5EAiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAhdr.d ../H5EAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblock.d ../H5EAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nanoftp.c -../nanoftp.c: In function ‘xmlFTPErrMemory’: -../nanoftp.c:176:5: warning: too many arguments for format [-Wformat-extra-args] - 176 | __xmlSimpleError(XML_FROM_FTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblkpage.d ../H5EAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdbg.d ../H5EAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAcache.d ../H5EAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EA.d ../H5EA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Eint.d ../H5Eint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Edeprec.d ../H5Edeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5E.d ../H5E.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dvirtual.d ../H5Dvirtual.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dtest.d ../H5Dtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dsingle.d ../H5Dsingle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dselect.d ../H5Dselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nanohttp.c -../nanohttp.c: In function ‘xmlHTTPErrMemory’: -../nanohttp.c:177:5: warning: too many arguments for format [-Wformat-extra-args] - 177 | __xmlSimpleError(XML_FROM_HTTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dscatgath.d ../H5Dscatgath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Doh.d ../H5Doh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dnone.d ../H5Dnone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dlayout.d ../H5Dlayout.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dio.d ../H5Dio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dint.d ../H5Dint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfill.d ../H5Dfill.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfarray.d ../H5Dfarray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Defl.d ../H5Defl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dearray.d ../H5Dearray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddeprec.d ../H5Ddeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddbg.d ../H5Ddbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcontig.d ../H5Dcontig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcompact.d ../H5Dcompact.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dchunk.d ../H5Dchunk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree2.d ../H5Dbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree.d ../H5Dbtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5D.d ../H5D.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5CS.d ../H5CS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctest.d ../H5Ctest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctag.d ../H5Ctag.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cquery.d ../H5Cquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cprefetched.d ../H5Cprefetched.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Clog.d ../H5Clog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cimage.d ../H5Cimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cepoch.d ../H5Cepoch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cdbg.d ../H5Cdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5C.d ../H5C.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2test.d ../H5B2test.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2stat.d ../H5B2stat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2leaf.d ../H5B2leaf.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2internal.d ../H5B2internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2int.d ../H5B2int.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2hdr.d ../H5B2hdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2dbg.d ../H5B2dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2cache.d ../H5B2cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2.d ../H5B2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bdbg.d ../H5Bdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bcache.d ../H5Bcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B.d ../H5B.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACproxy_entry.d ../H5ACproxy_entry.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACdbg.d ../H5ACdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AClog.d ../H5AClog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AC.d ../H5AC.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Atest.d ../H5Atest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Aint.d ../H5Aint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adeprec.d ../H5Adeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adense.d ../H5Adense.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Abtree2.d ../H5Abtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5A.d ../H5A.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5trace.d ../H5trace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5timer.d ../H5timer.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5system.d ../H5system.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5dbg.d ../H5dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5checksum.d ../H5checksum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5.d ../H5.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5checksum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5system.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5system.c:33: -In function ‘strncat’, - inlined from ‘H5_build_extpath’ at ../H5system.c:1116:13: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5system.c:33: -../H5system.c: In function ‘H5_build_extpath’: -../H5private.h:1358:31: note: length computed here - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5system.c:1116:13: note: in expansion of macro ‘HDstrncat’ - 1116 | HDstrncat(full_path, new_name, HDstrlen(new_name)); - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5timer.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../parser.c -../parser.c: In function ‘xmlParseReference__internal_alias’: -../parser.c:7258:44: warning: ‘%d’ directive output may be truncated writing between 3 and 10 bytes into a region of size 9 [-Wformat-truncation=] - 7258 | snprintf((char *)out, sizeof(out), "#%d", value); - | ^~ -../parser.c:7258:42: note: directive argument in the range [256, 2147483647] - 7258 | snprintf((char *)out, sizeof(out), "#%d", value); - | ^~~~~ -In file included from /usr/include/stdio.h:867, - from ../libxml.h:51, - from ../parser.c:34: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output between 5 and 12 bytes into a destination of size 10 - 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 68 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../parser.c:7256:47: warning: ‘__builtin___snprintf_chk’ output may be truncated before the last format character [-Wformat-truncation=] - 7256 | snprintf((char *)out, sizeof(out), "#x%X", value); - | ^ -In file included from /usr/include/stdio.h:867, - from ../libxml.h:51, - from ../parser.c:34: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output between 6 and 11 bytes into a destination of size 10 - 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 68 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../parserInternals.c -../parserInternals.c: In function ‘xmlNextChar__internal_alias’: -../parserInternals.c:473:9: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 473 | if (c == 0xC0) - | ^~ -../parserInternals.c:475:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 475 | if (cur[1] == 0) { - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5trace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pattern.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5A.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5A.c:25: -In function ‘strncpy’, - inlined from ‘H5Aget_name_by_idx’ at ../H5A.c:937:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5A.c:25: -../H5A.c: In function ‘H5Aget_name_by_idx’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5A.c:933:26: note: in expansion of macro ‘HDstrlen’ - 933 | ret_value = (ssize_t)HDstrlen(attr->shared->name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Abtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Adense.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Adeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Aint.c -../H5Aint.c: In function ‘H5A_create’: -../H5Aint.c:200:45: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 200 | if(NULL == (attr->shared->dt = H5T_copy(type, H5T_COPY_ALL))) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Aprivate.h:25, - from ../H5Apkg.h:37, - from ../H5Aint.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Aint.c: In function ‘H5A__read’: -../H5Aint.c:532:71: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 532 | (dst_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0) - | ^~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Aprivate.h:25, - from ../H5Apkg.h:37, - from ../H5Aint.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Aint.c: In function ‘H5A__write’: -../H5Aint.c:632:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 632 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0 || - | ^~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Aprivate.h:25, - from ../H5Apkg.h:37, - from ../H5Aint.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Atest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5AC.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5AClog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5ACdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5ACproxy_entry.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../relaxng.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B.c -../H5B.c: In function ‘H5B_valid’: -../H5B.c:2038:26: warning: variable ‘shared’ set but not used [-Wunused-but-set-variable] - 2038 | H5B_shared_t *shared; /* Pointer to shared B-tree info */ - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Bcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Bdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../SAX2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../SAX.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../schematron.c -../schematron.c: In function ‘xmlSchematronPErrMemory’: -../schematron.c:234:22: warning: too many arguments for format [-Wformat-extra-args] - 234 | extra); - | ^~~~~ -../schematron.c: In function ‘xmlSchematronVErrMemory’: -../schematron.c:284:22: warning: too many arguments for format [-Wformat-extra-args] - 284 | extra); - | ^~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../threads.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2hdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2int.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2leaf.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2stat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2test.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tree.c -../tree.c: In function ‘xmlTreeErrMemory’: -../tree.c:74:5: warning: too many arguments for format [-Wformat-extra-args] - 74 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../tree.c: In function ‘xmlGetNodePath__internal_alias’: -../tree.c:4758:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 4758 | if (tmp->type == XML_COMMENT_NODE) - | ^~ -../tree.c:4760:21: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 4760 | tmp = tmp->next; - | ^~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../uri.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5C.c -../H5C.c: In function ‘H5C_flush_cache’: -../H5C.c:1057:14: warning: variable ‘ignore_protected’ set but not used [-Wunused-but-set-variable] - 1057 | hbool_t ignore_protected; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cepoch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Clog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cprefetched.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ctag.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ctest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../valid.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5CS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5D.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xinclude.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dbtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xlink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlIO.c -../xmlIO.c: In function ‘xmlIOErrMemory’: -../xmlIO.c:256:5: warning: too many arguments for format [-Wformat-extra-args] - 256 | __xmlSimpleError(XML_FROM_IO, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlmemory.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dchunk.c -../H5Dchunk.c: In function ‘H5D__chunk_init’: -../H5Dchunk.c:724:26: warning: unused variable ‘sc’ [-Wunused-variable] - 724 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_is_space_alloc’: -../H5Dchunk.c:816:32: warning: unused variable ‘sc’ [-Wunused-variable] - 816 | const H5O_storage_chunk_t *sc = &(storage->u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_dest’: -../H5Dchunk.c:2371:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2371 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_create’: -../H5Dchunk.c:2582:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2582 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_lookup’: -../H5Dchunk.c:2683:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2683 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_flush_entry’: -../H5Dchunk.c:2806:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2806 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_allocated’: -../H5Dchunk.c:3716:26: warning: unused variable ‘sc’ [-Wunused-variable] - 3716 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_allocate’: -../H5Dchunk.c:3809:32: warning: unused variable ‘sc’ [-Wunused-variable] - 3809 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_update_old_edge_chunks’: -../H5Dchunk.c:4242:32: warning: unused variable ‘sc’ [-Wunused-variable] - 4242 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c:4229:24: warning: unused variable ‘pline’ [-Wunused-variable] - 4229 | const H5O_pline_t *pline = &(dset->shared->dcpl_cache.pline); /* I/O pipeline info */ - | ^~~~~ -../H5Dchunk.c: In function ‘H5D__chunk_prune_by_extent’: -../H5Dchunk.c:4797:32: warning: unused variable ‘sc’ [-Wunused-variable] - 4797 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_delete’: -../H5Dchunk.c:5203:26: warning: unused variable ‘sc’ [-Wunused-variable] - 5203 | H5O_storage_chunk_t *sc = &(storage->u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_copy_cb’: -../H5Dchunk.c:5550:111: warning: passing argument 5 of ‘H5D__chunk_file_alloc’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 5550 | if(H5D__chunk_file_alloc(udata->idx_info_dst, NULL, &udata_dst.chunk_block, &need_insert, udata_dst.common.scaled) < 0) - | ~~~~~~~~~~~~~~~~^~~~~~~ -../H5Dchunk.c:300:13: note: expected ‘hsize_t *’ {aka ‘long long unsigned int *’} but argument is of type ‘const hsize_t *’ {aka ‘const long long unsigned int *’} - 300 | hsize_t scaled[]); - | ~~~~~~~~^~~~~~~~ -../H5Dchunk.c: In function ‘H5D__chunk_copy’: -../H5Dchunk.c:5689:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 5689 | if(NULL == (dt_mem = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) - | ^~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dchunk.c:55: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dchunk.c:5697:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 5697 | if(NULL == (dt_dst = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) - | ^~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dchunk.c:55: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dchunk.c: In function ‘H5D__chunk_bh_info’: -../H5Dchunk.c:5856:26: warning: unused variable ‘sc’ [-Wunused-variable] - 5856 | H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_dump_index’: -../H5Dchunk.c:5979:26: warning: unused variable ‘sc’ [-Wunused-variable] - 5979 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlreader.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dcompact.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dcontig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ddbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ddeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dearray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Defl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dfarray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlregexp.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dfill.c -../H5Dfill.c: In function ‘H5D__fill’: -../H5Dfill.c:238:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 238 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(fill_type, H5T_COPY_ALL), FALSE)) < 0) - | ^~~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dfill.c:36: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dfill.c:241:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 241 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(buf_type, H5T_COPY_ALL), FALSE)) < 0) - | ^~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dfill.c:36: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dfill.c: In function ‘H5D__fill_init’: -../H5Dfill.c:413:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 413 | if(NULL == (fb_info->mem_type = H5T_copy(dset_type, H5T_COPY_REOPEN))) - | ^~~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dfill.c:36: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlmodule.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlsave.c -../xmlsave.c: In function ‘xmlSaveErrMemory’: -../xmlsave.c:111:5: warning: too many arguments for format [-Wformat-extra-args] - 111 | __xmlSimpleError(XML_FROM_OUTPUT, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dint.c -../H5Dint.c: In function ‘H5D__init_type’: -../H5Dint.c:681:43: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 681 | if((dset->shared->type = H5T_copy(type, H5T_COPY_ALL)) == NULL) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dint.c:25: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dint.c: In function ‘H5D__mark’: -../H5Dint.c:3174:37: warning: passing argument 1 of ‘H5D__layout_oh_write’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 3174 | if(H5D__layout_oh_write(dataset, dxpl_id, oh, update_flags) < 0) - | ^~~~~~~ -In file included from ../H5Dint.c:25: -../H5Dpkg.h:638:43: note: expected ‘H5D_t *’ {aka ‘struct H5D_t *’} but argument is of type ‘const H5D_t *’ {aka ‘const struct H5D_t *’} - 638 | H5_DLL herr_t H5D__layout_oh_write(H5D_t *dataset, hid_t dxpl_id, H5O_t *oh, - | ~~~~~~~^~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dlayout.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dnone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Doh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dscatgath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dsingle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dvirtual.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5E.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5E.c:52: -In function ‘strncpy’, - inlined from ‘H5E_get_class_name’ at ../H5E.c:646:8, - inlined from ‘H5Eget_class_name’ at ../H5E.c:610:21: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5E.c:52: -../H5E.c: In function ‘H5Eget_class_name’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5E.c:642:20: note: in expansion of macro ‘HDstrlen’ - 642 | len = (ssize_t)HDstrlen(cls->cls_name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Edeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Eint.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Eint.c:35: -In function ‘strncpy’, - inlined from ‘H5E_get_msg’ at ../H5Eint.c:143:8: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Eint.c:35: -../H5Eint.c: In function ‘H5E_get_msg’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Eint.c:139:20: note: in expansion of macro ‘HDstrlen’ - 139 | len = (ssize_t)HDstrlen(msg->msg); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAsblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlschemas.c -../xmlschemas.c: In function ‘xmlSchemaPSimpleErr’: -../xmlschemas.c:1861:22: warning: too many arguments for format [-Wformat-extra-args] - 1861 | msg); - | ^~~ -../xmlschemas.c: In function ‘xmlSchemaPErrMemory’: -../xmlschemas.c:1878:22: warning: too many arguments for format [-Wformat-extra-args] - 1878 | extra); - | ^~~~~ -../xmlschemas.c: In function ‘xmlSchemaVErrMemory’: -../xmlschemas.c:2002:22: warning: too many arguments for format [-Wformat-extra-args] - 2002 | extra); - | ^~~~~ -../xmlschemas.c: In function ‘xmlSchemaPResCompAttrErr’: -../xmlschemas.c:2834:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 2834 | if (refTypeStr == NULL) - | ^~ -../xmlschemas.c:2836:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 2836 | xmlSchemaPErrExt(ctxt, ownerElem, error, - | ^~~~~~~~~~~~~~~~ -../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeQNameValue’: -../xmlschemas.c:5824:6: warning: too many arguments for format [-Wformat-extra-args] - 5824 | NULL, value, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlGetMaxOccurs’: -../xmlschemas.c:6047:3: warning: too many arguments for format [-Wformat-extra-args] - 6047 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:6061:6: warning: too many arguments for format [-Wformat-extra-args] - 6061 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:6078:6: warning: too many arguments for format [-Wformat-extra-args] - 6078 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c: In function ‘xmlGetMinOccurs’: -../xmlschemas.c:6113:6: warning: too many arguments for format [-Wformat-extra-args] - 6113 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:6130:6: warning: too many arguments for format [-Wformat-extra-args] - 6130 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c: In function ‘xmlSchemaPGetBoolNodeValue’: -../xmlschemas.c:6175:6: warning: too many arguments for format [-Wformat-extra-args] - 6175 | NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlGetBooleanProp’: -../xmlschemas.c:6223:6: warning: too many arguments for format [-Wformat-extra-args] - 6223 | NULL, val, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeValue’: -../xmlschemas.c:6328:6: warning: too many arguments for format [-Wformat-extra-args] - 6328 | type, NULL, value, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaParseWildcardNs’: -../xmlschemas.c:6763:6: warning: too many arguments for format [-Wformat-extra-args] - 6763 | NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c:6801:7: warning: too many arguments for format [-Wformat-extra-args] - 6801 | nsItem, NULL, NULL, NULL); - | ^~~~~~ -../xmlschemas.c: In function ‘xmlSchemaParseLocalAttribute’: -../xmlschemas.c:7188:8: warning: too many arguments for format [-Wformat-extra-args] - 7188 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:7208:4: warning: too many arguments for format [-Wformat-extra-args] - 7208 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:7366:2: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 7366 | if (defValue != NULL) - | ^~ -../xmlschemas.c:7368:6: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 7368 | if (defValueType == WXS_ATTR_DEF_VAL_FIXED) - | ^~ -../xmlschemas.c: In function ‘xmlSchemaParseElement’: -../xmlschemas.c:8629:4: warning: too many arguments for format [-Wformat-extra-args] - 8629 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:8708:4: warning: too many arguments for format [-Wformat-extra-args] - 8708 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:8738:7: warning: too many arguments for format [-Wformat-extra-args] - 8738 | NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaParseSimpleType’: -../xmlschemas.c:9294:7: warning: too many arguments for format [-Wformat-extra-args] - 9294 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c: In function ‘xmlSchemaParseSchemaElement’: -../xmlschemas.c:9693:3: warning: too many arguments for format [-Wformat-extra-args] - 9693 | "(qualified | unqualified)", val, NULL, NULL, NULL); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -../xmlschemas.c:9706:3: warning: too many arguments for format [-Wformat-extra-args] - 9706 | "(qualified | unqualified)", val, NULL, NULL, NULL); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -../xmlschemas.c:9724:3: warning: too many arguments for format [-Wformat-extra-args] - 9724 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:9740:3: warning: too many arguments for format [-Wformat-extra-args] - 9740 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c: In function ‘xmlSchemaParseImport’: -../xmlschemas.c:10763:6: warning: too many arguments for format [-Wformat-extra-args] -10763 | NULL, namespaceName, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c:10774:6: warning: too many arguments for format [-Wformat-extra-args] -10774 | NULL, schemaLocation, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaParseComplexType’: -../xmlschemas.c:12233:8: warning: too many arguments for format [-Wformat-extra-args] -12233 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:12251:8: warning: too many arguments for format [-Wformat-extra-args] -12251 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c: In function ‘xmlSchemaValidateFacets’: -../xmlschemas.c:24253:3: warning: too many arguments for format [-Wformat-extra-args] -24253 | value, len, type, facetLink->facet, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c:24289:3: warning: too many arguments for format [-Wformat-extra-args] -24289 | value, length, type, facetLink->facet, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c:24341:7: warning: too many arguments for format [-Wformat-extra-args] -24341 | value, 0, type, NULL, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c:24386:4: warning: too many arguments for format [-Wformat-extra-args] -24386 | value, 0, type, facet, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c: In function ‘xmlSchemaSetValidStructuredErrors__internal_alias’: -../xmlschemas.c:27790:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] -27790 | if (ctxt == NULL) - | ^~ -../xmlschemas.c:27792:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ -27792 | ctxt->serror = serror; - | ^~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5F.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5F.c:24: -In function ‘strncpy’, - inlined from ‘H5Fget_name’ at ../H5F.c:1311:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5F.c:24: -../H5F.c: In function ‘H5Fget_name’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5F.c:1308:11: note: in expansion of macro ‘HDstrlen’ - 1308 | len = HDstrlen(H5F_OPEN_NAME(f)); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Faccum.c -../H5Faccum.c: In function ‘H5F__accum_read’: -../H5Faccum.c:129:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 129 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5Faccum.c:130:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 130 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -../H5Faccum.c: In function ‘H5F__accum_write’: -../H5Faccum.c:442:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 442 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5Faccum.c:443:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 443 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -../H5Faccum.c: In function ‘H5F__accum_free’: -../H5Faccum.c:877:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 877 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5Faccum.c:878:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 878 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -../H5Faccum.c: In function ‘H5F__accum_flush’: -../H5Faccum.c:1045:29: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1045 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5Faccum.c:1046:28: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1046 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fcwfs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fefc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ffake.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlschemastypes.c -../xmlschemastypes.c: In function ‘xmlSchemaTypeErrMemory’: -../xmlschemastypes.c:204:5: warning: too many arguments for format [-Wformat-extra-args] - 204 | __xmlSimpleError(XML_FROM_DATATYPE, XML_ERR_NO_MEMORY, node, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlunicode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fmount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fsfile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlwriter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fsuper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fsuper_cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ftest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDcore.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDfamily.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDlog.c -../H5FDlog.c: In function ‘H5FD_log_open’: -../H5FDlog.c:630:95: warning: ‘stat_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDlog.c:630:59: warning: ‘stat_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDlog.c:628:95: warning: ‘open_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDlog.c:628:59: warning: ‘open_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDmulti.c -In file included from /usr/include/string.h:495, - from ../H5FDmulti.c:27: -In function ‘strncpy’, - inlined from ‘H5FD_multi_sb_encode’ at ../H5FDmulti.c:697:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDmulti.c: In function ‘H5FD_multi_sb_encode’: -../H5FDmulti.c:696:20: note: length computed here - 696 | size_t n = strlen(file->fa.memb_name[mt]) + 1; - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDsec2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDspace.c -../H5FDspace.c: In function ‘H5FD_extend’: -../H5FDspace.c:104:13: warning: unused variable ‘extra’ [-Wunused-variable] - 104 | hsize_t extra; /* Extra space to allocate, to align request */ - | ^~~~~ -../H5FDspace.c:102:13: warning: unused variable ‘orig_size’ [-Wunused-variable] - 102 | hsize_t orig_size = size; /* Original allocation size */ - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xpath.c -In file included from ../xpath.c:462: -../timsort.h: In function ‘libxml_domnode_tim_sort_collapse’: -../timsort.h:397:19: warning: variable ‘BD’ set but not used [-Wunused-but-set-variable] - 397 | int ABC, BCD, BD, CD; - | ^~ -../xpath.c: In function ‘xmlXPathNodeCollectAndTest’: -../xpath.c:12409:28: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘xmlXPathTypeVal’ {aka ‘enum ’} [-Wenum-compare] -12409 | } else if (cur->type == type) { - | ^~ -In file included from ../xpath.c:476: -At top level: -../trionan.c:218:1: warning: ‘trio_is_negative’ defined but not used [-Wunused-function] - 218 | trio_is_negative - | ^~~~~~~~~~~~~~~~ -../trionan.c:194:1: warning: ‘trio_is_special_quantity’ defined but not used [-Wunused-function] - 194 | trio_is_special_quantity - | ^~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDstdio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xpointer.c -../xpointer.c: In function ‘xmlXPtrNewRangeNodePoint__internal_alias’: -../xpointer.c:451:21: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘enum ’ [-Wenum-compare] - 451 | if (start->type != XPATH_POINT) - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlstring.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FScache.c -../H5FScache.c: In function ‘H5FS__cache_sinfo_deserialize’: -../H5FScache.c:1013:17: warning: variable ‘old_tot_space’ set but not used [-Wunused-but-set-variable] - 1013 | hsize_t old_tot_space; /* Total space managed from header */ - | ^~~~~~~~~~~~~ -../H5FScache.c:1012:17: warning: variable ‘old_ghost_sect_count’ set but not used [-Wunused-but-set-variable] - 1012 | hsize_t old_ghost_sect_count; /* Total ghost section count from header */ - | ^~~~~~~~~~~~~~~~~~~~ -../H5FScache.c:1011:17: warning: variable ‘old_serial_sect_count’ set but not used [-Wunused-but-set-variable] - 1011 | hsize_t old_serial_sect_count; /* Total serializable section count from header */ - | ^~~~~~~~~~~~~~~~~~~~~ -../H5FScache.c:1010:17: warning: variable ‘old_tot_sect_count’ set but not used [-Wunused-but-set-variable] - 1010 | hsize_t old_tot_sect_count; /* Total section count from header */ - | ^~~~~~~~~~~~~~~~~~ -../H5FScache.c: In function ‘H5FS__cache_sinfo_image_len’: -../H5FScache.c:1119:19: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] - 1119 | const H5FS_t *fspace; /* Free space header */ - | ^~~~~~ -../H5FScache.c: In function ‘H5FS__cache_sinfo_serialize’: -../H5FScache.c:1249:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] - 1249 | H5FS_t *fspace; /* Free space header */ - | ^~~~~~ -../H5FScache.c: In function ‘H5FS__cache_sinfo_free_icr’: -../H5FScache.c:1396:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] - 1396 | H5FS_t *fspace; /* Free space header */ - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nanohttp_stream.c -../nanohttp_stream.c: In function ‘xmlParseJpegHeader’: -../nanohttp_stream.c:628:40: warning: pointer targets in passing argument 1 of ‘xmlStrncmp__internal_alias’ differ in signedness [-Wpointer-sign] - 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { - | ~~~~^~~~~~~~~~~~~~ - | | - | char * -In file included from ../libxml.h:106, - from ../nanohttp_stream.c:16: -../elfgcchack.h:11051:30: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘char *’ -11051 | extern __typeof (xmlStrncmp) xmlStrncmp__internal_alias __attribute((visibility("hidden"))); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../nanohttp_stream.c:628:56: warning: pointer targets in passing argument 2 of ‘xmlStrncmp__internal_alias’ differ in signedness [-Wpointer-sign] - 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { - | ^~~~~~~~~~~~ - | | - | const char * -In file included from ../libxml.h:106, - from ../nanohttp_stream.c:16: -../elfgcchack.h:11051:30: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘const char *’ -11051 | extern __typeof (xmlStrncmp) xmlStrncmp__internal_alias __attribute((visibility("hidden"))); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../nanohttp_stream.c: In function ‘xmlNanoHTTPScanAnswer’: -../elfgcchack.h:11072:19: warning: pointer targets in initialization of ‘const char *’ from ‘const xmlChar *’ {aka ‘const unsigned char *’} differ in signedness [-Wpointer-sign] -11072 | #define xmlStrstr xmlStrstr__internal_alias - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../nanohttp_stream.c:979:30: note: in expansion of macro ‘xmlStrstr’ - 979 | const char* boundaryName = xmlStrstr(BAD_CAST ctxt->contentType, BAD_CAST "boundary"); - | ^~~~~~~~~ -../nanohttp_stream.c:981:17: warning: pointer targets in assignment from ‘const xmlChar *’ {aka ‘const unsigned char *’} to ‘const char *’ differ in signedness [-Wpointer-sign] - 981 | boundaryName = xmlStrstr(BAD_CAST boundaryName, BAD_CAST "="); - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -g++ -o libxml2.so -shared -fPIC -Wl,-hlibxml2.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -/usr/bin/ar -rc libxml2.a buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -/usr/bin/ranlib libxml2.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -/usr/bin/ar -rc libnanohttp_stream.a nanohttp_stream.o buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -/usr/bin/ranlib libnanohttp_stream.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -g++ -o libnanohttp_stream.so -shared -fPIC -Wl,-hlibnanohttp_stream.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 nanohttp_stream.o buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o -lxml2 -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FStest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5G.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gcompact.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Gcompact.c:28: -In function ‘strncpy’, - inlined from ‘H5G__compact_get_name_by_idx’ at ../H5Gcompact.c:246:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Gcompact.c:28: -../H5Gcompact.c: In function ‘H5G__compact_get_name_by_idx’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gcompact.c:242:26: note: in expansion of macro ‘HDstrlen’ - 242 | ret_value = (ssize_t)HDstrlen(ltable.lnks[idx].name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gdense.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Gdense.c:35: -In function ‘strncpy’, - inlined from ‘H5G__dense_get_name_by_idx’ at ../H5Gdense.c:1278:13: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Gdense.c:35: -../H5Gdense.c: In function ‘H5G__dense_get_name_by_idx’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gdense.c:1274:30: note: in expansion of macro ‘HDstrlen’ - 1274 | ret_value = (ssize_t)HDstrlen(ltable.lnks[n].name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gent.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Glink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gname.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Gname.c:35: -In function ‘strncat’, - inlined from ‘H5G_build_fullpath’ at ../H5Gname.c:327:5, - inlined from ‘H5G_build_fullpath_refstr_str’ at ../H5Gname.c:367:17: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Gname.c:35: -../H5Gname.c: In function ‘H5G_build_fullpath_refstr_str’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gname.c:316:16: note: in expansion of macro ‘HDstrlen’ - 316 | name_len = HDstrlen(name); - | ^~~~~~~~ -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Gname.c:35: -In function ‘strncat’, - inlined from ‘H5G_name_move_path’ at ../H5Gname.c:771:13, - inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:1028:24, - inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Gname.c:35: -../H5Gname.c: In function ‘H5G_name_replace_cb’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gname.c:717:23: note: in expansion of macro ‘HDstrlen’ - 717 | full_suffix_len = HDstrlen(full_suffix); - | ^~~~~~~~ -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Gname.c:35: -In function ‘strncat’, - inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:1040:17, - inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Gname.c:35: -../H5Gname.c: In function ‘H5G_name_replace_cb’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gname.c:1024:35: note: in expansion of macro ‘HDstrlen’ - 1024 | full_suffix_len = HDstrlen(full_suffix); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gnode.c -../H5Gnode.c: In function ‘H5G_node_remove’: -../H5Gnode.c:790:21: warning: unused variable ‘lt_key’ [-Wunused-variable] - 790 | H5G_node_key_t *lt_key = (H5G_node_key_t *)_lt_key; - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gobj.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Goh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Groot.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gstab.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Gstab.c:29: -In function ‘strncpy’, - inlined from ‘H5G__stab_get_name_by_idx’ at ../H5Gstab.c:803:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Gstab.c:29: -../H5Gstab.c: In function ‘H5G__stab_get_name_by_idx’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gstab.c:799:26: note: in expansion of macro ‘HDstrlen’ - 799 | ret_value = (ssize_t)HDstrlen(udata.name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HF.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gtraverse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFcache.c -../H5HFcache.c: In function ‘H5HF__cache_hdr_serialize’: -../H5HFcache.c:774:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 774 | hdr->f = f; - | ^ -../H5HFcache.c: In function ‘H5HF__cache_iblock_serialize’: -../H5HFcache.c:1361:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1361 | hdr->f = f; - | ^ -../H5HFcache.c: In function ‘H5HF__cache_iblock_notify’: -../H5HFcache.c:1477:18: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] - 1477 | unsigned indir_idx; /* Index in parent's child iblock pointer array */ - | ^~~~~~~~~ -../H5HFcache.c:1476:26: warning: unused variable ‘par_iblock’ [-Wunused-variable] - 1476 | H5HF_indirect_t *par_iblock = iblock->parent; - | ^~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFdtable.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFhuge.c -../H5HFhuge.c: In function ‘H5HF_huge_write’: -../H5HFhuge.c:890:8: warning: ‘obj_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 890 | if(H5F_block_write(hdr->f, H5FD_MEM_FHEAP_HUGE_OBJ, obj_addr, obj_size, H5AC_rawdata_dxpl_id, obj) < 0) - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFiter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFman.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFsection.c -../H5HFsection.c: In function ‘H5HF_sect_single_valid’: -../H5HFsection.c:1191:20: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] - 1191 | herr_t status; /* Generic status value */ - | ^~~~~~ -../H5HFsection.c:1189:20: warning: variable ‘dblock_overhead’ set but not used [-Wunused-but-set-variable] - 1189 | size_t dblock_overhead; /* Direct block's overhead */ - | ^~~~~~~~~~~~~~~ -../H5HFsection.c: In function ‘H5HF_sect_row_valid’: -../H5HFsection.c:2000:14: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] - 2000 | unsigned indir_idx; /* Index of row in underlying indirect section's row array */ - | ^~~~~~~~~ -../H5HFsection.c: In function ‘H5HF_sect_indirect_valid’: -../H5HFsection.c:4107:44: warning: variable ‘tmp_row_sect2’ set but not used [-Wunused-but-set-variable] - 4107 | const H5HF_free_section_t *tmp_row_sect2; /* Pointer to row section */ - | ^~~~~~~~~~~~~ -../H5HFsection.c:4099:40: warning: variable ‘tmp_row_sect’ set but not used [-Wunused-but-set-variable] - 4099 | const H5HF_free_section_t *tmp_row_sect; /* Pointer to row section */ - | ^~~~~~~~~~~~ -../H5HFsection.c:4134:44: warning: variable ‘tmp_child_sect2’ set but not used [-Wunused-but-set-variable] - 4134 | const H5HF_free_section_t *tmp_child_sect2; /* Pointer to child indirect section */ - | ^~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFtiny.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HGcache.c -../H5HGcache.c: In function ‘H5HG__cache_heap_get_final_load_size’: -../H5HGcache.c:225:17: warning: ‘*((void *)&heap+280)’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 225 | *actual_len = heap.size; - | ~~~~~~~~~~~~^~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HGdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HGquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLprfx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLdblk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Itest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5I.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Lexternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5L.c -../H5L.c: In function ‘H5L_move_cb’: -../H5L.c:2639:41: warning: passing argument 1 of ‘H5RS_wrap’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 2639 | dst_name_r = H5RS_wrap(udata->dst_name); - | ~~~~~^~~~~~~~~~ -In file included from ../H5Gprivate.h:35, - from ../H5Tprivate.h:28, - from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5L.c:26: -../H5RSprivate.h:47:20: note: expected ‘char *’ but argument is of type ‘const char *’ - 47 | H5_DLL H5RS_str_t *H5RS_wrap(char *s); - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MFaggr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MFsection.c -../H5MFsection.c: In function ‘H5MF_sect_split’: -../H5MFsection.c:376:22: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 376 | FUNC_LEAVE_NOAPI((H5FS_section_info_t *)ret_value) - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MF.c -../H5MF.c: In function ‘H5MF_settle_meta_data_fsm’: -../H5MF.c:3249:17: warning: unused variable ‘fs_stat’ [-Wunused-variable] - 3249 | H5FS_stat_t fs_stat; /* Information for hdr FSM */ - | ^~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MPtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oainfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5O.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oattr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oalloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Obogus.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Obtreek.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oattribute.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocache_image.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ochunk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocont.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Odbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Odrvinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oefl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Odtype.c -../H5Odtype.c: In function ‘H5O_dtype_copy’: -../H5Odtype.c:1192:32: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1192 | if(NULL == (dst = H5T_copy(src, H5T_COPY_ALL))) - | ^~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Odtype.c:19: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Odtype.c: In function ‘H5O_dtype_pre_copy_file’: -../H5Odtype.c:1541:49: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1541 | if(NULL == (udata->src_dtype = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) - | ^~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Odtype.c:19: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oflush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ofill.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make -C ./GraphicsMagickSrc install -make -C ./bzlib install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' -mkdir -p O.Common -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF randtable.d ../randtable.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huffman.d ../huffman.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompress.d ../decompress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crctable.d ../crctable.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d ../compress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ofsinfo.c -../H5Ofsinfo.c: In function ‘H5O_fsinfo_decode’: -../H5Ofsinfo.c:132:35: warning: ‘threshold’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 132 | fsinfo->threshold = threshold; - | ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bzlib.d ../bzlib.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blocksort.d ../blocksort.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oginfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Olayout.c -../H5Olayout.c: In function ‘H5O__layout_decode’: -../H5Olayout.c:412:90: warning: ‘tmp_hsize’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 412 | if(NULL == (mesg->storage.u.virt.list = (H5O_storage_virtual_ent_t *)H5MM_calloc((size_t)tmp_hsize * sizeof(H5O_storage_virtual_ent_t)))) - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Olinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../blocksort.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Olink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../bzlib.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Omessage.c -../H5Omessage.c: In function ‘H5O_msg_reset_share’: -../H5Omessage.c:1691:28: warning: variable ‘type’ set but not used [-Wunused-but-set-variable] - 1691 | const H5O_msg_class_t *type; /* Actual H5O class type for the ID */ - | ^~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Omtime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oname.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Onull.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Opline.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Orefcount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Osdspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oshared.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oshmesg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ostab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Otest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ounknown.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../compress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../crctable.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5P.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pacpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdapl.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Pdapl.c:35: -In function ‘strncpy’, - inlined from ‘H5Pget_efile_prefix’ at ../H5Pdapl.c:1280:13: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Pdapl.c:35: -../H5Pdapl.c: In function ‘H5Pget_efile_prefix’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Pdapl.c:1278:15: note: in expansion of macro ‘HDstrlen’ - 1278 | len = HDstrlen(my_prefix); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../decompress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../huffman.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../randtable.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -/usr/bin/ar -rc libbzlib.a blocksort.o bzlib.o compress.o crctable.o decompress.o huffman.o randtable.o -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -/usr/bin/ranlib libbzlib.a -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -g++ -o libbzlib.so -shared -fPIC -Wl,-hlibbzlib.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 blocksort.o bzlib.o compress.o crctable.o decompress.o huffman.o randtable.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make -C ./lcms install -make -C ./src install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' -perl -C0 /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' -mkdir -p O.Common -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsxform.d ../cmsxform.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmswtpnt.d ../cmswtpnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsvirt.d ../cmsvirt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmstypes.d ../cmstypes.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssm.d ../cmssm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssamp.d ../cmssamp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsps2.d ../cmsps2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsplugin.d ../cmsplugin.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspcs.d ../cmspcs.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspack.d ../cmspack.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsopt.d ../cmsopt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsnamed.d ../cmsnamed.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmtrx.d ../cmsmtrx.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmd5.d ../cmsmd5.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmslut.d ../cmslut.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio1.d ../cmsio1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio0.d ../cmsio0.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdcpl.c -../H5Pdcpl.c: In function ‘H5P_get_fill_value’: -../H5Pdcpl.c:3329:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 3329 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(type, H5T_COPY_TRANSIENT), FALSE)) < 0) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Pdcpl.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsintrp.d ../cmsintrp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmshalf.d ../cmshalf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgmt.d ../cmsgmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgamma.d ../cmsgamma.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmserr.d ../cmserr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscnvrt.d ../cmscnvrt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscgats.d ../cmscgats.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscam02.d ../cmscam02.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsalpha.d ../cmsalpha.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsalpha.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdxpl.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Pdxpl.c:35: -In function ‘strncpy’, - inlined from ‘H5Pget_data_transform’ at ../H5Pdxpl.c:1129:2: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Pdxpl.c:35: -../H5Pdxpl.c: In function ‘H5Pget_data_transform’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Pdxpl.c:1127:11: note: in expansion of macro ‘HDstrlen’ - 1127 | len = HDstrlen(pexp); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmscam02.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pencdec.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Pencdec.c:29: -In function ‘strncpy’, - inlined from ‘H5P__encode_cb’ at ../H5Pencdec.c:351:13, - inlined from ‘H5P__encode_cb’ at ../H5Pencdec.c:332:1: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Pencdec.c:29: -../H5Pencdec.c: In function ‘H5P__encode_cb’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Pencdec.c:349:25: note: in expansion of macro ‘HDstrlen’ - 349 | prop_name_len = HDstrlen(prop->name) + 1; - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmscgats.c -../cmscgats.c: In function ‘ReadReal’: -../cmscgats.c:577:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 577 | else - | ^~~~ -../cmscgats.c:584:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 584 | e = 0; - | ^ -../cmscgats.c: In function ‘ParseFloatNumber’: -../cmscgats.c:654:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 654 | else - | ^~~~ -../cmscgats.c:661:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 661 | e = 0; - | ^ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘GetVal’ at ../cmscgats.c:986:19: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying between 255 and 1023 bytes from a string of length 1023 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘AddToList.constprop’ at ../cmscgats.c:1184:22: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList.constprop’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘AddToList.constprop’ at ../cmscgats.c:1215:22: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList.constprop’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘AddToList’ at ../cmscgats.c:1184:22: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘AddToList’ at ../cmscgats.c:1185:47: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘AddToList’ at ../cmscgats.c:1215:22: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘isabsolutepath’ at ../cmscgats.c:396:5, - inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:419:9, - inlined from ‘InSymbol’ at ../cmscgats.c:920:21: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 3 bytes from a string of length 1023 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:421:9, - inlined from ‘InSymbol’ at ../cmscgats.c:920:21: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 255 bytes from a string of length 1023 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:427:5, - inlined from ‘InSymbol’ at ../cmscgats.c:920:21: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 255 bytes from a string of length 255 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:437:5, - inlined from ‘InSymbol’ at ../cmscgats.c:920:21: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying between 1 and 255 bytes from a string of length 1023 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘SetData’ at ../cmscgats.c:1545:47: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘SetData’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, - inlined from ‘DataFormatSection’ at ../cmscgats.c:1841:18, - inlined from ‘ParseIT8’ at ../cmscgats.c:2061:26: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘ParseIT8’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, - inlined from ‘cmsIT8SetDataFormat’ at ../cmscgats.c:1490:16: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘cmsIT8SetDataFormat’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘SetData’ at ../cmscgats.c:1545:47, - inlined from ‘cmsIT8SetDataRowCol’ at ../cmscgats.c:2569:12: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘cmsIT8SetDataRowCol’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘SetData’ at ../cmscgats.c:1545:47, - inlined from ‘cmsIT8SetDataRowColDbl’ at ../cmscgats.c:2582:12: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘cmsIT8SetDataRowColDbl’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmscnvrt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmserr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pfapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsgamma.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsgmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pfcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmshalf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pfmpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pgcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsintrp.c -../cmsintrp.c: In function ‘Eval4Inputs’: -../cmsintrp.c:918:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 918 | else - | ^~~~ -../cmsintrp.c:930:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 930 | Rest = c1 * rx + c2 * ry + c3 * rz; - | ^~~~ -../cmsintrp.c:982:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 982 | else - | ^~~~ -../cmsintrp.c:994:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 994 | Rest = c1 * rx + c2 * ry + c3 * rz; - | ^~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pint.c -../H5Pint.c: In function ‘H5P__iterate_pclass_cb’: -../H5Pint.c:4066:11: warning: unused variable ‘key’ [-Wunused-variable] - 4066 | char *key = (char *)_key; /* Pointer to the property's name */ - | ^~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Plapl.c -../H5Plapl.c: In function ‘H5P__lacc_elink_fapl_cmp’: -../H5Plapl.c:570:16: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] - 570 | herr_t status; - | ^~~~~~ -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Plapl.c:35: -In function ‘strncpy’, - inlined from ‘H5Pget_elink_prefix’ at ../H5Plapl.c:1062:13: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Plapl.c:35: -../H5Plapl.c: In function ‘H5Pget_elink_prefix’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Plapl.c:1060:15: note: in expansion of macro ‘HDstrlen’ - 1060 | len = HDstrlen(my_prefix); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsio0.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Plcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsio1.c -../cmsio1.c: In function ‘_cmsReadFloatDevicelinkTag’: -../cmsio1.c:681:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 681 | else - | ^~~~ -../cmsio1.c:688:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 688 | if (PCS == cmsSigLabData) - | ^~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pocpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmslut.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsmd5.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pocpypl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsmtrx.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pstrcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ptest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsnamed.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5PB.c -../H5PB.c: In function ‘H5PB_dest’: -../H5PB.c:487:7: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 487 | f = fio_info->f; - | ^ -../H5PB.c: In function ‘H5PB_read’: -../H5PB.c:793:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 793 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5PB.c:794:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 794 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -../H5PB.c: In function ‘H5PB_write’: -../H5PB.c:1100:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1100 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5PB.c:1101:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1101 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -../H5PB.c: In function ‘H5PB__write_entry’: -../H5PB.c:1525:29: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1525 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5PB.c:1526:28: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1526 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5PL.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5PL.c:23: -In function ‘strncpy’, - inlined from ‘H5PLget’ at ../H5PL.c:623:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5PL.c:23: -../H5PL.c: In function ‘H5PLget’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5PL.c:621:11: note: in expansion of macro ‘HDstrlen’ - 621 | len = HDstrlen(dl_path); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsopt.c -../cmsopt.c: In function ‘PatchLUT’: -../cmsopt.c:510:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 510 | else - | ^~~~ -../cmsopt.c:526:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 526 | for (i=0; i < nChannelsOut; i++) - | ^~~ -../cmsopt.c: In function ‘PrelinEval8’: -../cmsopt.c:978:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 978 | else - | ^~~~ -../cmsopt.c:990:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 990 | Rest = c1 * rx + c2 * ry + c3 * rz + 0x8001; - | ^~~~ -../cmsopt.c: In function ‘OptimizeByComputingLinearization’: -../cmsopt.c:1030:26: warning: variable ‘lIsLinear’ set but not used [-Wunused-but-set-variable] - 1030 | cmsBool lIsSuitable, lIsLinear; - | ^~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5R.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Rdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5UC.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5RS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5S.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Sall.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Sdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmspack.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmspcs.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsplugin.c -../cmsplugin.c: In function ‘_cmsReadFloat32Number’: -../cmsplugin.c:181:15: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] - 181 | *n = *(cmsFloat32Number*) (void*) &tmp; - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmsplugin.c: In function ‘_cmsWriteFloat32Number’: -../cmsplugin.c:292:12: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] - 292 | tmp = *(cmsUInt32Number*) (void*) &n; - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsps2.c -../cmsps2.c: In function ‘WriteInputMatrixShaper’: -../cmsps2.c:964:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 964 | else - | ^~~~ -../cmsps2.c:986:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 986 | return rc; - | ^~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmssamp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmssm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Shyper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Snone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Spoint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmstypes.c -../cmstypes.c: In function ‘ReadCLUT’: -../cmstypes.c:2360:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 2360 | else - | ^~~~ -../cmstypes.c:2374:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 2374 | return CLUT; - | ^~~~~~ -../cmstypes.c: In function ‘WriteCLUT’: -../cmstypes.c:2645:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 2645 | else - | ^~~~ -../cmstypes.c:2655:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 2655 | if (!_cmsWriteAlignment(io)) return FALSE; - | ^~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmstypes.c:27: -In function ‘strncpy’, - inlined from ‘Type_NamedColor_Write’ at ../cmstypes.c:3146:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘Type_NamedColor_Write’ at ../cmstypes.c:3147:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Sselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Stest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsvirt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmswtpnt.c -../cmswtpnt.c: In function ‘cmsWhitePointFromTemp’: -../cmswtpnt.c:66:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 66 | else - | ^~~~ -../cmswtpnt.c:80:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 80 | y = -3.000*(x*x) + 2.870*x - 0.275; - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsxform.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -/usr/bin/ar -rc liblcms.a cmsalpha.o cmscam02.o cmscgats.o cmscnvrt.o cmserr.o cmsgamma.o cmsgmt.o cmshalf.o cmsintrp.o cmsio0.o cmsio1.o cmslut.o cmsmd5.o cmsmtrx.o cmsnamed.o cmsopt.o cmspack.o cmspcs.o cmsplugin.o cmsps2.o cmssamp.o cmssm.o cmstypes.o cmsvirt.o cmswtpnt.o cmsxform.o -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -/usr/bin/ranlib liblcms.a -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -g++ -o liblcms.so -shared -fPIC -Wl,-hliblcms.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 cmsalpha.o cmscam02.o cmscgats.o cmscnvrt.o cmserr.o cmsgamma.o cmsgmt.o cmshalf.o cmsintrp.o cmsio0.o cmsio1.o cmslut.o cmsmd5.o cmsmtrx.o cmsnamed.o cmsopt.o cmspack.o cmspcs.o cmsplugin.o cmsps2.o cmssamp.o cmssm.o cmstypes.o cmsvirt.o cmswtpnt.o cmsxform.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make -C ./ttf install -make -C ./src install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' -mkdir -p O.Common -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cff.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bdf.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF winfnt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type42.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1cid.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF truetype.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF smooth.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF sfnt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF raster.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psmodule.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pshinter.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psaux.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pfr.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pcf.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlzw.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgzip.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftcache.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftwinfnt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fttype1.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsystem.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsynth.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftstroke.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpfr.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpatent.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftotval.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftmm.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlcdfil.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftinit.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgxval.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftglyph.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgasp.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfstype.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfntfmt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbitmap.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbbox.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbase.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF autofit.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SL.c -../H5SL.c: In function ‘H5SL_term_package’: -../H5SL.c:655:21: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] - 655 | herr_t ret; - | ^~~ -In file included from ../H5SL.c:64: -../H5SL.c: In function ‘H5SL_search’: -../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 2267 | return(ret_value); \ - | ^ -../H5SL.c:1397:11: note: ‘ret_value’ was declared here - 1397 | void *ret_value; /* Return value */ - | ^~~~~~~~~ -In file included from ../H5SL.c:64: -../H5SL.c: In function ‘H5SL_find’: -../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 2267 | return(ret_value); \ - | ^ -../H5SL.c:1698:18: note: ‘ret_value’ was declared here - 1698 | H5SL_node_t *ret_value; /* Return value */ - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMmessage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5ST.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5T.c -../H5T.c: In function ‘H5T_path_find’: -../H5T.c:4499:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 4499 | if(NULL == (path->src = H5T_copy(src, H5T_COPY_ALL))) - | ^~~ -../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) - | ~~~~~~~^~~~~~ -../H5T.c:4501:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 4501 | if(NULL == (path->dst = H5T_copy(dst, H5T_COPY_ALL))) - | ^~~ -../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) - | ~~~~~~~^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tarray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tcommit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tcompound.c -../H5Tcompound.c: In function ‘H5T__insert’: -../H5Tcompound.c:459:56: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 459 | parent->shared->u.compnd.memb[idx].type = H5T_copy(member, H5T_COPY_ALL); - | ^~~~~~ -In file included from ../H5Tpkg.h:37, - from ../H5Tcompound.c:33: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -/usr/bin/ar -rc libttf.a autofit.o ftbase.o ftbbox.o ftbitmap.o ftfntfmt.o ftfstype.o ftgasp.o ftglyph.o ftgxval.o ftinit.o ftlcdfil.o ftmm.o ftotval.o ftpatent.o ftpfr.o ftstroke.o ftsynth.o ftsystem.o fttype1.o ftwinfnt.o ftcache.o ftgzip.o ftlzw.o pcf.o pfr.o psaux.o pshinter.o psmodule.o raster.o sfnt.o smooth.o truetype.o type1.o type1cid.o type42.o winfnt.o bdf.o cff.o -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -/usr/bin/ranlib libttf.a -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -g++ -o libttf.so -shared -fPIC -Wl,-hlibttf.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 autofit.o ftbase.o ftbbox.o ftbitmap.o ftfntfmt.o ftfstype.o ftgasp.o ftglyph.o ftgxval.o ftinit.o ftlcdfil.o ftmm.o ftotval.o ftpatent.o ftpfr.o ftstroke.o ftsynth.o ftsystem.o fttype1.o ftwinfnt.o ftcache.o ftgzip.o ftlzw.o pcf.o pfr.o psaux.o pshinter.o psmodule.o raster.o sfnt.o smooth.o truetype.o type1.o type1cid.o type42.o winfnt.o bdf.o cff.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make -C ./wmf install -make -C ./src install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' -mkdir -p O.Common -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF recorder.d ../recorder.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF player.d ../player.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF meta.d ../meta.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bbuf.d ../bbuf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF api.d ../api.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../api.c -In file included from ../api.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tconv.c -../H5Tconv.c: In function ‘H5T_conv_struct_free’: -../H5Tconv.c:1876:17: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] - 1876 | int status; - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../bbuf.c -In file included from ../bbuf.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tcset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../meta.c -In file included from ../meta.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tenum.c -../H5Tenum.c: In function ‘H5T__enum_create’: -../H5Tenum.c:110:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 110 | ret_value->shared->parent = H5T_copy(parent, H5T_COPY_ALL); - | ^~~~~~ -In file included from ../H5Tpkg.h:37, - from ../H5Tenum.c:26: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Tenum.c: In function ‘H5T_enum_nameof’: -../H5Tenum.c:411:38: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 411 | if(NULL == (copied_dt = H5T_copy(dt, H5T_COPY_ALL))) - | ^~ -In file included from ../H5Tpkg.h:37, - from ../H5Tenum.c:26: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Tenum.c: In function ‘H5T_enum_valueof’: -../H5Tenum.c:550:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 550 | if (NULL==(copied_dt=H5T_copy(dt, H5T_COPY_ALL))) - | ^~ -In file included from ../H5Tpkg.h:37, - from ../H5Tenum.c:26: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tfields.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tfixed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tfloat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tnative.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Toffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Toh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Topaque.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Torder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tprecis.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tstrpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tvisit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tvlen.c -../H5Tvlen.c: In function ‘H5T__vlen_create’: -../H5Tvlen.c:142:47: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 142 | if(NULL == (dt->shared->parent = H5T_copy(base, H5T_COPY_ALL))) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Tvlen.c:23: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5TS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5VM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../player.c -In file included from ../player.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -In file included from ../player.c:44: -../player/meta.h: In function ‘meta_dc_color’: -../player/meta.h:2386:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] - 2386 | { if (value = wmf_attr_query (API, attrlist, "color")) - | ^~~~~ -../player/meta.h: In function ‘meta_pen_create’: -../player/meta.h:3107:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] - 3107 | { if (value = wmf_attr_query (API, attrlist, "color")) - | ^~~~~ -../player/meta.h: In function ‘meta_brush_create’: -../player/meta.h:3209:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] - 3209 | { if (value = wmf_attr_query (API, attrlist, "color")) - | ^~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5WB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Z.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zdeflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../recorder.c -In file included from ../recorder.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -../recorder.c: In function ‘wmf_canvas_line’: -../recorder.c:977:17: warning: unused variable ‘Size’ [-Wunused-variable] - 977 | unsigned long Size = 3 + 2; - | ^~~~ -../recorder.c: In function ‘s_update_header’: -../recorder.c:91:16: warning: ‘rbox.ptr’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 91 | *rbox->ptr++ = (unsigned char) ((ul >> 8) & 0xff); - | ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../recorder.c:98:16: note: ‘rbox.ptr’ was declared here - 98 | wmfRecordBox rbox; - | ^~~~ -../recorder.c:84:17: warning: ‘rbox.end’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 84 | if (rbox->end - rbox->ptr < 4) - | ~~~~~~~~~~^~~~~~~~~~~ -../recorder.c:98:16: note: ‘rbox.end’ was declared here - 98 | wmfRecordBox rbox; - | ^~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -/usr/bin/ar -rc libwmf.a api.o bbuf.o meta.o player.o recorder.o -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -/usr/bin/ranlib libwmf.a -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zfletcher32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -g++ -o libwmf.so -shared -fPIC -Wl,-hlibwmf.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 api.o bbuf.o meta.o player.o recorder.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make -C ./webp install -make -C ./src install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' -mkdir -p O.Common -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF utils.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF thread.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerutils.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF random.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels_dec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman_encode.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersutils.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF color_cache.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_writer.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_reader.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxread.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxinternal.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxedit.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_encode.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webpenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF analysis.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphaenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF backward_references.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Znbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF delta_palettization.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF config.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filter.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF frameenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF histogram.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF iterator.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_tools.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_rescale.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_psnr.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_csp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF near_lossless.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF syntax.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF token.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treeenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8lenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_msa.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_clip_tables.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cpu.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costdsp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_avx2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersdsp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerdsp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF demux.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_decode.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8ldec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treedec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantdec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF io.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF idec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF framedec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF buffer.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphadec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zscaleoffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zshuffle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zszip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ztrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../os/Linux/H5Tinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5lib_settings.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5detect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -/usr/bin/ar -rc libhdf5.a H5.o H5checksum.o H5dbg.o H5system.o H5timer.o H5trace.o H5A.o H5Abtree2.o H5Adense.o H5Adeprec.o H5Aint.o H5Atest.o H5AC.o H5AClog.o H5ACdbg.o H5ACproxy_entry.o H5B.o H5Bcache.o H5Bdbg.o H5B2.o H5B2cache.o H5B2dbg.o H5B2hdr.o H5B2int.o H5B2internal.o H5B2leaf.o H5B2stat.o H5B2test.o H5C.o H5Cdbg.o H5Cepoch.o H5Cimage.o H5Clog.o H5Cprefetched.o H5Cquery.o H5Ctag.o H5Ctest.o H5CS.o H5D.o H5Dbtree.o H5Dbtree2.o H5Dchunk.o H5Dcompact.o H5Dcontig.o H5Ddbg.o H5Ddeprec.o H5Dearray.o H5Defl.o H5Dfarray.o H5Dfill.o H5Dint.o H5Dio.o H5Dlayout.o H5Dnone.o H5Doh.o H5Dscatgath.o H5Dselect.o H5Dsingle.o H5Dtest.o H5Dvirtual.o H5E.o H5Edeprec.o H5Eint.o H5EA.o H5EAcache.o H5EAdbg.o H5EAdblkpage.o H5EAdblock.o H5EAhdr.o H5EAiblock.o H5EAint.o H5EAsblock.o H5EAstat.o H5EAtest.o H5F.o H5Faccum.o H5Fcwfs.o H5Fdbg.o H5Fdeprec.o H5Fefc.o H5Ffake.o H5Fint.o H5Fio.o H5Fmount.o H5Fquery.o H5Fsfile.o H5Fspace.o H5Fsuper.o H5Fsuper_cache.o H5Ftest.o H5FA.o H5FAcache.o H5FAdbg.o H5FAdblock.o H5FAdblkpage.o H5FAhdr.o H5FAint.o H5FAstat.o H5FAtest.o H5FD.o H5FDcore.o H5FDfamily.o H5FDint.o H5FDlog.o H5FDmulti.o H5FDsec2.o H5FDspace.o H5FDstdio.o H5FDtest.o H5FL.o H5FO.o H5FS.o H5FScache.o H5FSdbg.o H5FSint.o H5FSsection.o H5FSstat.o H5FStest.o H5G.o H5Gbtree2.o H5Gcache.o H5Gcompact.o H5Gdense.o H5Gdeprec.o H5Gent.o H5Gint.o H5Glink.o H5Gloc.o H5Gname.o H5Gnode.o H5Gobj.o H5Goh.o H5Groot.o H5Gstab.o H5Gtest.o H5Gtraverse.o H5HF.o H5HFbtree2.o H5HFcache.o H5HFdbg.o H5HFdblock.o H5HFdtable.o H5HFhdr.o H5HFhuge.o H5HFiblock.o H5HFiter.o H5HFman.o H5HFsection.o H5HFspace.o H5HFstat.o H5HFtest.o H5HFtiny.o H5HG.o H5HGcache.o H5HGdbg.o H5HGquery.o H5HL.o H5HLcache.o H5HLdbg.o H5HLint.o H5HLprfx.o H5HLdblk.o H5HP.o H5I.o H5Itest.o H5L.o H5Lexternal.o H5MF.o H5MFaggr.o H5MFdbg.o H5MFsection.o H5MM.o H5MP.o H5MPtest.o H5O.o H5Oainfo.o H5Oalloc.o H5Oattr.o H5Oattribute.o H5Obogus.o H5Obtreek.o H5Ocache.o H5Ocache_image.o H5Ochunk.o H5Ocont.o H5Ocopy.o H5Odbg.o H5Odrvinfo.o H5Odtype.o H5Oefl.o H5Ofill.o H5Oflush.o H5Ofsinfo.o H5Oginfo.o H5Olayout.o H5Olinfo.o H5Olink.o H5Omessage.o H5Omtime.o H5Oname.o H5Onull.o H5Opline.o H5Orefcount.o H5Osdspace.o H5Oshared.o H5Oshmesg.o H5Ostab.o H5Otest.o H5Ounknown.o H5P.o H5Pacpl.o H5Pdapl.o H5Pdcpl.o H5Pdeprec.o H5Pdxpl.o H5Pencdec.o H5Pfapl.o H5Pfcpl.o H5Pfmpl.o H5Pgcpl.o H5Pint.o H5Plapl.o H5Plcpl.o H5Pocpl.o H5Pocpypl.o H5Pstrcpl.o H5Ptest.o H5PB.o H5PL.o H5R.o H5Rdeprec.o H5UC.o H5RS.o H5S.o H5Sall.o H5Sdbg.o H5Shyper.o H5Snone.o H5Spoint.o H5Sselect.o H5Stest.o H5SL.o H5SM.o H5SMbtree2.o H5SMcache.o H5SMmessage.o H5SMtest.o H5ST.o H5T.o H5Tarray.o H5Tbit.o H5Tcommit.o H5Tcompound.o H5Tconv.o H5Tcset.o H5Tdbg.o H5Tdeprec.o H5Tenum.o H5Tfields.o H5Tfixed.o H5Tfloat.o H5Tnative.o H5Toffset.o H5Toh.o H5Topaque.o H5Torder.o H5Tpad.o H5Tprecis.o H5Tstrpad.o H5Tvisit.o H5Tvlen.o H5TS.o H5VM.o H5WB.o H5Z.o H5Zdeflate.o H5Zfletcher32.o H5Znbit.o H5Zscaleoffset.o H5Zshuffle.o H5Zszip.o H5Ztrans.o H5Tinit.o H5lib_settings.o blosc_filter.o jpeg_h5filter.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -/usr/bin/ranlib libhdf5.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -g++ -o libhdf5.so -shared -fPIC -Wl,-hlibhdf5.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 H5.o H5checksum.o H5dbg.o H5system.o H5timer.o H5trace.o H5A.o H5Abtree2.o H5Adense.o H5Adeprec.o H5Aint.o H5Atest.o H5AC.o H5AClog.o H5ACdbg.o H5ACproxy_entry.o H5B.o H5Bcache.o H5Bdbg.o H5B2.o H5B2cache.o H5B2dbg.o H5B2hdr.o H5B2int.o H5B2internal.o H5B2leaf.o H5B2stat.o H5B2test.o H5C.o H5Cdbg.o H5Cepoch.o H5Cimage.o H5Clog.o H5Cprefetched.o H5Cquery.o H5Ctag.o H5Ctest.o H5CS.o H5D.o H5Dbtree.o H5Dbtree2.o H5Dchunk.o H5Dcompact.o H5Dcontig.o H5Ddbg.o H5Ddeprec.o H5Dearray.o H5Defl.o H5Dfarray.o H5Dfill.o H5Dint.o H5Dio.o H5Dlayout.o H5Dnone.o H5Doh.o H5Dscatgath.o H5Dselect.o H5Dsingle.o H5Dtest.o H5Dvirtual.o H5E.o H5Edeprec.o H5Eint.o H5EA.o H5EAcache.o H5EAdbg.o H5EAdblkpage.o H5EAdblock.o H5EAhdr.o H5EAiblock.o H5EAint.o H5EAsblock.o H5EAstat.o H5EAtest.o H5F.o H5Faccum.o H5Fcwfs.o H5Fdbg.o H5Fdeprec.o H5Fefc.o H5Ffake.o H5Fint.o H5Fio.o H5Fmount.o H5Fquery.o H5Fsfile.o H5Fspace.o H5Fsuper.o H5Fsuper_cache.o H5Ftest.o H5FA.o H5FAcache.o H5FAdbg.o H5FAdblock.o H5FAdblkpage.o H5FAhdr.o H5FAint.o H5FAstat.o H5FAtest.o H5FD.o H5FDcore.o H5FDfamily.o H5FDint.o H5FDlog.o H5FDmulti.o H5FDsec2.o H5FDspace.o H5FDstdio.o H5FDtest.o H5FL.o H5FO.o H5FS.o H5FScache.o H5FSdbg.o H5FSint.o H5FSsection.o H5FSstat.o H5FStest.o H5G.o H5Gbtree2.o H5Gcache.o H5Gcompact.o H5Gdense.o H5Gdeprec.o H5Gent.o H5Gint.o H5Glink.o H5Gloc.o H5Gname.o H5Gnode.o H5Gobj.o H5Goh.o H5Groot.o H5Gstab.o H5Gtest.o H5Gtraverse.o H5HF.o H5HFbtree2.o H5HFcache.o H5HFdbg.o H5HFdblock.o H5HFdtable.o H5HFhdr.o H5HFhuge.o H5HFiblock.o H5HFiter.o H5HFman.o H5HFsection.o H5HFspace.o H5HFstat.o H5HFtest.o H5HFtiny.o H5HG.o H5HGcache.o H5HGdbg.o H5HGquery.o H5HL.o H5HLcache.o H5HLdbg.o H5HLint.o H5HLprfx.o H5HLdblk.o H5HP.o H5I.o H5Itest.o H5L.o H5Lexternal.o H5MF.o H5MFaggr.o H5MFdbg.o H5MFsection.o H5MM.o H5MP.o H5MPtest.o H5O.o H5Oainfo.o H5Oalloc.o H5Oattr.o H5Oattribute.o H5Obogus.o H5Obtreek.o H5Ocache.o H5Ocache_image.o H5Ochunk.o H5Ocont.o H5Ocopy.o H5Odbg.o H5Odrvinfo.o H5Odtype.o H5Oefl.o H5Ofill.o H5Oflush.o H5Ofsinfo.o H5Oginfo.o H5Olayout.o H5Olinfo.o H5Olink.o H5Omessage.o H5Omtime.o H5Oname.o H5Onull.o H5Opline.o H5Orefcount.o H5Osdspace.o H5Oshared.o H5Oshmesg.o H5Ostab.o H5Otest.o H5Ounknown.o H5P.o H5Pacpl.o H5Pdapl.o H5Pdcpl.o H5Pdeprec.o H5Pdxpl.o H5Pencdec.o H5Pfapl.o H5Pfcpl.o H5Pfmpl.o H5Pgcpl.o H5Pint.o H5Plapl.o H5Plcpl.o H5Pocpl.o H5Pocpypl.o H5Pstrcpl.o H5Ptest.o H5PB.o H5PL.o H5R.o H5Rdeprec.o H5UC.o H5RS.o H5S.o H5Sall.o H5Sdbg.o H5Shyper.o H5Snone.o H5Spoint.o H5Sselect.o H5Stest.o H5SL.o H5SM.o H5SMbtree2.o H5SMcache.o H5SMmessage.o H5SMtest.o H5ST.o H5T.o H5Tarray.o H5Tbit.o H5Tcommit.o H5Tcompound.o H5Tconv.o H5Tcset.o H5Tdbg.o H5Tdeprec.o H5Tenum.o H5Tfields.o H5Tfixed.o H5Tfloat.o H5Tnative.o H5Toffset.o H5Toh.o H5Topaque.o H5Torder.o H5Tpad.o H5Tprecis.o H5Tstrpad.o H5Tvisit.o H5Tvlen.o H5TS.o H5VM.o H5WB.o H5Z.o H5Zdeflate.o H5Zfletcher32.o H5Znbit.o H5Zscaleoffset.o H5Zshuffle.o H5Zszip.o H5Ztrans.o H5Tinit.o H5lib_settings.o blosc_filter.o jpeg_h5filter.o -lszip -lzlib -lblosc -ljpeg -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -g++ -o H5detect -Wl,-Bstatic -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 H5detect.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -mkdir ../../../bin -mkdir ../../../bin/linux-x86_64 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make -C ./hdf5_hlSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5TB.d ../H5TB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5PT.d ../H5PT.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTparse.d ../H5LTparse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTanalyze.d ../H5LTanalyze.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LT.d ../H5LT.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LD.d ../H5LD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5IM.d ../H5IM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DS.d ../H5DS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DO.d ../H5DO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5DO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5DS.c -../H5DS.c: In function ‘H5DSset_label’: -../H5DS.c:1436:7: warning: ‘u.buf’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1436 | } u; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5IM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LT.c -In file included from /usr/include/string.h:495, - from ../H5LT.c:17: -In function ‘strncat’, - inlined from ‘realloc_and_append’ at ../H5LT.c:2296:4, - inlined from ‘indentation’ at ../H5LT.c:2337:16: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output may be truncated copying between 0 and 255 bytes from a string of length 255 [-Wstringop-truncation] - 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LTanalyze.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LTparse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5PT.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -/usr/bin/ar -rc libwebp.a alphadec.o buffer.o framedec.o idec.o io.o quantdec.o treedec.o vp8.o vp8ldec.o webp.o anim_decode.o demux.o rescalerdsp.o rescaler_mips32.o rescaler_mips_dsp_r2.o rescaler_neon.o rescaler_sse2.o lossless.o lossless_enc.o lossless_enc_mips32.o lossless_enc_mips_dsp_r2.o lossless_enc_neon.o lossless_enc_sse2.o lossless_enc_sse41.o lossless_mips_dsp_r2.o lossless_neon.o lossless_sse2.o filtersdsp.o filters_mips_dsp_r2.o filters_sse2.o enc.o enc_avx2.o enc_mips32.o enc_mips_dsp_r2.o enc_neon.o enc_sse2.o enc_sse41.o costdsp.o cost_mips32.o cost_mips_dsp_r2.o cost_sse2.o cpu.o dec.o dec_clip_tables.o dec_mips32.o dec_mips_dsp_r2.o dec_msa.o dec_neon.o dec_sse2.o dec_sse41.o argb.o argb_mips_dsp_r2.o argb_sse2.o alpha_processing.o alpha_processing_mips_dsp_r2.o alpha_processing_sse2.o alpha_processing_sse41.o upsampling.o upsampling_mips_dsp_r2.o upsampling_neon.o upsampling_sse2.o yuv.o yuv_mips32.o yuv_mips_dsp_r2.o yuv_sse2.o vp8lenc.o treeenc.o token.o syntax.o near_lossless.o picture.o picture_csp.o picture_psnr.o picture_rescale.o picture_tools.o quantenc.o iterator.o histogram.o frameenc.o filter.o config.o costenc.o delta_palettization.o backward_references.o alphaenc.o analysis.o webpenc.o anim_encode.o muxedit.o muxinternal.o muxread.o bit_reader.o bit_writer.o color_cache.o filtersutils.o huffman.o huffman_encode.o quant_levels.o quant_levels_dec.o random.o rescalerutils.o thread.o utils.o -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -/usr/bin/ranlib libwebp.a -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -g++ -o libwebp.so -shared -fPIC -Wl,-hlibwebp.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 alphadec.o buffer.o framedec.o idec.o io.o quantdec.o treedec.o vp8.o vp8ldec.o webp.o anim_decode.o demux.o rescalerdsp.o rescaler_mips32.o rescaler_mips_dsp_r2.o rescaler_neon.o rescaler_sse2.o lossless.o lossless_enc.o lossless_enc_mips32.o lossless_enc_mips_dsp_r2.o lossless_enc_neon.o lossless_enc_sse2.o lossless_enc_sse41.o lossless_mips_dsp_r2.o lossless_neon.o lossless_sse2.o filtersdsp.o filters_mips_dsp_r2.o filters_sse2.o enc.o enc_avx2.o enc_mips32.o enc_mips_dsp_r2.o enc_neon.o enc_sse2.o enc_sse41.o costdsp.o cost_mips32.o cost_mips_dsp_r2.o cost_sse2.o cpu.o dec.o dec_clip_tables.o dec_mips32.o dec_mips_dsp_r2.o dec_msa.o dec_neon.o dec_sse2.o dec_sse41.o argb.o argb_mips_dsp_r2.o argb_sse2.o alpha_processing.o alpha_processing_mips_dsp_r2.o alpha_processing_sse2.o alpha_processing_sse41.o upsampling.o upsampling_mips_dsp_r2.o upsampling_neon.o upsampling_sse2.o yuv.o yuv_mips32.o yuv_mips_dsp_r2.o yuv_sse2.o vp8lenc.o treeenc.o token.o syntax.o near_lossless.o picture.o picture_csp.o picture_psnr.o picture_rescale.o picture_tools.o quantenc.o iterator.o histogram.o frameenc.o filter.o config.o costenc.o delta_palettization.o backward_references.o alphaenc.o analysis.o webpenc.o anim_encode.o muxedit.o muxinternal.o muxread.o bit_reader.o bit_writer.o color_cache.o filtersutils.o huffman.o huffman_encode.o quant_levels.o quant_levels_dec.o random.o rescalerutils.o thread.o utils.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make -C ./png install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' -mkdir -p O.Common -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngread.d ../pngread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwutil.d ../pngwutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5TB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwtran.d ../pngwtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwrite.d ../pngwrite.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwio.d ../pngwio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -/usr/bin/ar -rc libhdf5_hl.a H5DO.o H5DS.o H5IM.o H5LD.o H5LT.o H5LTanalyze.o H5LTparse.o H5PT.o H5TB.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -/usr/bin/ranlib libhdf5_hl.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngtrans.d ../pngtrans.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngset.d ../pngset.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -g++ -o libhdf5_hl.so -shared -fPIC -Wl,-hlibhdf5_hl.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 H5DO.o H5DS.o H5IM.o H5LD.o H5LT.o H5LTanalyze.o H5LTparse.o H5PT.o H5TB.o -lhdf5 -lszip -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrutil.d ../pngrutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make -C ./hdf5PluginSrc install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrtran.d ../pngrtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrio.d ../pngrio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngpread.d ../pngpread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5plugin.d ../jpeg_h5plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngmem.d ../pngmem.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d ../../../supportApp/hdf5Src/jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_plugin.d ../blosc_plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngget.d ../pngget.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngerror.d ../pngerror.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d ../../../supportApp/hdf5Src/blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF png.d ../png.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/hdf5Src/blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../blosc_plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/hdf5Src/jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jpeg_h5plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -g++ -o libHDF5_blosc_plugin.so -shared -fPIC -Wl,-hlibHDF5_blosc_plugin.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 blosc_filter.o blosc_plugin.o -lhdf5 -lblosc -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -g++ -o libHDF5_jpeg_plugin.so -shared -fPIC -Wl,-hlibHDF5_jpeg_plugin.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jpeg_h5filter.o jpeg_h5plugin.o -lhdf5 -ljpeg -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make -C ./netCDFSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_initialize.d ../../../supportApp/netCDFSrc/liblib/nc_initialize.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF utf8proc.d ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutil.d ../../../supportApp/netCDFSrc/libdispatch/dutil.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dwinpath.d ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF doffsets.d ../../../supportApp/netCDFSrc/libdispatch/doffsets.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dauth.d ../../../supportApp/netCDFSrc/libdispatch/dauth.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF drc.d ../../../supportApp/netCDFSrc/libdispatch/drc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclistmgr.d ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc.d ../../../supportApp/netCDFSrc/libdispatch/nc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nctime.d ../../../supportApp/netCDFSrc/libdispatch/nctime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nchashmap.d ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncbytes.d ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclist.d ../../../supportApp/netCDFSrc/libdispatch/nclist.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncuri.d ../../../supportApp/netCDFSrc/libdispatch/ncuri.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dstring.d ../../../supportApp/netCDFSrc/libdispatch/dstring.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../png.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclog.d ../../../supportApp/netCDFSrc/libdispatch/nclog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutf8.d ../../../supportApp/netCDFSrc/libdispatch/dutf8.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddispatch.d ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dinternal.d ../../../supportApp/netCDFSrc/libdispatch/dinternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarinq.d ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarput.d ../../../supportApp/netCDFSrc/libdispatch/dvarput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarget.d ../../../supportApp/netCDFSrc/libdispatch/dvarget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvar.d ../../../supportApp/netCDFSrc/libdispatch/dvar.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF derror.d ../../../supportApp/netCDFSrc/libdispatch/derror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattget.d ../../../supportApp/netCDFSrc/libdispatch/dattget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattput.d ../../../supportApp/netCDFSrc/libdispatch/dattput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngerror.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattinq.d ../../../supportApp/netCDFSrc/libdispatch/dattinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF datt.d ../../../supportApp/netCDFSrc/libdispatch/datt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddim.d ../../../supportApp/netCDFSrc/libdispatch/ddim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dfile.d ../../../supportApp/netCDFSrc/libdispatch/dfile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dcopy.d ../../../supportApp/netCDFSrc/libdispatch/dcopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dparallel.d ../../../supportApp/netCDFSrc/libdispatch/dparallel.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF posixio.d ../../../supportApp/netCDFSrc/libsrc/posixio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF memio.d ../../../supportApp/netCDFSrc/libsrc/memio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncio.d ../../../supportApp/netCDFSrc/libsrc/ncio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lookup3.d ../../../supportApp/netCDFSrc/libsrc/lookup3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_hashmap.d ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncx.d ../../../supportApp/netCDFSrc/libsrc/ncx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dim.d ../../../supportApp/netCDFSrc/libsrc/dim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF var.d ../../../supportApp/netCDFSrc/libsrc/var.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngget.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3internal.d ../../../supportApp/netCDFSrc/libsrc/nc3internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3dispatch.d ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF attr.d ../../../supportApp/netCDFSrc/libsrc/attr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF putget.d ../../../supportApp/netCDFSrc/libsrc/putget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngmem.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF v1hpg.d ../../../supportApp/netCDFSrc/libsrc/v1hpg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngpread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngrio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/v1hpg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngrtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/putget.c -putget.m4: In function ‘putNCvx_char_char’: -putget.m4:754:15: warning: unused variable ‘fillp’ [-Wunused-variable] -At top level: -putget.m4:912:1: warning: ‘getNCvx_char_char’ defined but not used [-Wunused-function] -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngrutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/attr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngset.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/nc3internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/var.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngtrans.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/dim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwrite.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -/usr/bin/ar -rc libpng.a png.o pngerror.o pngget.o pngmem.o pngpread.o pngrio.o pngrtran.o pngrutil.o pngset.o pngtrans.o pngwio.o pngwrite.o pngwtran.o pngwutil.o pngread.o -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -/usr/bin/ranlib libpng.a -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -g++ -o libpng.so -shared -fPIC -Wl,-hlibpng.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 png.o pngerror.o pngget.o pngmem.o pngpread.o pngrio.o pngrtran.o pngrutil.o pngset.o pngtrans.o pngwio.o pngwrite.o pngwtran.o pngwutil.o pngread.o -lbzlib -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make -C ./jp2 install -make -C ./src install -make -C ./libjasper install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../../.. -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' -mkdir -p O.Common -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../../.. \ - T_A=linux-x86_64 install -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_util.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/ncx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tsfb.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tagtree.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2cod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1cod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_qmfb.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqenc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/lookup3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqdec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqcod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mct.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/ncio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_math.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_cs.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_bs.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/memio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_cod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_version.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tvp.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tmr.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_string.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_stream.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_seq.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_malloc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_init.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_image.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_iccdata.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_icc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_getopt.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_debug.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_cm.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/posixio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dparallel.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dcopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dfile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ddim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/datt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dattinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dattput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dattget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/derror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvar.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvarget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvarput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dinternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dutf8.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nclog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dstring.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_iccattrtab_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:730:49: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘jas_iccsig_t’ {aka ‘long unsigned int’} [-Wformat=] - 730 | fprintf(out, "attrno=%d; attrname=\"%s\"(0x%08x); attrtype=\"%s\"(0x%08x)\n", - | ~~~^ - | | - | unsigned int - | %08lx -...... - 733 | attr->name, - | ~~~~~~~~~~ - | | - | jas_iccsig_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:730:74: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 7 has type ‘jas_iccsig_t’ {aka ‘long unsigned int’} [-Wformat=] - 730 | fprintf(out, "attrno=%d; attrname=\"%s\"(0x%08x); attrtype=\"%s\"(0x%08x)\n", - | ~~~^ - | | - | unsigned int - | %08lx -...... - 735 | attrval->type - | ~~~~~~~~~~~~~ - | | - | jas_iccsig_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_iccattrval_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:886:41: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘jas_iccsig_t’ {aka ‘long unsigned int’} [-Wformat=] - 886 | fprintf(out, "refcnt = %d; type = 0x%08x %s\n", attrval->refcnt, - | ~~~^ - | | - | unsigned int - | %08lx - 887 | attrval->type, jas_iccsigtostr(attrval->type, &buf[0])); - | ~~~~~~~~~~~~~ - | | - | jas_iccsig_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icccurv_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1044:37: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint32_t’ {aka ‘long unsigned int’} [-Wformat=] - 1044 | fprintf(out, "number of entires = %d\n", curv->numents); - | ~^ ~~~~~~~~~~~~~ - | | | - | int jas_iccuint32_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icctxtdesc_copy’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1072:20: warning: variable ‘txtdesc’ set but not used [-Wunused-but-set-variable] - 1072 | jas_icctxtdesc_t *txtdesc = &attrval->data.txtdesc; - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icctxtdesc_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1170:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint32_t’ {aka ‘long unsigned int’} [-Wformat=] - 1170 | fprintf(out, "uclangcode = %d; uclen = %d\n", txtdesc->uclangcode, - | ~^ ~~~~~~~~~~~~~~~~~~~ - | | | - | int jas_iccuint32_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1170:42: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘jas_iccuint32_t’ {aka ‘long unsigned int’} [-Wformat=] - 1170 | fprintf(out, "uclangcode = %d; uclen = %d\n", txtdesc->uclangcode, - | ~^ - | | - | int - | %ld - 1171 | txtdesc->uclen); - | ~~~~~~~~~~~~~~ - | | - | jas_iccuint32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1172:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1172 | fprintf(out, "sccode = %d\n", txtdesc->sccode); - | ~^ ~~~~~~~~~~~~~~~ - | | | - | int jas_iccuint16_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut8_copy’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1259:17: warning: variable ‘lut8’ set but not used [-Wunused-but-set-variable] - 1259 | jas_icclut8_t *lut8 = &attrval->data.lut8; - | ^~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut8_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1403:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1403 | fprintf(out, "numintabents=%d, numouttabents=%d\n", - | ~^ - | | - | int - | %ld - 1404 | lut8->numintabents, lut8->numouttabents); - | ~~~~~~~~~~~~~~~~~~ - | | - | jas_iccuint16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1403:48: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1403 | fprintf(out, "numintabents=%d, numouttabents=%d\n", - | ~^ - | | - | int - | %ld - 1404 | lut8->numintabents, lut8->numouttabents); - | ~~~~~~~~~~~~~~~~~~~ - | | - | jas_iccuint16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut16_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1567:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1567 | fprintf(out, "numintabents=%d, numouttabents=%d\n", - | ~^ - | | - | int - | %ld - 1568 | lut16->numintabents, lut16->numouttabents); - | ~~~~~~~~~~~~~~~~~~~ - | | - | jas_iccuint16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1567:48: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1567 | fprintf(out, "numintabents=%d, numouttabents=%d\n", - | ~^ - | | - | int - | %ld - 1568 | lut16->numintabents, lut16->numouttabents); - | ~~~~~~~~~~~~~~~~~~~~ - | | - | jas_iccuint16_t {aka long unsigned int} -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ncuri.c -In file included from /usr/include/string.h:495, - from ../../../supportApp/netCDFSrc/libdispatch/ncuri.c:8: -In function ‘strncpy’, - inlined from ‘ncuriparse’ at ../../../supportApp/netCDFSrc/libdispatch/ncuri.c:153:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/ncuri.c: In function ‘ncuriparse’: -../../../supportApp/netCDFSrc/libdispatch/ncuri.c:137:12: note: length computed here - 137 | len0 = strlen(uri0); - | ^~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nclist.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c: In function ‘jas_image_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:824:45: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘jas_image_cmpttype_t’ {aka ‘long int’} [-Wformat=] - 824 | fprintf(out, "prec=%d, sgnd=%d, cmpttype=%d\n", cmpt->prec_, - | ~^ - | | - | int - | %ld - 825 | cmpt->sgnd_, cmpt->type_); - | ~~~~~~~~~~~ - | | - | jas_image_cmpttype_t {aka long int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c: In function ‘jas_image_chclrspc’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1289:6: warning: variable ‘numoutchans’ set but not used [-Wunused-but-set-variable] - 1289 | int numoutchans; - | ^~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1282:6: warning: variable ‘numinauxchans’ set but not used [-Wunused-but-set-variable] - 1282 | int numinauxchans; - | ^~~~~~~~~~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nctime.c -../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdParseRelunits’: -../../../supportApp/netCDFSrc/libdispatch/nctime.c:384:25: warning: ‘%s’ directive writing up to 47 bytes into a region of size between 0 and 47 [-Wformat-overflow=] - 384 | sprintf(basetime,"%s %s",basetime_1,basetime_2); - | ^~ ~~~~~~~~~~ -In file included from /usr/include/stdio.h:867, - from ../../../supportApp/netCDFSrc/libdispatch/nctime.c:20: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output between 2 and 96 bytes into a destination of size 48 - 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 37 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdComp2Rel.constprop’: -../../../supportApp/netCDFSrc/libdispatch/nctime.c:877:15: warning: ‘ndel’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 877 | *reltime = (double)ndel; - | ^~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c:871:19: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 871 | *reltime = delta/168.0; - | ~~~~~^~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdRel2Comp’: -../../../supportApp/netCDFSrc/libdispatch/nctime.c:1073:3: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1073 | Cde2h(base_etm+delta, old_timetype, 1970, &humantime); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdRel2Iso’: -../../../supportApp/netCDFSrc/libdispatch/nctime.c:1073:3: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1073 | Cde2h(base_etm+delta, old_timetype, 1970, &humantime); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c:983:9: note: ‘delta’ was declared here - 983 | double delta; - | ^~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c: In function ‘jas_seq2d_output’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:426:17: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 426 | fprintf(out, "%d %d\n", jas_seq2d_xstart(matrix), - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:426:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 426 | fprintf(out, "%d %d\n", jas_seq2d_xstart(matrix), - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:428:17: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 428 | fprintf(out, "%d %d\n", jas_matrix_numcols(matrix), - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:428:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 428 | fprintf(out, "%d %d\n", jas_matrix_numcols(matrix), - | ~^ - | | - | int - | %ld -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/drc.c -In file included from /usr/include/string.h:495, - from ../../../supportApp/netCDFSrc/libdispatch/drc.c:15: -In function ‘strncpy’, - inlined from ‘rcsearch’ at ../../../supportApp/netCDFSrc/libdispatch/drc.c:403:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/drc.c: In function ‘rcsearch’: -../../../supportApp/netCDFSrc/libdispatch/drc.c:396:16: note: length computed here - 396 | int plen = strlen(prefix); - | ^~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c: In function ‘jas_stream_tmpfile’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c:368:2: warning: ignoring return value of ‘tmpnam’, declared with attribute warn_unused_result [-Wunused-result] - 368 | tmpnam(obj->pathname); - | ^~~~~~~~~~~~~~~~~~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dauth.c -In file included from /usr/include/string.h:495, - from ../../../supportApp/netCDFSrc/libdispatch/dauth.c:10: -In function ‘strncpy’, - inlined from ‘NC_combinehostport’ at ../../../supportApp/netCDFSrc/libdispatch/dauth.c:82:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/doffsets.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dutil.c -In file included from /usr/include/string.h:495, - from ../../../supportApp/netCDFSrc/libdispatch/dutil.c:8: -In function ‘strncpy’, - inlined from ‘NC_mktmp’ at ../../../supportApp/netCDFSrc/libdispatch/dutil.c:210:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 4096 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c: In function ‘jp2_box_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:323:34: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 323 | fprintf(out, "type=%c%s%c (0x%08x); length=%d\n", '"', boxinfo->name, - | ~~~^ - | | - | unsigned int - | %08lx - 324 | '"', box->type, box->len); - | ~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:323:46: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 323 | fprintf(out, "type=%c%s%c (0x%08x); length=%d\n", '"', boxinfo->name, - | ~^ - | | - | int - | %ld - 324 | '"', box->type, box->len); - | ~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c: In function ‘jp2_cdef_dumpdata’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:435:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 435 | fprintf(out, "channo=%d; type=%d; assoc=%d\n", - | ~^ - | | - | int - | %ld - 436 | cdef->ents[i].channo, cdef->ents[i].type, cdef->ents[i].assoc); - | ~~~~~~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:435:34: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 435 | fprintf(out, "channo=%d; type=%d; assoc=%d\n", - | ~^ - | | - | int - | %ld - 436 | cdef->ents[i].channo, cdef->ents[i].type, cdef->ents[i].assoc); - | ~~~~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:435:44: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 435 | fprintf(out, "channo=%d; type=%d; assoc=%d\n", - | ~^ - | | - | int - | %ld - 436 | cdef->ents[i].channo, cdef->ents[i].type, cdef->ents[i].assoc); - | ~~~~~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c: In function ‘jp2_pclr_dumpdata’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:874:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 874 | fprintf(out, "LUT[%d][%d]=%d\n", i, j, pclr->lutdata[i * pclr->numchans + j]); - | ~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - | | | - | int int_fast32_t {aka long int} - | %ld -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c: In function ‘jp2_decode’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c:107:14: warning: variable ‘cdefd’ set but not used [-Wunused-but-set-variable] - 107 | jp2_cdef_t *cdefd; - | ^~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/liblib/nc_initialize.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../test_big_classic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -/usr/bin/ar -rc libnetCDF.a v1hpg.o putget.o attr.o nc3dispatch.o nc3internal.o var.o dim.o ncx.o nc_hashmap.o lookup3.o ncio.o memio.o posixio.o dparallel.o dcopy.o dfile.o ddim.o datt.o dattinq.o dattput.o dattget.o derror.o dvar.o dvarget.o dvarput.o dvarinq.o dinternal.o ddispatch.o dutf8.o nclog.o dstring.o ncuri.o nclist.o ncbytes.o nchashmap.o nctime.o nc.o nclistmgr.o drc.o dauth.o doffsets.o dwinpath.o dutil.o utf8proc.o nc_initialize.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -/usr/bin/ranlib libnetCDF.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -g++ -o libnetCDF.so -shared -fPIC -Wl,-hlibnetCDF.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 v1hpg.o putget.o attr.o nc3dispatch.o nc3internal.o var.o dim.o ncx.o nc_hashmap.o lookup3.o ncio.o memio.o posixio.o dparallel.o dcopy.o dfile.o ddim.o datt.o dattinq.o dattput.o dattget.o derror.o dvar.o dvarget.o dvarput.o dvarinq.o dinternal.o ddispatch.o dutf8.o nclog.o dstring.o ncuri.o nclist.o ncbytes.o nchashmap.o nctime.o nc.o nclistmgr.o drc.o dauth.o doffsets.o dwinpath.o dutil.o utf8proc.o nc_initialize.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -g++ -o test_big_classic -Wl,-Bstatic -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 test_big_classic.o -lnetCDF -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make -C ./nexusSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_ms_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:407:28: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 407 | fprintf(out, "type = 0x%04x (%s);", ms->id, mstabent->name); - | ~~~^ ~~~~~~ - | | | - | | uint_fast16_t {aka long unsigned int} - | unsigned int - | %04lx -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:409:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 409 | fprintf(out, " len = %d;", ms->len + 2); - | ~^ ~~~~~~~~~~~ - | | | - | int uint_fast16_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_sot_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:462:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 462 | fprintf(out, "tileno = %d; len = %d; partno = %d; numparts = %d\n", - | ~^ - | | - | int - | %ld - 463 | sot->tileno, sot->len, sot->partno, sot->numparts); - | ~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:462:36: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 462 | fprintf(out, "tileno = %d; len = %d; partno = %d; numparts = %d\n", - | ~^ - | | - | int - | %ld - 463 | sot->tileno, sot->len, sot->partno, sot->numparts); - | ~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_siz_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:562:28: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 562 | fprintf(out, "caps = 0x%02x;\n", siz->caps); - | ~~~^ ~~~~~~~~~ - | | | - | | uint_fast16_t {aka long unsigned int} - | unsigned int - | %02lx -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", - | ~^ - | | - | int - | %ld - 564 | siz->width, siz->height, siz->xoff, siz->yoff); - | ~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", - | ~^ - | | - | int - | %ld - 564 | siz->width, siz->height, siz->xoff, siz->yoff); - | ~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:49: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", - | ~^ - | | - | int - | %ld - 564 | siz->width, siz->height, siz->xoff, siz->yoff); - | ~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:60: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", - | ~^ - | | - | int - | %ld - 564 | siz->width, siz->height, siz->xoff, siz->yoff); - | ~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " - | ~^ - | | - | int - | %ld - 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, - | ~~~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:46: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " - | ~^ - | | - | int - | %ld - 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, - | ~~~~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:61: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " - | ~^ - | | - | int - | %ld - 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, - | ~~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:15: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, - 567 | siz->tileyoff); - | ~~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:566:17: note: format string is defined here - 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_cod_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:634:37: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 634 | fprintf(out, "prg = %d; numlyrs = %d;\n", - | ~^ - | | - | int - | %ld - 635 | cod->prg, cod->numlyrs); - | ~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_coc_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:712:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 712 | fprintf(out, "compno = %d; csty = 0x%02x; numdlvls = %d;\n", - | ~^ - | | - | int - | %ld - 713 | coc->compno, coc->compparms.csty, coc->compparms.numdlvls); - | ~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_rgn_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:843:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 843 | fprintf(out, "compno = %d; roisty = %d; roishift = %d\n", - | ~^ - | | - | int - | %ld - 844 | rgn->compno, rgn->roisty, rgn->roishift); - | ~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_qcc_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:936:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 936 | fprintf(out, "compno = %d; qntsty = %d; numguard = %d; " - | ~^ - | | - | int - | %ld - 937 | "numstepsizes = %d\n", qcc->compno, qcc->compparms.qntsty, qcc->compparms.numguard, - | ~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_sop_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1060:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1060 | fprintf(out, "seqno = %d;\n", sop->seqno); - | ~^ ~~~~~~~~~~ - | | | - | int uint_fast16_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_ppm_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1126:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1126 | fprintf(out, "ind=%d; len = %d;\n", ppm->ind, ppm->len); - | ~^ ~~~~~~~~ - | | | - | int uint_fast16_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_ppt_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1198:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 1198 | fprintf(out, "ind=%d; len = %d;\n", ppt->ind, ppt->len); - | ~^ ~~~~~~~~ - | | | - | int uint_fast32_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_poc_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1304:27: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1304 | fprintf(out, "cs[%d] = %d; ce[%d] = %d; ", - | ~^ - | | - | int - | %ld - 1305 | pchgno, pchg->compnostart, pchgno, pchg->compnoend); - | ~~~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1304:40: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1304 | fprintf(out, "cs[%d] = %d; ce[%d] = %d; ", - | ~^ - | | - | int - | %ld - 1305 | pchgno, pchg->compnostart, pchgno, pchg->compnoend); - | ~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1308:27: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1308 | fprintf(out, "le[%d] = %d\n", pchgno, pchg->lyrnoend); - | ~^ ~~~~~~~~~~~~~~ - | | | - | int uint_fast16_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_crg_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1371:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1371 | fprintf(out, "hoff[%d] = %d; voff[%d] = %d\n", compno, - | ~^ - | | - | int - | %ld - 1372 | comp->hoff, compno, comp->voff); - | ~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1371:44: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1371 | fprintf(out, "hoff[%d] = %d; voff[%d] = %d\n", compno, - | ~^ - | | - | int - | %ld - 1372 | comp->hoff, compno, comp->voff); - | ~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_com_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1434:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1434 | fprintf(out, "regid = %d;\n", com->regid); - | ~^ ~~~~~~~~~~ - | | | - | int uint_fast16_t {aka long unsigned int} - | %ld -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF stptok.d ../stptok.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxxml.d ../nxxml.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxstack.d ../nxstack.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxio.d ../nxio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxdataset.d ../nxdataset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napiu.d ../napiu.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi5.d ../napi5.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi.d ../napi.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../napi.c -In file included from /usr/include/string.h:495, - from ../napi.c:29: -In function ‘strncpy’, - inlined from ‘nxigetdata_’ at ../napi.c:1252:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi.c: In function ‘nxigetdata_’: -../napi.c:1252:3: note: length computed here - 1252 | strncpy((char *)data, pPtr2, strlen(pPtr2)); /* not NULL terminated by default */ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_process_crg’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:414:13: warning: variable ‘crg’ set but not used [-Wunused-but-set-variable] - 414 | jpc_crg_t *crg; - | ^~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_tileinit’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:659:16: warning: variable ‘brcbgyend’ set but not used [-Wunused-but-set-variable] - 659 | uint_fast32_t brcbgyend; - | ^~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - - | ~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - - | ~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - - | ~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - - | ~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - - | ~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} - 2007 | rlvl->xstart, rlvl->yend - rlvl->ystart); - | ~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - - 2007 | rlvl->xstart, rlvl->yend - rlvl->ystart); - | ~~~~~~~~~~~~~~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - - | ~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - - | ~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - - | ~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - - | ~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - - | ~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} - 2021 | prc->xstart, prc->yend - prc->ystart); - | ~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - - 2021 | prc->xstart, prc->yend - prc->ystart); - | ~~~~~~~~~~~~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../napi5.c -../napi5.c: In function ‘NX5makegroup’: -../napi5.c:506:8: warning: variable ‘iRet’ set but not used [-Wunused-but-set-variable] - 506 | hid_t iRet; - | ^~~~ -../napi5.c: In function ‘NX5getinfo64’: -../napi5.c:1919:31: warning: unused variable ‘vlen_bytes’ [-Wunused-variable] - 1919 | hsize_t myDim[H5S_MAX_RANK], vlen_bytes = 0, total_dims_size = 1; - | ^~~~~~~~~~ -../napi5.c: In function ‘NX5compmakedata64’: -../napi5.c:879:5: warning: ‘dID’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 879 | if (dID < 0) { - | ^ -In file included from /usr/include/string.h:495, - from ../napi5.c:34: -In function ‘strncpy’, - inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, - inlined from ‘NX5getgroupinfo’ at ../napi5.c:1555:4: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5makegroup’: -../napi5.c:516:29: warning: ‘%s’ directive output may be truncated writing up to 1023 bytes into a region of size 1022 [-Wformat-truncation=] - 516 | snprintf(pBuffer, 1023, "/%s/%s", pFile->name_ref, name); - | ^~ -In file included from /usr/include/stdio.h:867, - from ../../../include/os/Linux/H5Epublic.h:20, - from ../../../include/os/Linux/hdf5.h:26, - from ../napi5.h:9, - from ../napi5.c:39: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output 3 or more bytes (assuming 1026) into a destination of size 1023 - 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 68 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5opengroup’: -../napi5.c:571:26: warning: ‘__builtin___sprintf_chk’ may write a terminating nul past the end of the destination [-Wformat-overflow=] - 571 | sprintf(pBuffer, "%s/%s", pFile->name_tmp, name); - | ^ -In file included from /usr/include/stdio.h:867, - from ../../../include/os/Linux/H5Epublic.h:20, - from ../../../include/os/Linux/hdf5.h:26, - from ../napi5.h:9, - from ../napi5.c:39: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output 2 or more bytes (assuming 1025) into a destination of size 1024 - 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 37 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c:575:34: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 1011 [-Wformat-overflow=] - 575 | sprintf(pBuffer, "ERROR: group %s does not exist", - | ^~ -In file included from /usr/include/stdio.h:867, - from ../../../include/os/Linux/H5Epublic.h:20, - from ../../../include/os/Linux/hdf5.h:26, - from ../napi5.h:9, - from ../napi5.c:39: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output between 29 and 1052 bytes into a destination of size 1024 - 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 37 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from ../napi5.c:34: -In function ‘strncpy’, - inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, - inlined from ‘NX5opengroup’ at ../napi5.c:611:10: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘NX5getattra’ at ../napi5.c:2540:4: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5getattra’: -../napi5.c:2540:4: note: length computed here - 2540 | strncpy(data, strdata, strlen(strdata)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from ../napi5.c:34: -In function ‘strncpy’, - inlined from ‘NX5getdata’ at ../napi5.c:1859:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5getdata’: -../napi5.c:1859:5: note: length computed here - 1859 | strncpy(data, strdata, strlen(strdata)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5getnextentry’: -../napi5.c:1766:20: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 243 [-Wformat-overflow=] - 1766 | "ERROR: group %s does not exist", - | ^~ - 1767 | ph_name); - | ~~~~~~~ -In file included from /usr/include/stdio.h:867, - from ../../../include/os/Linux/H5Epublic.h:20, - from ../../../include/os/Linux/hdf5.h:26, - from ../napi5.h:9, - from ../napi5.c:39: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output between 29 and 1052 bytes into a destination of size 256 - 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 37 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from ../napi5.c:34: -In function ‘strncpy’, - inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, - inlined from ‘NX5getnextentry’ at ../napi5.c:1781:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, - inlined from ‘NX5getgroupinfo_recurse’ at ../napi5.c:1496:4: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../napiu.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxdataset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxstack.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxxml.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../stptok.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_calcssmant’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:870:6: warning: variable ‘e’ set but not used [-Wunused-but-set-variable] - 870 | int e; - | ^ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainhdr’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:901:12: warning: variable ‘mctsynweight’ set but not used [-Wunused-but-set-variable] - 901 | jpc_fix_t mctsynweight; - | ^~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainbody’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1115:7: warning: variable ‘numbytes’ set but not used [-Wunused-but-set-variable] - 1115 | long numbytes; - | ^~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1101:6: warning: variable ‘tiley’ set but not used [-Wunused-but-set-variable] - 1101 | int tiley; - | ^~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1100:6: warning: variable ‘tilex’ set but not used [-Wunused-but-set-variable] - 1100 | int tilex; - | ^~~~~ -At top level: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:883:12: warning: ‘jpc_calcssexp’ defined but not used [-Wunused-function] - 883 | static int jpc_calcssexp(jpc_fix_t stepsize) - | ^~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:867:12: warning: ‘jpc_calcssmant’ defined but not used [-Wunused-function] - 867 | static int jpc_calcssmant(jpc_fix_t stepsize) - | ^~~~~~~~~~~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -/usr/bin/ar -rc libNeXus.a napi.o napi5.o napiu.o nxdataset.o nxio.o nxstack.o nxxml.o stptok.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -/usr/bin/ranlib libNeXus.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -g++ -o libNeXus.so -shared -fPIC -Wl,-hlibNeXus.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 napi.o napi5.o napiu.o nxdataset.o nxio.o nxstack.o nxxml.o stptok.o -lhdf5 -lszip -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make -C ./jbig install -make -C ./libjbig install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' -mkdir -p O.Common -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig_tab.d ../jbig_tab.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig.d ../jbig.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c: In function ‘jpc_mqdec_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c:304:39: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 304 | fprintf(out, "IND %d, MPS %d, QEVAL %x\n", (int) (*mqdec->curctx - - | ~^ - | | - | unsigned int - | %lx - 305 | jpc_mqstates), (*mqdec->curctx)->mps, (*mqdec->curctx)->qeval); - | ~~~~~~~~~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c: In function ‘jpc_mqenc_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:386:26: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 386 | fprintf(out, "AREG = %08x, CREG = %08x, CTREG = %d\n", - | ~~~^ - | | - | unsigned int - | %08lx - 387 | mqenc->areg, mqenc->creg, mqenc->ctreg); - | ~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:386:39: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 386 | fprintf(out, "AREG = %08x, CREG = %08x, CTREG = %d\n", - | ~~~^ - | | - | unsigned int - | %08lx - 387 | mqenc->areg, mqenc->creg, mqenc->ctreg); - | ~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:386:51: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 386 | fprintf(out, "AREG = %08x, CREG = %08x, CTREG = %d\n", - | ~^ - | | - | int - | %ld - 387 | mqenc->areg, mqenc->creg, mqenc->ctreg); - | ~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:388:49: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 388 | fprintf(out, "IND = %02d, MPS = %d, QEVAL = %04x\n", - | ~~~^ - | | - | unsigned int - | %04lx - 389 | (int) (*mqenc->curctx - jpc_mqstates), (*mqenc->curctx)->mps, - 390 | (*mqenc->curctx)->qeval); - | ~~~~~~~~~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../jbig.c -../jbig.c: In function ‘jbg_dec_merge_planes’: -../jbig.c:3041:7: warning: variable ‘bpp’ set but not used [-Wunused-but-set-variable] - 3041 | int bpp; - | ^~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../jbig_tab.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -/usr/bin/ar -rc libjbig.a jbig.o jbig_tab.o -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -/usr/bin/ranlib libjbig.a -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -g++ -o libjbig.so -shared -fPIC -Wl,-hlibjbig.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jbig.o jbig_tab.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:288:2: warning: initialization of ‘int (*)(int *, int, int, int, int, int)’ from incompatible pointer type ‘int (*)(jpc_fix_t *, int, int, int, int, int)’ {aka ‘int (*)(long int *, int, int, int, int, int)’} [-Wincompatible-pointer-types] - 288 | jpc_ft_analyze, - | ^~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:288:2: note: (near initialization for ‘jpc_ft_qmfb2d.analyze’) -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:295:2: warning: initialization of ‘int (*)(int *, int, int, int, int, int)’ from incompatible pointer type ‘int (*)(jpc_fix_t *, int, int, int, int, int)’ {aka ‘int (*)(long int *, int, int, int, int, int)’} [-Wincompatible-pointer-types] - 295 | jpc_ns_analyze, - | ^~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:295:2: note: (near initialization for ‘jpc_ns_qmfb2d.analyze’) -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:296:2: warning: initialization of ‘int (*)(int *, int, int, int, int, int)’ from incompatible pointer type ‘int (*)(jpc_fix_t *, int, int, int, int, int)’ {aka ‘int (*)(long int *, int, int, int, int, int)’} [-Wincompatible-pointer-types] - 296 | jpc_ns_synthesize, - | ^~~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:296:2: note: (near initialization for ‘jpc_ns_qmfb2d.synthesize’) -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c: In function ‘jpc_ft_synthesize’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:1607:11: warning: assignment to ‘jpc_fix_t *’ {aka ‘long int *’} from incompatible pointer type ‘int *’ [-Wincompatible-pointer-types] - 1607 | startptr = &a[0]; - | ^ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:1615:11: warning: assignment to ‘jpc_fix_t *’ {aka ‘long int *’} from incompatible pointer type ‘int *’ [-Wincompatible-pointer-types] - 1615 | startptr = &a[0]; - | ^ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c: In function ‘jpc_enc_enccblk’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:205:18: warning: variable ‘rlvl’ set but not used [-Wunused-but-set-variable] - 205 | jpc_enc_rlvl_t *rlvl; - | ^~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:200:6: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] - 200 | int ret; - | ^~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:77: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c: In function ‘jpc_tsfb_analyze’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:177:3: warning: passing argument 2 of ‘jpc_tsfb_analyze2’ from incompatible pointer type [-Wincompatible-pointer-types] - 177 | (&(matrix)->rows_[i][j]) - | ^ - | | - | jas_seqent_t * {aka long int *} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:259:3: note: in expansion of macro ‘jas_matrix_getref’ - 259 | (jas_matrix_getref(s, (y) - (s)->ystart_, (x) - (s)->xstart_)) - | ^~~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:130:55: note: in expansion of macro ‘jas_seq2d_getref’ - 130 | return (tsfb->numlvls > 0) ? jpc_tsfb_analyze2(tsfb, jas_seq2d_getref(a, - | ^~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:85:46: note: expected ‘int *’ but argument is of type ‘jas_seqent_t *’ {aka ‘long int *’} - 85 | int jpc_tsfb_analyze2(jpc_tsfb_t *tsfb, int *a, int xstart, int ystart, - | ~~~~~^ -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:77: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c: In function ‘jpc_tsfb_synthesize’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:177:3: warning: passing argument 2 of ‘jpc_tsfb_synthesize2’ from incompatible pointer type [-Wincompatible-pointer-types] - 177 | (&(matrix)->rows_[i][j]) - | ^ - | | - | jas_seqent_t * {aka long int *} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:259:3: note: in expansion of macro ‘jas_matrix_getref’ - 259 | (jas_matrix_getref(s, (y) - (s)->ystart_, (x) - (s)->xstart_)) - | ^~~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:158:4: note: in expansion of macro ‘jas_seq2d_getref’ - 158 | jas_seq2d_getref(a, jas_seq2d_xstart(a), jas_seq2d_ystart(a)), - | ^~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:88:49: note: expected ‘int *’ but argument is of type ‘jas_seqent_t *’ {aka ‘long int *’} - 88 | int jpc_tsfb_synthesize2(jpc_tsfb_t *tsfb, int *a, int xstart, int ystart, - | ~~~~~^ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make -C ./magick install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' -mkdir -p O.Common -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c: In function ‘jpc_atoaf’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:11: warning: comparison between pointer and zero character constant [-Wpointer-compare] - 105 | if (cp != '\0') { - | ^~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:8: note: did you mean to dereference the pointer? - 105 | if (cp != '\0') { - | ^ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:12: warning: comparison between pointer and zero character constant [-Wpointer-compare] - 123 | if (cp != '\0') { - | ^~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:9: note: did you mean to dereference the pointer? - 123 | if (cp != '\0') { - | ^ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF analyze_Linux.d ../analyze_Linux.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -/usr/bin/ar -rc libjp2.a jas_cm.o jas_debug.o jas_getopt.o jas_icc.o jas_iccdata.o jas_image.o jas_init.o jas_malloc.o jas_seq.o jas_stream.o jas_string.o jas_tmr.o jas_tvp.o jas_version.o jp2_cod.o jp2_dec.o jp2_enc.o jpc_bs.o jpc_cs.o jpc_dec.o jpc_enc.o jpc_math.o jpc_mct.o jpc_mqcod.o jpc_mqdec.o jpc_mqenc.o jpc_qmfb.o jpc_t1cod.o jpc_t1dec.o jpc_t1enc.o jpc_t2cod.o jpc_t2dec.o jpc_t2enc.o jpc_tagtree.o jpc_tsfb.o jpc_util.o -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -/usr/bin/ranlib libjp2.a -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF xwindow.d ../xwindow.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -g++ -o libjp2.so -shared -fPIC -Wl,-hlibjp2.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jas_cm.o jas_debug.o jas_getopt.o jas_icc.o jas_iccdata.o jas_image.o jas_init.o jas_malloc.o jas_seq.o jas_stream.o jas_string.o jas_tmr.o jas_tvp.o jas_version.o jp2_cod.o jp2_dec.o jp2_enc.o jpc_bs.o jpc_cs.o jpc_dec.o jpc_enc.o jpc_math.o jpc_mct.o jpc_mqcod.o jpc_mqdec.o jpc_mqenc.o jpc_qmfb.o jpc_t1cod.o jpc_t1dec.o jpc_t1enc.o jpc_t2cod.o jpc_t2dec.o jpc_t2enc.o jpc_tagtree.o jpc_tsfb.o jpc_util.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -/usr/bin/ld: jas_stream.o: in function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7e9): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF widget.d ../widget.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF version.d ../version.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF utility.d ../utility.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF unix_port.d ../unix_port.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type.d ../type.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tsd.d ../tsd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF transform.d ../transform.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF texture.d ../texture.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF timer.d ../timer.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF statistics.d ../statistics.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tempfile.d ../tempfile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF signature.d ../signature.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF shear.d ../shear.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF semaphore.d ../semaphore.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF segment.d ../segment.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resource.d ../resource.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resize.d ../resize.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF registry.d ../registry.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF render.d ../render.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF random.d ../random.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF quantize.d ../quantize.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF profile.d ../profile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF PreRvIcccm.d ../PreRvIcccm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF plasma.d ../plasma.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_iterator.d ../pixel_iterator.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_cache.d ../pixel_cache.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF paint.d ../paint.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF operator.d ../operator.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF omp_data_view.d ../omp_data_view.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_feature.d ../nt_feature.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_base.d ../nt_base.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF montage.d ../montage.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF monitor.d ../monitor.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF module.d ../module.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF memory.d ../memory.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF map.d ../map.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick_endian.d ../magick_endian.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magic.d ../magic.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick.d ../magick.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF log.d ../log.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF locale.d ../locale.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF list.d ../list.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF import.d ../import.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF hclut.d ../hclut.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF image.d ../image.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gradient.d ../gradient.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gem.d ../gem.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fx.d ../fx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF floats.d ../floats.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF export.d ../export.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF error.d ../error.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enum_strings.d ../enum_strings.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enhance.d ../enhance.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF effect.d ../effect.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF draw.d ../draw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF display.d ../display.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF describe.d ../describe.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF deprecate.d ../deprecate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF delegate.d ../delegate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF decorate.d ../decorate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF constitute.d ../constitute.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF confirm_access.d ../confirm_access.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compress.d ../compress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF composite.d ../composite.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compare.d ../compare.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color_lookup.d ../color_lookup.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF command.d ../command.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colorspace.d ../colorspace.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colormap.d ../colormap.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color.d ../color.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF channel.d ../channel.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cdl.d ../cdl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF blob.d ../blob.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bit_stream.d ../bit_stream.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF average.d ../average.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF attribute.d ../attribute.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF annotate.d ../annotate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF animate.d ../animate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -mkdir ../../../../include/magick -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../annotate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../animate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../average.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../bit_stream.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../attribute.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../cdl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../blob.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../channel.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../color.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../colormap.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../color_lookup.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../colorspace.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../compare.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../composite.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../compress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../confirm_access.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../constitute.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../decorate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../delegate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../deprecate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../describe.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../command.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../draw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../display.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../enhance.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../effect.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../enum_strings.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../error.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../floats.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../fx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../gem.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../gradient.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../hclut.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../image.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../import.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../list.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../locale.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../log.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../magic.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../magick.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../magick_endian.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../map.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../memory.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../module.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../monitor.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../montage.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../nt_base.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../nt_feature.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../omp_data_view.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../operator.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../paint.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../pixel_cache.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../pixel_iterator.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../plasma.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../PreRvIcccm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../profile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../export.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../random.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../registry.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../quantize.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../resize.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../resource.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../segment.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../semaphore.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../shear.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../signature.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../statistics.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../render.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../tempfile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../texture.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../timer.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../tsd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../transform.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../type.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../unix_port.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../version.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../utility.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../widget.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../xwindow.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../analyze_Linux.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -/usr/bin/ar -rc libMagick.a animate.o annotate.o attribute.o average.o bit_stream.o blob.o cdl.o channel.o color.o colormap.o colorspace.o color_lookup.o command.o compare.o composite.o compress.o confirm_access.o constitute.o decorate.o delegate.o deprecate.o describe.o display.o draw.o effect.o enhance.o enum_strings.o error.o export.o floats.o fx.o gem.o gradient.o hclut.o image.o import.o list.o locale.o log.o magic.o magick.o magick_endian.o map.o memory.o module.o monitor.o montage.o nt_base.o nt_feature.o omp_data_view.o operator.o paint.o pixel_cache.o pixel_iterator.o plasma.o PreRvIcccm.o profile.o quantize.o random.o registry.o render.o resize.o resource.o segment.o semaphore.o shear.o signature.o statistics.o tempfile.o texture.o timer.o transform.o tsd.o type.o unix_port.o utility.o version.o widget.o xwindow.o analyze_Linux.o -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -/usr/bin/ranlib libMagick.a -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -g++ -o libMagick.so -shared -fPIC -Wl,-hlibMagick.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 animate.o annotate.o attribute.o average.o bit_stream.o blob.o cdl.o channel.o color.o colormap.o colorspace.o color_lookup.o command.o compare.o composite.o compress.o confirm_access.o constitute.o decorate.o delegate.o deprecate.o describe.o display.o draw.o effect.o enhance.o enum_strings.o error.o export.o floats.o fx.o gem.o gradient.o hclut.o image.o import.o list.o locale.o log.o magic.o magick.o magick_endian.o map.o memory.o module.o monitor.o montage.o nt_base.o nt_feature.o omp_data_view.o operator.o paint.o pixel_cache.o pixel_iterator.o plasma.o PreRvIcccm.o profile.o quantize.o random.o registry.o render.o resize.o resource.o segment.o semaphore.o shear.o signature.o statistics.o tempfile.o texture.o timer.o transform.o tsd.o type.o unix_port.o utility.o version.o widget.o xwindow.o analyze_Linux.o -lbzlib -llcms -lttf -lzlib -Wl,-Bdynamic -lXext -lpthread -lm -lrt -ldl -lgcc -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make -C ./filters install -make -C ./coders install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' -mkdir -p O.Common -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' -mkdir -p O.Common -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF static.d ../static.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -MM -MF analyze.d ../analyze.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF yuv.d ../yuv.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xwd.d ../xwd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xtrn.d ../xtrn.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xpm.d ../xpm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xcf.d ../xcf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xc.d ../xc.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -c ../analyze.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xbm.d ../xbm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -/usr/bin/ar -rc libfilters.a analyze.o -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -/usr/bin/ranlib libfilters.a -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF x.d ../x.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -g++ -o libfilters.so -shared -fPIC -Wl,-hlibfilters.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 analyze.o -lMagick -lttf -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wpg.d ../wpg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wmf.d ../wmf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF webp.d ../webp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wbmp.d ../wbmp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF viff.d ../viff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vid.d ../vid.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vicar.d ../vicar.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uyvy.d ../uyvy.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF url.d ../url.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uil.d ../uil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF txt.d ../txt.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ttf.d ../ttf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF topol.d ../topol.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tim.d ../tim.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tile.d ../tile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tiff.d ../tiff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tga.d ../tga.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF svg.d ../svg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sun.d ../sun.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF stegano.d ../stegano.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sgi.d ../sgi.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sfw.d ../sfw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sct.d ../sct.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rle.d ../rle.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rla.d ../rla.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rgb.d ../rgb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pwp.d ../pwp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF psd.d ../psd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps3.d ../ps3.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps2.d ../ps2.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps.d ../ps.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF preview.d ../preview.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pnm.d ../pnm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF png.d ../png.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF plasma.d ../plasma.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pix.d ../pix.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pict.d ../pict.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdf.d ../pdf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdb.d ../pdb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcx.d ../pcx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcl.d ../pcl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcd.d ../pcd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF palm.d ../palm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF otb.d ../otb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF null.d ../null.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mvg.d ../mvg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mtv.d ../mtv.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF msl.d ../msl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpr.d ../mpr.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpeg.d ../mpeg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpc.d ../mpc.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mono.d ../mono.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF miff.d ../miff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF meta.d ../meta.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF matte.d ../matte.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mat.d ../mat.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF map.d ../map.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mac.d ../mac.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF logo.d ../logo.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF locale.d ../locale.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF label.d ../label.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jpeg.d ../jpeg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jp2.d ../jp2.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jnx.d ../jnx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jbig.d ../jbig.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF info.d ../info.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF identity.d ../identity.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF icon.d ../icon.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF html.d ../html.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hrz.d ../hrz.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF histogram.d ../histogram.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hdf.d ../hdf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gray.d ../gray.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gradient.d ../gradient.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gif.d ../gif.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fpx.d ../fpx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fits.d ../fits.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fax.d ../fax.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ept.d ../ept.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF emf.d ../emf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dpx.d ../dpx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dps.d ../dps.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dib.d ../dib.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcraw.d ../dcraw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcm.d ../dcm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cut.d ../cut.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cmyk.d ../cmyk.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF clipboard.d ../clipboard.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cineon.d ../cineon.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF caption.d ../caption.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cals.d ../cals.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF bmp.d ../bmp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avs.d ../avs.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avi.d ../avi.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF art.d ../art.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../art.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../avs.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../avi.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cals.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../caption.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cineon.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../clipboard.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cmyk.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../bmp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cut.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dcraw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dcm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dps.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dib.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../emf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ept.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../fax.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../fits.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../fpx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../gif.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../gradient.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dpx.c -In file included from /usr/include/string.h:495, - from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:126, - from ../dpx.c:123: -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3865:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3865:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3866:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3866:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3891:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3891:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3895:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3895:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3896:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3896:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3897:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3897:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3910:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3910:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3911:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3911:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3912:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3912:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3913:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3913:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3914:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3914:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3915:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3915:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3921:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3921:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3922:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3922:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../gray.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../hdf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../histogram.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../hrz.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../html.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../icon.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../identity.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../info.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jbig.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jnx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jp2.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../label.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../locale.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jpeg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mac.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../logo.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../map.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../matte.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mat.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../meta.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mono.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mpc.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../miff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mpr.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mpeg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mtv.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mvg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../null.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../otb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../palm.c -../palm.c:395:3: warning: ‘PalmPalette’ defined but not used [-Wunused-const-variable=] - 395 | PalmPalette[256][3] = - | ^~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../msl.c -In file included from /usr/include/string.h:495, - from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:126, - from ../msl.c:39: -In function ‘strncpy’, - inlined from ‘MSLStartElement’ at ../msl.c:3262:36: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin___strncpy_chk’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../msl.c: In function ‘MSLStartElement’: -../msl.c:3258:41: note: length computed here - 3258 | len = (int) strlen( value ); - | ^~~~~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pcl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pcd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pdb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pcx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pdf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pix.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../plasma.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pict.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:67, - from ../pict.c:38: -../pict.c: In function ‘WritePICTImage’: -../../../../include/magick/symbols.h:552:22: warning: argument 1 value ‘18446744073709551488’ exceeds maximum object size 9223372036854775807 [-Walloc-size-larger-than=] - 552 | #define MagickMalloc GmMagickMalloc -../../../../include/magick/memory.h:47:12: note: in expansion of macro ‘MagickMalloc’ - 47 | ((type) MagickMalloc((size_t) (size)))) - | ^~~~~~~~~~~~ -../pict.c:1654:12: note: in expansion of macro ‘MagickAllocateMemory’ - 1654 | scanline=MagickAllocateMemory(unsigned char *,row_bytes); - | ^~~~~~~~~~~~~~~~~~~~ -../../../../include/magick/symbols.h:552:22: note: in a call to allocation function ‘GmMagickMalloc’ declared here - 552 | #define MagickMalloc GmMagickMalloc - | ^~~~~~~~~~~~~~ -../../../../include/magick/memory.h:24:4: note: in expansion of macro ‘MagickMalloc’ - 24 | *MagickMalloc(const size_t size) MAGICK_FUNC_MALLOC MAGICK_FUNC_ALLOC_SIZE_1ARG(1), - | ^~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pnm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../preview.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ps.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ps2.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ps3.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../psd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pwp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../png.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../rla.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../rgb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sct.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sfw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../rle.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../stegano.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sgi.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sun.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tga.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../svg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tim.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../topol.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ttf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tiff.c -In file included from ../../../../include/os/Linux/jpeglib.h:27, - from ../tiff.c:78: -../../../../include/os/Linux/jmorecfg.h:248: warning: "EXTERN" redefined - 248 | #define EXTERN(type) extern type - | -In file included from ../tiff.c:64: -../../../../include/os/Linux/tiffio.h:91: note: this is the location of the previous definition - 91 | # define EXTERN extern - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../txt.c -../txt.c: In function ‘ReadTXTImage’: -../txt.c:940:25: warning: comparison between pointer and zero character constant [-Wpointer-compare] - 940 | if (draw_info->text != '\0') - | ^~ -../txt.c:940:9: note: did you mean to dereference the pointer? - 940 | if (draw_info->text != '\0') - | ^ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../url.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../uil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../uyvy.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../vicar.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../vid.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../wbmp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../viff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../wmf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../webp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../x.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../wpg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xbm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xc.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xcf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xtrn.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xpm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xwd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../yuv.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../static.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -/usr/bin/ar -rc libcoders.a art.o avi.o avs.o bmp.o cals.o caption.o cineon.o clipboard.o cmyk.o cut.o dcm.o dcraw.o dib.o dps.o dpx.o emf.o ept.o fax.o fits.o fpx.o gif.o gradient.o gray.o hdf.o histogram.o hrz.o html.o icon.o identity.o info.o jbig.o jnx.o jp2.o jpeg.o label.o locale.o logo.o mac.o map.o mat.o matte.o meta.o miff.o mono.o mpc.o mpeg.o mpr.o msl.o mtv.o mvg.o null.o otb.o palm.o pcd.o pcl.o pcx.o pdb.o pdf.o pict.o pix.o plasma.o png.o pnm.o preview.o ps.o ps2.o ps3.o psd.o pwp.o rgb.o rla.o rle.o sct.o sfw.o sgi.o stegano.o sun.o svg.o tga.o tiff.o tile.o tim.o topol.o ttf.o txt.o uil.o url.o uyvy.o vicar.o vid.o viff.o wbmp.o webp.o wmf.o wpg.o x.o xbm.o xc.o xcf.o xpm.o xtrn.o xwd.o yuv.o static.o -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -/usr/bin/ranlib libcoders.a -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -g++ -o libcoders.so -shared -fPIC -Wl,-hlibcoders.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 art.o avi.o avs.o bmp.o cals.o caption.o cineon.o clipboard.o cmyk.o cut.o dcm.o dcraw.o dib.o dps.o dpx.o emf.o ept.o fax.o fits.o fpx.o gif.o gradient.o gray.o hdf.o histogram.o hrz.o html.o icon.o identity.o info.o jbig.o jnx.o jp2.o jpeg.o label.o locale.o logo.o mac.o map.o mat.o matte.o meta.o miff.o mono.o mpc.o mpeg.o mpr.o msl.o mtv.o mvg.o null.o otb.o palm.o pcd.o pcl.o pcx.o pdb.o pdf.o pict.o pix.o plasma.o png.o pnm.o preview.o ps.o ps2.o ps3.o psd.o pwp.o rgb.o rla.o rle.o sct.o sfw.o sgi.o stegano.o sun.o svg.o tga.o tiff.o tile.o tim.o topol.o ttf.o txt.o uil.o url.o uyvy.o vicar.o vid.o viff.o wbmp.o webp.o wmf.o wpg.o x.o xbm.o xc.o xcf.o xpm.o xtrn.o xwd.o yuv.o static.o -lbzlib -ljbig -ljp2 -lMagick -lpng -lttf -lwebp -lwmf -ltiff -ljpeg -lxml2 -lnanohttp_stream -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make -C ./Magick++ install -make -C ./lib install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' -mkdir -p O.Common -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF TypeMetric.d ../TypeMetric.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Thread.d ../Thread.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF STL.d ../STL.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Pixels.d ../Pixels.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Montage.d ../Montage.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Options.d ../Options.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF ImageRef.d ../ImageRef.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Image.d ../Image.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Geometry.d ../Geometry.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Functions.d ../Functions.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Exception.d ../Exception.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Drawable.d ../Drawable.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Color.d ../Color.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF CoderInfo.d ../CoderInfo.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF BlobRef.d ../BlobRef.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Blob.d ../Blob.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -mkdir ../../../../../include/Magick++ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../BlobRef.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Blob.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../CoderInfo.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Color.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Exception.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Functions.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Geometry.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Drawable.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../ImageRef.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Montage.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Options.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Image.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Pixels.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Thread.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../TypeMetric.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../STL.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -/usr/bin/ar -rc libMagick++.a Blob.o BlobRef.o CoderInfo.o Color.o Drawable.o Exception.o Functions.o Geometry.o Image.o ImageRef.o Montage.o Options.o Pixels.o STL.o Thread.o TypeMetric.o -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -/usr/bin/ranlib libMagick++.a -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -o libMagick++.so -shared -fPIC -Wl,-hlibMagick++.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 Blob.o BlobRef.o CoderInfo.o Color.o Drawable.o Exception.o Functions.o Geometry.o Image.o ImageRef.o Montage.o Options.o Pixels.o STL.o Thread.o TypeMetric.o -lMagick -lcoders -Wl,-Bdynamic -lXext -lpthread -lm -lrt -ldl -lgcc -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make -C /builds/DATAnet/adurl/.cache/adcore-R3-10 install -make -C ./configure install -make -C ./ADApp install -make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../.. -make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' -make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' -mkdir -p O.Common -make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/configure' -make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ - T_A=linux-x86_64 install -make -C ./Db install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease -make -C ./ADSrc install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db/O.linux-x86_64' -mkdir ../../../db -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/Db/O.linux-x86_64' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myAttributeFunctions.d ../myAttributeFunctions.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myTimeStampSource.d ../myTimeStampSource.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DUSE_TYPED_RSET -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parseAreaPrefixes.d ../parseAreaPrefixes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF functAttribute.d ../functAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF PVAttribute.d ../PVAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF CCDMultiTrack.d ../CCDMultiTrack.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF paramAttribute.d ../paramAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ADDriver.d ../ADDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF asynNDArrayDriver.d ../asynNDArrayDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArray.d ../NDArray.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayPool.d ../NDArrayPool.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttributeList.d ../NDAttributeList.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttribute.d ../NDAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make -C ./op install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -Installing CFG file ../../../cfg/commonLibraryMakefile -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -mkdir ../../../cfg -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[3]: Nothing to be done for 'install'. -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -Installing CFG file ../../../cfg/commonDriverMakefile -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -mkdir ../../../dbd -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -mkdir ../../../include -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDAttributeList.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDArray.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../asynNDArrayDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../ADDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../paramAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../CCDMultiTrack.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../PVAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDArrayPool.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../functAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DUSE_TYPED_RSET -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../parseAreaPrefixes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../myTimeStampSource.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../myAttributeFunctions.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -/usr/bin/ar -rc libADBase.a NDAttribute.o NDAttributeList.o NDArrayPool.o NDArray.o asynNDArrayDriver.o ADDriver.o paramAttribute.o CCDMultiTrack.o PVAttribute.o functAttribute.o parseAreaPrefixes.o myTimeStampSource.o myAttributeFunctions.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -/usr/bin/ranlib libADBase.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -g++ -o libADBase.so -shared -fPIC -Wl,-hlibADBase.so -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 NDAttribute.o NDAttributeList.o NDArrayPool.o NDArray.o asynNDArrayDriver.o ADDriver.o paramAttribute.o CCDMultiTrack.o PVAttribute.o functAttribute.o parseAreaPrefixes.o myTimeStampSource.o myAttributeFunctions.o -lasyn -ldbRecStd -ldbCore -lca -lCom -lxml2 -Wl,-Bdynamic -lpthread -lreadline -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ADSrc/O.linux-x86_64' -make -C ./ntndArrayConverterSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ntndArrayConverter_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ntndArrayConverter.d ../ntndArrayConverter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ntndArrayConverter_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../ntndArrayConverter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -/usr/bin/ar -rc libntndArrayConverter.a ntndArrayConverter.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -/usr/bin/ranlib libntndArrayConverter.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -g++ -o libntndArrayConverter.so -shared -fPIC -Wl,-hlibntndArrayConverter.so -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 ntndArrayConverter.o -lADBase -lpvData -lnt -lasyn -ldbRecStd -ldbCore -lca -lCom -Wl,-Bdynamic -lpthread -lreadline -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -make -C ./pluginSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileTIFF.d ../NDFileTIFF.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginPva.d ../NDPluginPva.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNexus.d ../NDFileNexus.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNetCDF.d ../NDFileNetCDF.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileJPEG.d ../NDFileJPEG.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Layout.d ../NDFileHDF5Layout.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5LayoutXML.d ../NDFileHDF5LayoutXML.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5AttributeDataset.d ../NDFileHDF5AttributeDataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Dataset.d ../NDFileHDF5Dataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5.d ../NDFileHDF5.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileMagick.d ../NDFileMagick.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNull.d ../NDFileNull.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFile.d ../NDPluginFile.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPluginFileReader.d ../NDPosPluginFileReader.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPlugin.d ../NDPosPlugin.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCodec.d ../NDPluginCodec.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttrPlot.d ../NDPluginAttrPlot.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTransform.d ../NDPluginTransform.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTimeSeries.d ../NDPluginTimeSeries.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStdArrays.d ../NDPluginStdArrays.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStats.d ../NDPluginStats.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginScatter.d ../NDPluginScatter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROIStat.d ../NDPluginROIStat.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROI.d ../NDPluginROI.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlayTextFont.d ../NDPluginOverlayTextFont.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginProcess.d ../NDPluginProcess.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlay.d ../NDPluginOverlay.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fft.d ../fft.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginGather.d ../NDPluginGather.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFFT.d ../NDPluginFFT.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginColorConvert.d ../NDPluginColorConvert.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayRing.d ../NDArrayRing.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCircularBuff.d ../NDPluginCircularBuff.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF throttler.d ../throttler.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttribute.d ../NDPluginAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginDriver.d ../NDPluginDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/dbdExpand.pl -I. -I.. -I../O.Common -I../../../dbd -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/dbd -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/dbd -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/dbd -I/builds/DATAnet/adurl/.cache/asyn-R4-41/dbd -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/dbd -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/dbd -I/builds/DATAnet/adurl/.cache/adcore-R3-10/dbd -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/dbd -o NDPluginSupport.dbd NDPluginAttribute.dbd NDPluginCircularBuff.dbd NDPluginColorConvert.dbd NDPluginFFT.dbd NDPluginGather.dbd NDPluginOverlay.dbd NDPluginProcess.dbd NDPluginROI.dbd NDPluginROIStat.dbd NDPluginScatter.dbd NDPluginStats.dbd NDPluginStdArrays.dbd NDPluginTimeSeries.dbd NDPluginTransform.dbd NDPluginAttrPlot.dbd NDPluginCodec.dbd -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../throttler.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDArrayRing.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginCircularBuff.cpp -In file included from /usr/include/string.h:495, - from ../NDPluginCircularBuff.cpp:11: -In function ‘char* strncpy(char*, const char*, size_t)’, - inlined from ‘virtual asynStatus NDPluginCircularBuff::writeOctet(asynUser*, const char*, size_t, size_t*)’ at ../NDPluginCircularBuff.cpp:343:14: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:34: warning: ‘char* __builtin_strncpy(char*, const char*, long unsigned int)’ specified bound 100 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginFFT.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../fft.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginGather.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginColorConvert.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginOverlayTextFont.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginProcess.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginOverlay.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginROI.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginScatter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginROIStat.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginStdArrays.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginStats.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginTimeSeries.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginAttrPlot.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginCodec.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPosPlugin.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginTransform.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPosPluginFileReader.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginFile.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileNull.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileMagick.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5Dataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5AttributeDataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5LayoutXML.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileJPEG.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileNetCDF.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5Layout.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileNexus.cpp -../NDFileNexus.cpp: In member function ‘int NDFileNexus::processNode(xmlNode*, NDArray*)’: -../NDFileNexus.cpp:423:36: warning: ‘__builtin___sprintf_chk’ may write a terminating nul past the end of the destination [-Wformat-overflow=] - 423 | sprintf(this->dataPath, "%c%s", '/', dPath); - | ^ -In file included from /usr/include/stdio.h:867, - from ../NDFileNexus.cpp:12: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:34: note: ‘__builtin___sprintf_chk’ output between 2 and 129 bytes into a destination of size 128 - 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, - | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 37 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileTIFF.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginPva.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -/usr/bin/ar -rc libNDPlugin.a NDPluginDriver.o throttler.o NDPluginAttribute.o NDPluginCircularBuff.o NDArrayRing.o NDPluginColorConvert.o NDPluginFFT.o fft.o NDPluginGather.o NDPluginOverlay.o NDPluginOverlayTextFont.o NDPluginProcess.o NDPluginROI.o NDPluginROIStat.o NDPluginScatter.o NDPluginStats.o NDPluginStdArrays.o NDPluginTimeSeries.o NDPluginTransform.o NDPluginAttrPlot.o NDPluginCodec.o NDPosPlugin.o NDPosPluginFileReader.o NDPluginFile.o NDFileNull.o NDFileMagick.o NDFileHDF5.o NDFileHDF5Dataset.o NDFileHDF5AttributeDataset.o NDFileHDF5LayoutXML.o NDFileHDF5Layout.o NDFileJPEG.o NDFileNetCDF.o NDFileNexus.o NDFileTIFF.o NDPluginPva.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -/usr/bin/ranlib libNDPlugin.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -g++ -o libNDPlugin.so -shared -fPIC -Wl,-hlibNDPlugin.so -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 NDPluginDriver.o throttler.o NDPluginAttribute.o NDPluginCircularBuff.o NDArrayRing.o NDPluginColorConvert.o NDPluginFFT.o fft.o NDPluginGather.o NDPluginOverlay.o NDPluginOverlayTextFont.o NDPluginProcess.o NDPluginROI.o NDPluginROIStat.o NDPluginScatter.o NDPluginStats.o NDPluginStdArrays.o NDPluginTimeSeries.o NDPluginTransform.o NDPluginAttrPlot.o NDPluginCodec.o NDPosPlugin.o NDPosPluginFileReader.o NDPluginFile.o NDFileNull.o NDFileMagick.o NDFileHDF5.o NDFileHDF5Dataset.o NDFileHDF5AttributeDataset.o NDFileHDF5LayoutXML.o NDFileHDF5Layout.o NDFileJPEG.o NDFileNetCDF.o NDFileNexus.o NDFileTIFF.o NDPluginPva.o -lADBase -lasyn -lntndArrayConverter -lnt -lpvDatabase -lpvAccess -lpvData -lnetCDF -lMagick++ -lcoders -lMagick -ljbig -ljp2 -lbzlib -lpng -lwebp -llcms -lttf -lwmf -lfilters -ltiff -lxml2 -lNeXus -lhdf5 -lhdf5_hl -lblosc -lszip -lzlib -ljpeg -ldbRecStd -ldbCore -lca -lCom -Wl,-Bdynamic -lX11 -lXext -lpthread -lreadline -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginSrc/O.linux-x86_64' -make -C ./pluginTests install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginTests' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginTests' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginTests' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-10/ADApp/pluginTests' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Nothing to be done for 'install'. -DEBUG:__main__:EXEC DONE -DEBUG:__main__:EXEC 'make -j2 -Otarget' in /builds/DATAnet/adurl/.cache/adsupport-master -Building dependency ADSUPPORT in /builds/DATAnet/adurl/.cache/adsupport-master -make -C ./configure install -make -C ./supportApp install -make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ - T_A=linux-x86_64 install -make -C ./jpegSrc install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease -make -C ./zlibSrc install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[3]: Nothing to be done for 'install'. -make -C ./szipSrc install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[3]: Nothing to be done for 'install'. -make -C ./bitshuffleSrc install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[3]: Nothing to be done for 'install'. -make -C ./cbfSrc install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[3]: Nothing to be done for 'install'. -make -C ./bloscSrc install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[3]: Nothing to be done for 'install'. -make -C ./tiffSrc install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[3]: Nothing to be done for 'install'. -make -C ./xml2Src install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[3]: Nothing to be done for 'install'. -make -C ./hdf5Src install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[3]: Nothing to be done for 'install'. -make -C ./GraphicsMagickSrc install -make -C ./bzlib install -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make[4]: Nothing to be done for 'install'. -make -C ./lcms install -make -C ./src install -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[3]: Nothing to be done for 'install'. -make -C ./ttf install -make -C ./src install -make[5]: Nothing to be done for 'install'. -make -C ./wmf install -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make -C ./src install -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[5]: Nothing to be done for 'install'. -make -C ./webp install -make -C ./src install -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[5]: Nothing to be done for 'install'. -make -C ./png install -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make[4]: Nothing to be done for 'install'. -make -C ./jp2 install -make -C ./src install -make -C ./libjasper install -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../../.. \ - T_A=linux-x86_64 install -make[5]: Nothing to be done for 'install'. -make -C ./jbig install -make[6]: Nothing to be done for 'install'. -make -C ./hdf5_hlSrc install -make -C ./libjbig install -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[5]: Nothing to be done for 'install'. -make -C ./magick install -make[3]: Nothing to be done for 'install'. -make -C ./hdf5PluginSrc install -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[3]: Nothing to be done for 'install'. -make -C ./netCDFSrc install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Nothing to be done for 'install'. -make -C ./filters install -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make[4]: Nothing to be done for 'install'. -make -C ./coders install -make[3]: Nothing to be done for 'install'. -make -C ./nexusSrc install -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[3]: Nothing to be done for 'install'. -make[4]: Nothing to be done for 'install'. -make -C ./Magick++ install -make -C ./lib install -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[5]: Nothing to be done for 'install'. -DEBUG:__main__:EXEC DONE -DEBUG:__main__:EXEC 'make -j2 -Otarget' in /builds/DATAnet/adurl/.cache/adcore-R3-10 -Building dependency ADCORE in /builds/DATAnet/adurl/.cache/adcore-R3-10 -make -C ./configure install -make -C ./ADApp install -make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ - T_A=linux-x86_64 install -make -C ./Db install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease -make -C ./ADSrc install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[3]: Nothing to be done for 'install'. -make -C ./op install -make[2]: Nothing to be done for 'install'. -make[3]: Nothing to be done for 'install'. -make -C ./ntndArrayConverterSrc install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[3]: Nothing to be done for 'install'. -make -C ./pluginSrc install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[3]: Nothing to be done for 'install'. -make -C ./pluginTests install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[3]: Nothing to be done for 'install'. -DEBUG:__main__:EXEC DONE -Dependency module information -Module Tag Binaries Commit ----------------------------------------------------------------------------------------------------- -BASE R7.0.3.1 from cache 34834df Clear development flags for 7.0.3.1 -SNCSEQ R2-2-9 from cache e5e3615 add cfg directory to boringfile -SSCAN R2-11-5 from cache f4ed91f R2-11-5 Release Notes -CALC R3-7-3 from cache 2a3ceff update gitignore -ASYN R4-41 from cache 0c70f16 Update release to R4-41 -AUTOSAVE R5-7-1 from cache 31e041c R5-7-1 tag -BUSY R1-7-1 from cache adb6da9 R1-7-1 Documentation -AREA_DETECTOR R3-10 rebuilt 9739d42 Notes for R3-10 -ADSUPPORT master rebuilt 1b5b589 Need to define XMLPUBFUN __declspec(dllimport) for DLL importing builds. There's no need for any difference between Visual Studio and MingW build defines. -ADCORE R3-10 rebuilt 7fd8c0f Notes for R3-10 -Contents of RELEASE.local -SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9 -SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5 -CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3 -ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41 -AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1 -BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1 -AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10 -ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master -ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-10 -EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1 -DEBUG:__main__:Detected a build hosted on gitlab, using gcc on linux (x64) configured as shared-optimized (test: True, clean_deps: False) -DEBUG:__main__:Setting up the build environment -DEBUG:__main__:Using EPICS Base at /builds/DATAnet/adurl/.cache/base-R7.0.3.1 -DEBUG:__main__:Running script to detect EPICS host architecture in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 -DEBUG:__main__:/builds/DATAnet/adurl/.cache/base-R7.0.3.1/src/tools/EpicsHostArch.pl returned: linux-x86_64 -DEBUG:__main__:Check if EPICS Base is a 3.14 series: False -DEBUG:__main__:Check if make is a 3.x series: False -DEBUG:__main__:EXEC 'make -j2 -Otarget' in /builds/DATAnet/adurl -make -C ./configure install -make -C ./urlApp install -make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ - T_A=linux-x86_64 install -make -C ./src install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease -make -C ./Db install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[3]: Nothing to be done for 'install'. -make -C ./op install -make[2]: Nothing to be done for 'install'. -make[3]: Entering directory '/builds/DATAnet/adurl/urlApp/src/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../URLDriver.cpp -make[3]: Leaving directory '/builds/DATAnet/adurl/urlApp/src/O.linux-x86_64' -make[3]: Entering directory '/builds/DATAnet/adurl/urlApp/src/O.linux-x86_64' -/usr/bin/ar -rc libURLDriver.a URLDriver.o -make[3]: Leaving directory '/builds/DATAnet/adurl/urlApp/src/O.linux-x86_64' -make[3]: Entering directory '/builds/DATAnet/adurl/urlApp/src/O.linux-x86_64' -/usr/bin/ranlib libURLDriver.a -make[3]: Leaving directory '/builds/DATAnet/adurl/urlApp/src/O.linux-x86_64' -make[3]: Entering directory '/builds/DATAnet/adurl/urlApp/src/O.linux-x86_64' -g++ -o libURLDriver.so -shared -fPIC -Wl,-hlibURLDriver.so -L/builds/DATAnet/adurl/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 URLDriver.o -lADBase -lasyn -lntndArrayConverter -lnt -lpvDatabase -lpvAccess -lpvData -lnetCDF -lMagick++ -lcoders -lMagick -ljbig -ljp2 -lbzlib -lpng -lwebp -llcms -lttf -lwmf -lfilters -ltiff -lxml2 -lNeXus -lhdf5 -lhdf5_hl -lblosc -lszip -lzlib -ljpeg -ldbRecStd -ldbCore -lca -lCom -Wl,-Bdynamic -lX11 -lXext -lpthread -lreadline -lm -lrt -ldl -lgcc -make[3]: Leaving directory '/builds/DATAnet/adurl/urlApp/src/O.linux-x86_64' -make -C ./iocs install -make -C ./urlIOC install -make -C ./configure install -make -C ./urlApp install -make -C ./src install -make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ - T_A=linux-x86_64 install -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease -make -C ./iocBoot install -make -C ./iocURLDriver install -make[4]: Nothing to be done for 'install'. -make[5]: Entering directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/dbdExpand.pl -I. -I.. -I../O.Common -I../../../dbd -I../../../../../dbd -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/dbd -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/dbd -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/dbd -I/builds/DATAnet/adurl/.cache/asyn-R4-41/dbd -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/dbd -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/dbd -I/builds/DATAnet/adurl/.cache/adcore-R3-10/dbd -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/dbd -o URLDriverApp.dbd URLDriverSupport.dbd base.dbd NDPluginSupport.dbd ADSupport.dbd NDFileNull.dbd NDPluginPva.dbd PVAServerRegister.dbd NDFileNetCDF.dbd NDFileMagick.dbd NDFileTIFF.dbd NDFileNexus.dbd NDFileHDF5.dbd NDFileJPEG.dbd asyn.dbd asSupport.dbd busySupport.dbd calcSupport.dbd sscanSupport.dbd -make[5]: Leaving directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/registerRecordDeviceDriver.pl -I. -I.. -I../O.Common -I../../../dbd -I../../../../../dbd -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/dbd -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/dbd -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/dbd -I/builds/DATAnet/adurl/.cache/asyn-R4-41/dbd -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/dbd -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/dbd -I/builds/DATAnet/adurl/.cache/adcore-R3-10/dbd -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/dbd -o URLDriverApp_registerRecordDeviceDriver.cpp ../O.Common/URLDriverApp.dbd URLDriverApp_registerRecordDeviceDriver /builds/DATAnet/adurl/iocs/urlIOC -make[5]: Leaving directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF URLDriverApp_registerRecordDeviceDriver.d URLDriverApp_registerRecordDeviceDriver.cpp -make[5]: Leaving directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-10/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c URLDriverApp_registerRecordDeviceDriver.cpp -make[5]: Leaving directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' -g++ -o URLDriverApp -Wl,-Bstatic -L/builds/DATAnet/adurl/lib/linux-x86_64 -L/builds/DATAnet/adurl/iocs/urlIOC/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/autosave-R5-7-1/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/busy-R1-7-1/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/calc-R3-7-3/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/seq-R2-2-9/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/sscan-R2-11-5/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/iocs/urlIOC/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-10/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/autosave-R5-7-1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/busy-R1-7-1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/calc-R3-7-3/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/seq-R2-2-9/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/sscan-R2-11-5/lib/linux-x86_64 -rdynamic -m64 URLDriverApp_registerRecordDeviceDriver.o URLDriverAppMain.o -lURLDriver -lNDPlugin -lADBase -lntndArrayConverter -lnt -lpvDatabase -lpvAccessIOC -lpvAccessCA -lpvAccess -lpvData -lnetCDF -lMagick++ -lcoders -lMagick -ljbig -ljp2 -lbzlib -lpng -lwebp -llcms -lttf -lwmf -lfilters -ltiff -lxml2 -lNeXus -lhdf5 -lhdf5_hl -lblosc -lszip -lzlib -ljpeg -lasyn -lautosave -lbusy -lcalc -lsscan -lseq -lpv -ldbRecStd -ldbCore -lca -lCom -Wl,-Bdynamic -lX11 -lXext -lpthread -lreadline -lm -lrt -ldl -lgcc -/usr/bin/ld: /builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64/libjp2.a(jas_stream.o): in function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7e9): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -/usr/bin/ld: /builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64/libcoders.a(url.o): in function `ReadURLImage': -url.c:(.text+0x1b7): undefined reference to `xmlNanoHTTPFrameState' -/usr/bin/ld: url.c:(.text+0x1c4): undefined reference to `xmlNanoHTTPFrameState' -/usr/bin/ld: url.c:(.text+0x1d9): undefined reference to `xmlNanoHTTPStreamRead' -/usr/bin/ld: url.c:(.text+0x1f8): undefined reference to `xmlNanoHTTPStreaming' -/usr/bin/ld: url.c:(.text+0x329): undefined reference to `xmlNanoHTTPStreamOpen' -/usr/bin/ld: url.c:(.text+0x34e): undefined reference to `xmlNanoHTTPFrameState' -/usr/bin/ld: url.c:(.text+0x3b7): undefined reference to `xmlNanoHTTPStreamClose' -/usr/bin/ld: url.c:(.text+0x3bc): undefined reference to `xmlNanoHTTPStreamCleanup' -collect2: error: ld returned 1 exit status -make[5]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_BUILD:213: URLDriverApp] Error 1 -make[5]: Leaving directory '/builds/DATAnet/adurl/iocs/urlIOC/urlApp/src/O.linux-x86_64' -make[4]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_ARCHS:58: install.linux-x86_64] Error 2 -make[3]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: src.install] Error 2 -make[2]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: urlApp.install] Error 2 -make[1]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: urlIOC.install] Error 2 -make: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: iocs.install] Error 2 -DEBUG:__main__:EXEC DONE From 7a7f6a1dddafb2003a1c0b27871217c57925dfe9 Mon Sep 17 00:00:00 2001 From: "Heesterman, Peter J" Date: Thu, 16 Jun 2022 16:42:54 +0100 Subject: [PATCH 3/4] Deleted one more unintended log file. --- .ci-local/adurl_install.log | 30534 ---------------------------------- 1 file changed, 30534 deletions(-) delete mode 100644 .ci-local/adurl_install.log diff --git a/.ci-local/adurl_install.log b/.ci-local/adurl_install.log deleted file mode 100644 index 189c7634..00000000 --- a/.ci-local/adurl_install.log +++ /dev/null @@ -1,30534 +0,0 @@ -DEBUG:__main__:Detected a build hosted on gitlab, using gcc on linux (x64) configured as shared-optimized (test: True, clean_deps: False) -Build using gcc compiler on linux (x64) hosted by gitlab -Python setup -2.7.18 (default, Mar 8 2021, 13:02:45) -[GCC 9.3.0] -PYTHONPATH - /builds/DATAnet/adurl/.ci - /usr/lib/python2.7 - /usr/lib/python2.7/plat-x86_64-linux-gnu - /usr/lib/python2.7/lib-tk - /usr/lib/python2.7/lib-old - /usr/lib/python2.7/lib-dynload - /usr/local/lib/python2.7/dist-packages - /usr/lib/python2.7/dist-packages -platform = linux-x86_64 -Opening setup file .ci-local/stable.set -DEBUG:__main__:.ci-local/stable.set: setup[MODULES] = sncseq sscan calc asyn autosave busy area_Detector ADSupport ADCore -DEBUG:__main__:.ci-local/stable.set: setup[BASE] = R7.0.3.1 -DEBUG:__main__:.ci-local/stable.set: setup[SNCSEQ] = R2-2-9 -DEBUG:__main__:.ci-local/stable.set: setup[SSCAN] = R2-11-5 -DEBUG:__main__:.ci-local/stable.set: setup[CALC] = R3-7-3 -DEBUG:__main__:.ci-local/stable.set: setup[ASYN] = R4-41 -DEBUG:__main__:.ci-local/stable.set: setup[BUSY] = R1-7-1 -DEBUG:__main__:.ci-local/stable.set: setup[AUTOSAVE] = R5-7-1 -DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR] = R3-10 -DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR_REPOURL] = https://github.com/areaDetector/areaDetector -DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR_RECURSIVE] = NO -DEBUG:__main__:.ci-local/stable.set: setup[AREA_DETECTOR_HOOK] = .ci-local/area_detector_hook.sh -DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT] = master -DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT_REPOURL] = https://github.com/pheest/ADSupport -DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT_RECURSIVE] = NO -DEBUG:__main__:.ci-local/stable.set: setup[ADSUPPORT_HOOK] = .ci-local/adsupport_hook.sh -DEBUG:__main__:.ci-local/stable.set: setup[ADCORE] = R3-11 -DEBUG:__main__:.ci-local/stable.set: setup[ADCORE_REPOURL] = https://github.com/areaDetector/ADCore -DEBUG:__main__:.ci-local/stable.set: setup[ADCORE_RECURSIVE] = NO -DEBUG:__main__:.ci-local/stable.set: setup[ADCORE_HOOK] = .ci-local/adcore_hook.sh -DEBUG:__main__:Done with setup file .ci-local/stable.set -Opening setup file .ci/defaults.set -DEBUG:__main__:.ci/defaults.set: setup[BASE_DIRNAME] = base -DEBUG:__main__:.ci/defaults.set: setup[BASE_REPONAME] = epics-base -DEBUG:__main__:.ci/defaults.set: setup[BASE_REPOOWNER] = epics-base -DEBUG:__main__:.ci/defaults.set: setup[BASE_VARNAME] = EPICS_BASE -DEBUG:__main__:.ci/defaults.set: setup[PVDATA_DIRNAME] = pvData -DEBUG:__main__:.ci/defaults.set: setup[PVDATA_REPONAME] = pvDataCPP -DEBUG:__main__:.ci/defaults.set: setup[PVDATA_REPOOWNER] = epics-base -DEBUG:__main__:.ci/defaults.set: setup[PVACCESS_DIRNAME] = pvAccess -DEBUG:__main__:.ci/defaults.set: setup[PVACCESS_REPONAME] = pvAccessCPP -DEBUG:__main__:.ci/defaults.set: setup[PVACCESS_REPOOWNER] = epics-base -DEBUG:__main__:.ci/defaults.set: setup[NTYPES_DIRNAME] = normativeTypes -DEBUG:__main__:.ci/defaults.set: setup[NTYPES_REPONAME] = normativeTypesCPP -DEBUG:__main__:.ci/defaults.set: setup[NTYPES_REPOOWNER] = epics-base -DEBUG:__main__:.ci/defaults.set: setup[SNCSEQ_REPOURL] = https://www-csr.bessy.de/control/SoftDist/sequencer/repo/branch-2-2.git -DEBUG:__main__:.ci/defaults.set: setup[SNCSEQ_DEPTH] = 0 -DEBUG:__main__:.ci/defaults.set: setup[SNCSEQ_DIRNAME] = seq -DEBUG:__main__:.ci/defaults.set: setup[STREAM_REPONAME] = StreamDevice -DEBUG:__main__:.ci/defaults.set: setup[STREAM_REPOOWNER] = paulscherrerinstitute -DEBUG:__main__:Done with setup file .ci/defaults.set -DEBUG:__main__:ENV assignment: BASE_RECURSIVE = YES -DEBUG:__main__:Loaded setup -DEBUG:__main__: ADCORE = "R3-11" -DEBUG:__main__: ADCORE_DEPTH = "-1" -DEBUG:__main__: ADCORE_DIRNAME = "adcore" -DEBUG:__main__: ADCORE_HOOK = ".ci-local/adcore_hook.sh" -DEBUG:__main__: ADCORE_RECURSIVE = "NO" -DEBUG:__main__: ADCORE_REPONAME = "adcore" -DEBUG:__main__: ADCORE_REPOOWNER = "epics-modules" -DEBUG:__main__: ADCORE_REPOURL = "https://github.com/areaDetector/ADCore" -DEBUG:__main__: ADCORE_VARNAME = "ADCORE" -DEBUG:__main__: ADD_MODULES = "" -DEBUG:__main__: ADSUPPORT = "master" -DEBUG:__main__: ADSUPPORT_DEPTH = "-1" -DEBUG:__main__: ADSUPPORT_DIRNAME = "adsupport" -DEBUG:__main__: ADSUPPORT_HOOK = ".ci-local/adsupport_hook.sh" -DEBUG:__main__: ADSUPPORT_RECURSIVE = "NO" -DEBUG:__main__: ADSUPPORT_REPONAME = "adsupport" -DEBUG:__main__: ADSUPPORT_REPOOWNER = "epics-modules" -DEBUG:__main__: ADSUPPORT_REPOURL = "https://github.com/pheest/ADSupport" -DEBUG:__main__: ADSUPPORT_VARNAME = "ADSUPPORT" -DEBUG:__main__: AREA_DETECTOR = "R3-10" -DEBUG:__main__: AREA_DETECTOR_DEPTH = "-1" -DEBUG:__main__: AREA_DETECTOR_DIRNAME = "area_detector" -DEBUG:__main__: AREA_DETECTOR_HOOK = ".ci-local/area_detector_hook.sh" -DEBUG:__main__: AREA_DETECTOR_RECURSIVE = "NO" -DEBUG:__main__: AREA_DETECTOR_REPONAME = "area_detector" -DEBUG:__main__: AREA_DETECTOR_REPOOWNER = "epics-modules" -DEBUG:__main__: AREA_DETECTOR_REPOURL = "https://github.com/areaDetector/areaDetector" -DEBUG:__main__: AREA_DETECTOR_VARNAME = "AREA_DETECTOR" -DEBUG:__main__: ASYN = "R4-41" -DEBUG:__main__: ASYN_DEPTH = "-1" -DEBUG:__main__: ASYN_DIRNAME = "asyn" -DEBUG:__main__: ASYN_RECURSIVE = "YES" -DEBUG:__main__: ASYN_REPONAME = "asyn" -DEBUG:__main__: ASYN_REPOOWNER = "epics-modules" -DEBUG:__main__: ASYN_REPOURL = "https://github.com/epics-modules/asyn.git" -DEBUG:__main__: ASYN_VARNAME = "ASYN" -DEBUG:__main__: AUTOSAVE = "R5-7-1" -DEBUG:__main__: AUTOSAVE_DEPTH = "-1" -DEBUG:__main__: AUTOSAVE_DIRNAME = "autosave" -DEBUG:__main__: AUTOSAVE_RECURSIVE = "YES" -DEBUG:__main__: AUTOSAVE_REPONAME = "autosave" -DEBUG:__main__: AUTOSAVE_REPOOWNER = "epics-modules" -DEBUG:__main__: AUTOSAVE_REPOURL = "https://github.com/epics-modules/autosave.git" -DEBUG:__main__: AUTOSAVE_VARNAME = "AUTOSAVE" -DEBUG:__main__: BASE = "R7.0.3.1" -DEBUG:__main__: BASE_DEPTH = "-1" -DEBUG:__main__: BASE_DIRNAME = "base" -DEBUG:__main__: BASE_RECURSIVE = "YES" -DEBUG:__main__: BASE_REPONAME = "epics-base" -DEBUG:__main__: BASE_REPOOWNER = "epics-base" -DEBUG:__main__: BASE_REPOURL = "https://github.com/epics-base/epics-base.git" -DEBUG:__main__: BASE_VARNAME = "EPICS_BASE" -DEBUG:__main__: BUSY = "R1-7-1" -DEBUG:__main__: BUSY_DEPTH = "-1" -DEBUG:__main__: BUSY_DIRNAME = "busy" -DEBUG:__main__: BUSY_RECURSIVE = "YES" -DEBUG:__main__: BUSY_REPONAME = "busy" -DEBUG:__main__: BUSY_REPOOWNER = "epics-modules" -DEBUG:__main__: BUSY_REPOURL = "https://github.com/epics-modules/busy.git" -DEBUG:__main__: BUSY_VARNAME = "BUSY" -DEBUG:__main__: CALC = "R3-7-3" -DEBUG:__main__: CALC_DEPTH = "-1" -DEBUG:__main__: CALC_DIRNAME = "calc" -DEBUG:__main__: CALC_RECURSIVE = "YES" -DEBUG:__main__: CALC_REPONAME = "calc" -DEBUG:__main__: CALC_REPOOWNER = "epics-modules" -DEBUG:__main__: CALC_REPOURL = "https://github.com/epics-modules/calc.git" -DEBUG:__main__: CALC_VARNAME = "CALC" -DEBUG:__main__: MODULES = "sncseq sscan calc asyn autosave busy area_Detector ADSupport ADCore" -DEBUG:__main__: NTYPES_DIRNAME = "normativeTypes" -DEBUG:__main__: NTYPES_REPONAME = "normativeTypesCPP" -DEBUG:__main__: NTYPES_REPOOWNER = "epics-base" -DEBUG:__main__: PVACCESS_DIRNAME = "pvAccess" -DEBUG:__main__: PVACCESS_REPONAME = "pvAccessCPP" -DEBUG:__main__: PVACCESS_REPOOWNER = "epics-base" -DEBUG:__main__: PVDATA_DIRNAME = "pvData" -DEBUG:__main__: PVDATA_REPONAME = "pvDataCPP" -DEBUG:__main__: PVDATA_REPOOWNER = "epics-base" -DEBUG:__main__: REPOOWNER = "epics-modules" -DEBUG:__main__: SNCSEQ = "R2-2-9" -DEBUG:__main__: SNCSEQ_DEPTH = "0" -DEBUG:__main__: SNCSEQ_DIRNAME = "seq" -DEBUG:__main__: SNCSEQ_RECURSIVE = "YES" -DEBUG:__main__: SNCSEQ_REPONAME = "sncseq" -DEBUG:__main__: SNCSEQ_REPOOWNER = "epics-modules" -DEBUG:__main__: SNCSEQ_REPOURL = "https://www-csr.bessy.de/control/SoftDist/sequencer/repo/branch-2-2.git" -DEBUG:__main__: SNCSEQ_VARNAME = "SNCSEQ" -DEBUG:__main__: SSCAN = "R2-11-5" -DEBUG:__main__: SSCAN_DEPTH = "-1" -DEBUG:__main__: SSCAN_DIRNAME = "sscan" -DEBUG:__main__: SSCAN_RECURSIVE = "YES" -DEBUG:__main__: SSCAN_REPONAME = "sscan" -DEBUG:__main__: SSCAN_REPOOWNER = "epics-modules" -DEBUG:__main__: SSCAN_REPOURL = "https://github.com/epics-modules/sscan.git" -DEBUG:__main__: SSCAN_VARNAME = "SSCAN" -DEBUG:__main__: STREAM_REPONAME = "StreamDevice" -DEBUG:__main__: STREAM_REPOOWNER = "paulscherrerinstitute" -DEBUG:__main__:Effective module list: ['BASE', 'SNCSEQ', 'SSCAN', 'CALC', 'ASYN', 'AUTOSAVE', 'BUSY', 'AREA_DETECTOR', 'ADSUPPORT', 'ADCORE'] -DEBUG:__main__:EXEC 'git config --global advice.detachedHead false' in /builds/DATAnet/adurl -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Adding dependency BASE with tag R7.0.3.1 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-base/epics-base.git R7.0.3.1' in /builds/DATAnet/adurl -9cd04f577222ab0eecae23dfc143d1c494d06e2e refs/tags/R7.0.3.1 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency BASE: directory /builds/DATAnet/adurl/.cache/base-R7.0.3.1 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit 34834dfe973a577f342503441e7b33b7fe322de5, git head is 34834dfe973a577f342503441e7b33b7fe322de5 -Found R7.0.3.1 of dependency BASE up-to-date in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 -DEBUG:__main__:RELEASE.local does not exist, creating it -DEBUG:__main__:Opening RELEASE.local for adding 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding new definition: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency SNCSEQ with tag R2-2-9 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://www-csr.bessy.de/control/SoftDist/sequencer/repo/branch-2-2.git R2-2-9' in /builds/DATAnet/adurl -b21d8a8763599326115ebbba6c62905d814b3ccb refs/tags/R2-2-9 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency SNCSEQ: directory /builds/DATAnet/adurl/.cache/seq-R2-2-9 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/seq-R2-2-9 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit e5e361509df1c0d3c667872243d8f7a9894514b4, git head is e5e361509df1c0d3c667872243d8f7a9894514b4 -Found R2-2-9 of dependency SNCSEQ up-to-date in /builds/DATAnet/adurl/.cache/seq-R2-2-9 -DEBUG:__main__:Opening RELEASE.local for adding 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency SSCAN with tag R2-11-5 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/sscan.git R2-11-5' in /builds/DATAnet/adurl -f4ed91fa90d81eee5ba92d0d0c00d8d5d0b269da refs/tags/R2-11-5 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency SSCAN: directory /builds/DATAnet/adurl/.cache/sscan-R2-11-5 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/sscan-R2-11-5 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit f4ed91fa90d81eee5ba92d0d0c00d8d5d0b269da, git head is f4ed91fa90d81eee5ba92d0d0c00d8d5d0b269da -Found R2-11-5 of dependency SSCAN up-to-date in /builds/DATAnet/adurl/.cache/sscan-R2-11-5 -DEBUG:__main__:Opening RELEASE.local for adding 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency CALC with tag R3-7-3 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/calc.git R3-7-3' in /builds/DATAnet/adurl -2a3ceff7afee73fd82a2c60d637611020cb65bca refs/tags/R3-7-3 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency CALC: directory /builds/DATAnet/adurl/.cache/calc-R3-7-3 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/calc-R3-7-3 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit 2a3ceff7afee73fd82a2c60d637611020cb65bca, git head is 2a3ceff7afee73fd82a2c60d637611020cb65bca -Found R3-7-3 of dependency CALC up-to-date in /builds/DATAnet/adurl/.cache/calc-R3-7-3 -DEBUG:__main__:Opening RELEASE.local for adding 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency ASYN with tag R4-41 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/asyn.git R4-41' in /builds/DATAnet/adurl -0c70f16c4b27f6717920f40e8c8e0fb2182cac64 refs/tags/R4-41 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency ASYN: directory /builds/DATAnet/adurl/.cache/asyn-R4-41 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/asyn-R4-41 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit 0c70f16c4b27f6717920f40e8c8e0fb2182cac64, git head is 0c70f16c4b27f6717920f40e8c8e0fb2182cac64 -Found R4-41 of dependency ASYN up-to-date in /builds/DATAnet/adurl/.cache/asyn-R4-41 -DEBUG:__main__:Opening RELEASE.local for adding 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency AUTOSAVE with tag R5-7-1 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/autosave.git R5-7-1' in /builds/DATAnet/adurl -31e041c2ba4e0212f11ce5cf5541b572d1d1e887 refs/tags/R5-7-1 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency AUTOSAVE: directory /builds/DATAnet/adurl/.cache/autosave-R5-7-1 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/autosave-R5-7-1 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit 31e041c2ba4e0212f11ce5cf5541b572d1d1e887, git head is 31e041c2ba4e0212f11ce5cf5541b572d1d1e887 -Found R5-7-1 of dependency AUTOSAVE up-to-date in /builds/DATAnet/adurl/.cache/autosave-R5-7-1 -DEBUG:__main__:Opening RELEASE.local for adding 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency BUSY with tag R1-7-1 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/epics-modules/busy.git R1-7-1' in /builds/DATAnet/adurl -adb6da968ceac134d4d67be495e9f196c31a1b3d refs/tags/R1-7-1 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Dependency BUSY: directory /builds/DATAnet/adurl/.cache/busy-R1-7-1 exists, comparing checked-out commit -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/busy-R1-7-1 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Found checked_out commit adb6da968ceac134d4d67be495e9f196c31a1b3d, git head is adb6da968ceac134d4d67be495e9f196c31a1b3d -Found R1-7-1 of dependency BUSY up-to-date in /builds/DATAnet/adurl/.cache/busy-R1-7-1 -DEBUG:__main__:Opening RELEASE.local for adding 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency AREA_DETECTOR with tag R3-10 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/areaDetector/areaDetector R3-10' in /builds/DATAnet/adurl -9739d42659d180f88e08104cad4d02cbd414a75f refs/tags/R3-10 -DEBUG:__main__:EXEC DONE -Cloning R3-10 of dependency AREA_DETECTOR into /builds/DATAnet/adurl/.cache/area_detector-R3-10 -DEBUG:__main__:EXEC 'git clone --quiet --depth 5 --branch R3-10 https://github.com/areaDetector/areaDetector area_detector-R3-10' in /builds/DATAnet/adurl/.cache -DEBUG:__main__:EXEC DONE -commit 9739d42659d180f88e08104cad4d02cbd414a75f -Author: Mark Rivers -Date: Sun Sep 20 15:28:44 2020 -0500 - - Notes for R3-10 -DEBUG:__main__:Setting do_recompile = True (all following modules will be recompiled -Running hook .ci-local/area_detector_hook.sh in /builds/DATAnet/adurl/.cache/area_detector-R3-10 -Reading package lists... -Building dependency tree... -Reading state information... -libxext-dev is already the newest version (2:1.3.4-0ubuntu1). -libx11-dev is already the newest version (2:1.6.9-2ubuntu1.2). -The following package was automatically installed and is no longer required: - libfwupdplugin1 -Use 'sudo apt autoremove' to remove it. -0 to upgrade, 0 to newly install, 0 to remove and 8 not to upgrade. -/builds/DATAnet/adurl/.cache/area_detector-R3-10/configure /builds/DATAnet/adurl/.cache/area_detector-R3-10 -Copying from example. -/builds/DATAnet/adurl/.cache/area_detector-R3-10 -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/area_detector-R3-10 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Writing hash of checked-out dependency (9739d42659d180f88e08104cad4d02cbd414a75f) to marker file -DEBUG:__main__:Opening RELEASE.local for adding 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency ADSUPPORT with tag master -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/pheest/ADSupport master' in /builds/DATAnet/adurl -1b5b589b560b90fb37d152ed7440aef4162119b5 refs/heads/master -DEBUG:__main__:EXEC DONE -Cloning master of dependency ADSUPPORT into /builds/DATAnet/adurl/.cache/adsupport-master -DEBUG:__main__:EXEC 'git clone --quiet --depth 5 --branch master https://github.com/pheest/ADSupport adsupport-master' in /builds/DATAnet/adurl/.cache -DEBUG:__main__:EXEC DONE -commit 1b5b589b560b90fb37d152ed7440aef4162119b5 -Author: Heesterman, Peter J -Date: Thu May 19 16:55:57 2022 +0100 - - Need to define XMLPUBFUN __declspec(dllimport) for DLL importing builds. - There's no need for any difference between Visual Studio and MingW build defines. -DEBUG:__main__:Setting do_recompile = True (all following modules will be recompiled -Running hook .ci-local/adsupport_hook.sh in /builds/DATAnet/adurl/.cache/adsupport-master -Reading package lists... -Building dependency tree... -Reading state information... -libxext-dev is already the newest version (2:1.3.4-0ubuntu1). -libx11-dev is already the newest version (2:1.6.9-2ubuntu1.2). -The following package was automatically installed and is no longer required: - libfwupdplugin1 -Use 'sudo apt autoremove' to remove it. -0 to upgrade, 0 to newly install, 0 to remove and 8 not to upgrade. -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/adsupport-master -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Writing hash of checked-out dependency (1b5b589b560b90fb37d152ed7440aef4162119b5) to marker file -DEBUG:__main__:Opening RELEASE.local for adding 'ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Adding dependency ADCORE with tag R3-11 -DEBUG:__main__:EXEC 'git ls-remote --quiet --exit-code --refs https://github.com/areaDetector/ADCore R3-11' in /builds/DATAnet/adurl -19bb3bfa1c1b11caa0da11a2cf4a1b375f724f52 refs/tags/R3-11 -DEBUG:__main__:EXEC DONE -Cloning R3-11 of dependency ADCORE into /builds/DATAnet/adurl/.cache/adcore-R3-11 -DEBUG:__main__:EXEC 'git clone --quiet --depth 5 --branch R3-11 https://github.com/areaDetector/ADCore adcore-R3-11' in /builds/DATAnet/adurl/.cache -DEBUG:__main__:EXEC DONE -commit 19bb3bfa1c1b11caa0da11a2cf4a1b375f724f52 -Author: Mark Rivers -Date: Wed May 26 14:06:37 2021 -0500 - - Note on nanohttp_stream for R3-11 -DEBUG:__main__:Setting do_recompile = True (all following modules will be recompiled -Running hook .ci-local/adcore_hook.sh in /builds/DATAnet/adurl/.cache/adcore-R3-11 -DEBUG:__main__:EXEC 'git log -n1 --pretty=format:%H' in /builds/DATAnet/adurl/.cache/adcore-R3-11 -DEBUG:__main__:EXEC DONE -DEBUG:__main__:Writing hash of checked-out dependency (19bb3bfa1c1b11caa0da11a2cf4a1b375f724f52) to marker file -DEBUG:__main__:Opening RELEASE.local for adding 'ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-11' -DEBUG:__main__:Writing line to RELEASE.local: 'SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9' -DEBUG:__main__:Writing line to RELEASE.local: 'SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5' -DEBUG:__main__:Writing line to RELEASE.local: 'CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3' -DEBUG:__main__:Writing line to RELEASE.local: 'ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41' -DEBUG:__main__:Writing line to RELEASE.local: 'AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1' -DEBUG:__main__:Writing line to RELEASE.local: 'AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10' -DEBUG:__main__:Writing line to RELEASE.local: 'ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master' -DEBUG:__main__:Found EPICS_BASE line 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1', not writing it -DEBUG:__main__:Adding new definition: 'ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-11' -DEBUG:__main__:Writing EPICS_BASE line: 'EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1' -DEBUG:__main__:Setting up the build environment -DEBUG:__main__:Using EPICS Base at /builds/DATAnet/adurl/.cache/base-R7.0.3.1 -DEBUG:__main__:Running script to detect EPICS host architecture in /builds/DATAnet/adurl/.cache/base-R7.0.3.1 -DEBUG:__main__:/builds/DATAnet/adurl/.cache/base-R7.0.3.1/src/tools/EpicsHostArch.pl returned: linux-x86_64 -DEBUG:__main__:Check if EPICS Base is a 3.14 series: False -DEBUG:__main__:Check if make is a 3.x series: False -EPICS_HOST_ARCH = linux-x86_64 -$ make --version -DEBUG:__main__:EXEC 'make --version' in /builds/DATAnet/adurl -GNU Make 4.2.1 -Built for x86_64-pc-linux-gnu -Copyright (C) 1988-2016 Free Software Foundation, Inc. -Licence GPLv3+: GNU GPL version 3 or later -This is free software: you are free to change and redistribute it. -There is NO WARRANTY, to the extent permitted by law. -DEBUG:__main__:EXEC DONE -$ perl --version - -This is perl 5, version 30, subversion 0 (v5.30.0) built for x86_64-linux-gnu-thread-multi -(with 50 registered patches, see perl -V for more detail) - -Copyright 1987-2019, Larry Wall - -Perl may be copied only under the terms of either the Artistic License or the -GNU General Public License, which may be found in the Perl 5 source kit. - -Complete documentation for Perl, including FAQ lists, should be found on -this system using "man perl" or "perldoc perl". If you have access to the -Internet, point your browser at http://www.perl.org/, the Perl Home Page. - -$ gcc --version -gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 -Copyright (C) 2019 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. - -$ g++ --version -g++ (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 -Copyright (C) 2019 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. - --include $(TOP)/../RELEASE.local - -SNCSEQ=/builds/DATAnet/adurl/.cache/seq-R2-2-9 -SSCAN=/builds/DATAnet/adurl/.cache/sscan-R2-11-5 -CALC=/builds/DATAnet/adurl/.cache/calc-R3-7-3 -ASYN=/builds/DATAnet/adurl/.cache/asyn-R4-41 -AUTOSAVE=/builds/DATAnet/adurl/.cache/autosave-R5-7-1 -BUSY=/builds/DATAnet/adurl/.cache/busy-R1-7-1 -AREA_DETECTOR=/builds/DATAnet/adurl/.cache/area_detector-R3-10 -ADSUPPORT=/builds/DATAnet/adurl/.cache/adsupport-master -ADCORE=/builds/DATAnet/adurl/.cache/adcore-R3-11 -EPICS_BASE=/builds/DATAnet/adurl/.cache/base-R7.0.3.1 - --include $(TOP)/../RELEASE.local - -9739d42659d180f88e08104cad4d02cbd414a75f - -19bb3bfa1c1b11caa0da11a2cf4a1b375f724f52 - -1b5b589b560b90fb37d152ed7440aef4162119b5 - --include $(TOP)/../RELEASE.local - -DEBUG:__main__:EXEC 'make -j2 -Otarget' in /builds/DATAnet/adurl/.cache/area_detector-R3-10 -Building dependency AREA_DETECTOR in /builds/DATAnet/adurl/.cache/area_detector-R3-10 -make -C /builds/DATAnet/adurl/.cache/adsupport-master install -make -C ./configure install -make -C ./supportApp install -make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../.. -make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' -make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../.. -make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' -make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' -mkdir -p O.Common -make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/configure' -make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ - T_A=linux-x86_64 install -make -C ./jpegSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease -make -C O.windows-x64-mingw -f ../Makefile TOP=../.. \ - T_A=windows-x64-mingw install -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompressJPEG.d ../decompressJPEG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemnobs.d ../jmemnobs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make -C ./zlibSrc install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemmgr.d ../jmemmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jutils.d ../jutils.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant2.d ../jquant2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant1.d ../jquant1.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctint.d ../jidctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctfst.d ../jidctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctflt.d ../jidctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctint.d ../jfdctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zutil.d ../zutil.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctfst.d ../jfdctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uncompr.d ../uncompr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctflt.d ../jfdctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF trees.d ../trees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jerror.d ../jerror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inftrees.d ../inftrees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdtrans.d ../jdtrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inflate.d ../inflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdsample.d ../jdsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inffast.d ../inffast.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdpostct.d ../jdpostct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF infback.d ../infback.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmerge.d ../jdmerge.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzwrite.d ../gzwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmaster.d ../jdmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmarker.d ../jdmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzread.d ../gzread.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmainct.d ../jdmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzlib.d ../gzlib.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdinput.d ../jdinput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzclose.d ../gzclose.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdhuff.d ../jdhuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF deflate.d ../deflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jddctmgr.d ../jddctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crc32.d ../crc32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcolor.d ../jdcolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d ../compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcoefct.d ../jdcoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatasrc.d ../jdatasrc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatadst.d ../jdatadst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdarith.d ../jdarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF adler32.d ../adler32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapistd.d ../jdapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapimin.d ../jdapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jctrans.d ../jctrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcsample.d ../jcsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcprepct.d ../jcprepct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcparam.d ../jcparam.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcomapi.d ../jcomapi.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmaster.d ../jcmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmarker.d ../jcmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmainct.d ../jcmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -mkdir ../../../include -mkdir ../../../include/os -mkdir ../../../include/os/Linux -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcinit.d ../jcinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jchuff.d ../jchuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcdctmgr.d ../jcdctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccolor.d ../jccolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccoefct.d ../jccoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcarith.d ../jcarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapistd.d ../jcapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapimin.d ../jcapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jaricom.d ../jaricom.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../adler32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jaricom.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../crc32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../deflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jccoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzclose.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzlib.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jccolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzread.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcdctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../gzwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../infback.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../inffast.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jchuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../inflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../inftrees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcomapi.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcparam.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../trees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../uncompr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../zutil.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcprepct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -/usr/bin/ar -rc libzlib.a adler32.o compress.o crc32.o deflate.o gzclose.o gzlib.o gzread.o gzwrite.o infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -/usr/bin/ranlib libzlib.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -g++ -o libzlib.so -shared -fPIC -Wl,-hlibzlib.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 adler32.o compress.o crc32.o deflate.o gzclose.o gzlib.o gzread.o gzwrite.o infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jcsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jctrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdatadst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdatasrc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zutil.d -MT zutil.obj ../zutil.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uncompr.d -MT uncompr.obj ../uncompr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF trees.d -MT trees.obj ../trees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inftrees.d -MT inftrees.obj ../inftrees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inflate.d -MT inflate.obj ../inflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF inffast.d -MT inffast.obj ../inffast.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF infback.d -MT infback.obj ../infback.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzwrite.d -MT gzwrite.obj ../gzwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzread.d -MT gzread.obj ../gzread.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzlib.d -MT gzlib.obj ../gzlib.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF gzclose.d -MT gzclose.obj ../gzclose.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF deflate.d -MT deflate.obj ../deflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdcoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crc32.d -MT crc32.obj ../crc32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d -MT compress.obj ../compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF adler32.d -MT adler32.obj ../adler32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -mkdir ../../../include/os/WIN32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdcolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jddctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o adler32.obj -c ../adler32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o compress.obj -c ../compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o crc32.obj -c ../crc32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdhuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdinput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o deflate.obj -c ../deflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o gzclose.obj -c ../gzclose.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o gzlib.obj -c ../gzlib.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o gzread.obj -c ../gzread.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdmerge.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdpostct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o gzwrite.obj -c ../gzwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jdtrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jerror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o infback.obj -c ../infback.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jfdctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jfdctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o inffast.obj -c ../inffast.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o inflate.obj -c ../inflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o inftrees.obj -c ../inftrees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o trees.obj -c ../trees.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o uncompr.obj -c ../uncompr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DZLIB_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zutil.obj -c ../zutil.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jfdctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jidctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o zlib.dll -shared -Wl,--out-implib,libzlib.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -mkdir ../../../bin -mkdir ../../../bin/windows-x64-mingw -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/zlibSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jidctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make -C ./szipSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF sz_api.d ../sz_api.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF rice.d ../rice.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d ../encoding.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../encoding.c -../encoding.c:16:15: warning: ‘szip_encoder_status’ initialized and declared ‘extern’ - 16 | extern char * szip_encoder_status = "SZIP ENCODER ENABLED"; - | ^~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jidctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jquant1.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jquant2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jutils.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jmemmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jmemnobs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../decompressJPEG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -g++ -o libjpeg.so -shared -fPIC -Wl,-hlibjpeg.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jaricom.o jcapimin.o jcapistd.o jcarith.o jccoefct.o jccolor.o jcdctmgr.o jchuff.o jcinit.o jcmainct.o jcmarker.o jcmaster.o jcomapi.o jcparam.o jcprepct.o jcsample.o jctrans.o jdapimin.o jdapistd.o jdarith.o jdatadst.o jdatasrc.o jdcoefct.o jdcolor.o jddctmgr.o jdhuff.o jdinput.o jdmainct.o jdmarker.o jdmaster.o jdmerge.o jdpostct.o jdsample.o jdtrans.o jerror.o jfdctflt.o jfdctfst.o jfdctint.o jidctflt.o jidctfst.o jidctint.o jquant1.o jquant2.o jutils.o jmemmgr.o jmemnobs.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -/usr/bin/ar -rc libjpeg.a jaricom.o jcapimin.o jcapistd.o jcarith.o jccoefct.o jccolor.o jcdctmgr.o jchuff.o jcinit.o jcmainct.o jcmarker.o jcmaster.o jcomapi.o jcparam.o jcprepct.o jcsample.o jctrans.o jdapimin.o jdapistd.o jdarith.o jdatadst.o jdatasrc.o jdcoefct.o jdcolor.o jddctmgr.o jdhuff.o jdinput.o jdmainct.o jdmarker.o jdmaster.o jdmerge.o jdpostct.o jdsample.o jdtrans.o jerror.o jfdctflt.o jfdctfst.o jfdctint.o jidctflt.o jidctfst.o jidctint.o jquant1.o jquant2.o jutils.o jmemmgr.o jmemnobs.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -/usr/bin/ranlib libjpeg.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -/usr/bin/ar -rc libdecompressJPEG.a decompressJPEG.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -/usr/bin/ranlib libdecompressJPEG.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -g++ -o libdecompressJPEG.so -shared -fPIC -Wl,-hlibdecompressJPEG.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 decompressJPEG.o -ljpeg -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompressJPEG.d -MT decompressJPEG.obj ../decompressJPEG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemnobs.d -MT jmemnobs.obj ../jmemnobs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jmemmgr.d -MT jmemmgr.obj ../jmemmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jutils.d -MT jutils.obj ../jutils.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant2.d -MT jquant2.obj ../jquant2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jquant1.d -MT jquant1.obj ../jquant1.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctint.d -MT jidctint.obj ../jidctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctfst.d -MT jidctfst.obj ../jidctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jidctflt.d -MT jidctflt.obj ../jidctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctint.d -MT jfdctint.obj ../jfdctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../rice.c -../rice.c: In function ‘encode_scanline’: -../rice.c:1478:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1478 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1479:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1479 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1480:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1480 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1481:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1481 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1482:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1482 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1483:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1483 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1484:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1484 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1492:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1492 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1519:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1519 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1520:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1520 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1521:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1521 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1522:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1522 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1523:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1523 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1524:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1524 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1525:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1525 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1533:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1533 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1560:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1560 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1561:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1561 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1562:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1562 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1563:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1563 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1567:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1567 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1568:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1568 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1576:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1576 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1603:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1603 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1604:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1604 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1605:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1605 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1609:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1609 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1610:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1610 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1611:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1611 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1619:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1619 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1646:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1646 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1647:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1647 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1651:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1651 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1652:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1652 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1656:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1656 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1664:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1664 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1689:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1689 | value = (value << 6) | *s++ & 0x3f; - | ~~~~~^~~~~~ -../rice.c:1706:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1706 | value = (value << 7) | *s++ & 0x7f; - | ~~~~~^~~~~~ -../rice.c:1723:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1723 | value = (value << 8) | *s++ & 0xff; - | ~~~~~^~~~~~ -../rice.c: In function ‘rice_decode’: -../rice.c:4977:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4977 | *(s+1) = (*(s+1) << 1) | (data_word >> 30) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4978:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4978 | *(s+2) = (*(s+2) << 1) | (data_word >> 29) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4979:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4979 | *(s+3) = (*(s+3) << 1) | (data_word >> 28) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4980:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4980 | *(s+4) = (*(s+4) << 1) | (data_word >> 27) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4981:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4981 | *(s+5) = (*(s+5) << 1) | (data_word >> 26) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4982:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4982 | *(s+6) = (*(s+6) << 1) | (data_word >> 25) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4983:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4983 | *(s+7) = (*(s+7) << 1) | (data_word >> 24) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4998:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4998 | *(s+0) = (*(s+0) << 2) | (data_word >> 30) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4999:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4999 | *(s+1) = (*(s+1) << 2) | (data_word >> 28) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5000:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5000 | *(s+2) = (*(s+2) << 2) | (data_word >> 26) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5001:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5001 | *(s+3) = (*(s+3) << 2) | (data_word >> 24) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5002:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5002 | *(s+4) = (*(s+4) << 2) | (data_word >> 22) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5003:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5003 | *(s+5) = (*(s+5) << 2) | (data_word >> 20) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5004:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5004 | *(s+6) = (*(s+6) << 2) | (data_word >> 18) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5005:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5005 | *(s+7) = (*(s+7) << 2) | (data_word >> 16) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5017:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5017 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5018:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5018 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5019:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5019 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5020:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5020 | *(s+3) = (*(s+3) << 3) | (data_word >> 20) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5021:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5021 | *(s+4) = (*(s+4) << 3) | (data_word >> 17) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5031:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5031 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5032:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5032 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5033:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5033 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5048:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5048 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5049:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5049 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5050:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5050 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5051:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5051 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5058:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5058 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5059:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5059 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5060:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5060 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5061:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5061 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5073:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5073 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5074:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5074 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5075:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5075 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5085:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5085 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5086:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5086 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5087:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5087 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5097:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5097 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5098:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5098 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5113:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5113 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5114:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5114 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5124:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5124 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5125:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5125 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5135:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5135 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5136:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5136 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5146:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5146 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5147:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5147 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5162:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5162 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5163:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5163 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5173:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5173 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5174:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5174 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5184:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5184 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5185:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5185 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5195:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5195 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5196:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5196 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5211:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5211 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5212:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5212 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5219:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5219 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5220:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5220 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5227:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5227 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5228:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5228 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5235:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5235 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5236:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5236 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5358:8: warning: ‘ext2_bit’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 5358 | if (ext2_bit) - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctfst.d -MT jfdctfst.obj ../jfdctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jfdctflt.d -MT jfdctflt.obj ../jfdctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jerror.d -MT jerror.obj ../jerror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdtrans.d -MT jdtrans.obj ../jdtrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdsample.d -MT jdsample.obj ../jdsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdpostct.d -MT jdpostct.obj ../jdpostct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../sz_api.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmerge.d -MT jdmerge.obj ../jdmerge.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -/usr/bin/ar -rc libszip.a encoding.o rice.o sz_api.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmaster.d -MT jdmaster.obj ../jdmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmarker.d -MT jdmarker.obj ../jdmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdmainct.d -MT jdmainct.obj ../jdmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -/usr/bin/ranlib libszip.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdinput.d -MT jdinput.obj ../jdinput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdhuff.d -MT jdhuff.obj ../jdhuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jddctmgr.d -MT jddctmgr.obj ../jddctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -g++ -o libszip.so -shared -fPIC -Wl,-hlibszip.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 encoding.o rice.o sz_api.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcolor.d -MT jdcolor.obj ../jdcolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdcoefct.d -MT jdcoefct.obj ../jdcoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatasrc.d -MT jdatasrc.obj ../jdatasrc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdatadst.d -MT jdatadst.obj ../jdatadst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdarith.d -MT jdarith.obj ../jdarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF sz_api.d -MT sz_api.obj ../sz_api.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapistd.d -MT jdapistd.obj ../jdapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF rice.d -MT rice.obj ../rice.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jdapimin.d -MT jdapimin.obj ../jdapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jctrans.d -MT jctrans.obj ../jctrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcsample.d -MT jcsample.obj ../jcsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d -MT encoding.obj ../encoding.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcprepct.d -MT jcprepct.obj ../jcprepct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcparam.d -MT jcparam.obj ../jcparam.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcomapi.d -MT jcomapi.obj ../jcomapi.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmaster.d -MT jcmaster.obj ../jcmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmarker.d -MT jcmarker.obj ../jcmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcmainct.d -MT jcmainct.obj ../jcmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcinit.d -MT jcinit.obj ../jcinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jchuff.d -MT jchuff.obj ../jchuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcdctmgr.d -MT jcdctmgr.obj ../jcdctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccolor.d -MT jccolor.obj ../jccolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jccoefct.d -MT jccoefct.obj ../jccoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcarith.d -MT jcarith.obj ../jcarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o encoding.obj -c ../encoding.c -../encoding.c:16:15: warning: ‘szip_encoder_status’ initialized and declared ‘extern’ - 16 | extern char * szip_encoder_status = "SZIP ENCODER ENABLED"; - | ^~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapistd.d -MT jcapistd.obj ../jcapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jcapimin.d -MT jcapimin.obj ../jcapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jaricom.d -MT jaricom.obj ../jaricom.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Circular libjpeg.dll.a <- decompressJPEG.dll dependency dropped. -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jaricom.obj -c ../jaricom.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcapimin.obj -c ../jcapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcapistd.obj -c ../jcapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcarith.obj -c ../jcarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jccoefct.obj -c ../jccoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jccolor.obj -c ../jccolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcdctmgr.obj -c ../jcdctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jchuff.obj -c ../jchuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcinit.obj -c ../jcinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcmainct.obj -c ../jcmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcmarker.obj -c ../jcmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o rice.obj -c ../rice.c -../rice.c: In function ‘encode_scanline’: -../rice.c:1478:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1478 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1479:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1479 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1480:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1480 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1481:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1481 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1482:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1482 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1483:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1483 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1484:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1484 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1492:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1492 | value = (value << 1) | *s++ & 1; - | ~~~~~^~~ -../rice.c:1519:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1519 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1520:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1520 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1521:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1521 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1522:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1522 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1523:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1523 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1524:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1524 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1525:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1525 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1533:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1533 | value = (value << 2) | *s++ & 3; - | ~~~~~^~~ -../rice.c:1560:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1560 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1561:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1561 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1562:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1562 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1563:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1563 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1567:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1567 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1568:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1568 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1576:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1576 | value = (value << 3) | *s++ & 7; - | ~~~~~^~~ -../rice.c:1603:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1603 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1604:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1604 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1605:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1605 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1609:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1609 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1610:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1610 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1611:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1611 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1619:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1619 | value = (value << 4) | *s++ & 0xf; - | ~~~~~^~~~~ -../rice.c:1646:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1646 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1647:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1647 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1651:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1651 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1652:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1652 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1656:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1656 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1664:38: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1664 | value = (value << 5) | *s++ & 0x1f; - | ~~~~~^~~~~~ -../rice.c:1689:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1689 | value = (value << 6) | *s++ & 0x3f; - | ~~~~~^~~~~~ -../rice.c:1706:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1706 | value = (value << 7) | *s++ & 0x7f; - | ~~~~~^~~~~~ -../rice.c:1723:37: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 1723 | value = (value << 8) | *s++ & 0xff; - | ~~~~~^~~~~~ -../rice.c: In function ‘rice_decode’: -../rice.c:4977:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4977 | *(s+1) = (*(s+1) << 1) | (data_word >> 30) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4978:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4978 | *(s+2) = (*(s+2) << 1) | (data_word >> 29) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4979:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4979 | *(s+3) = (*(s+3) << 1) | (data_word >> 28) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4980:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4980 | *(s+4) = (*(s+4) << 1) | (data_word >> 27) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4981:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4981 | *(s+5) = (*(s+5) << 1) | (data_word >> 26) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4982:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4982 | *(s+6) = (*(s+6) << 1) | (data_word >> 25) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4983:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4983 | *(s+7) = (*(s+7) << 1) | (data_word >> 24) & 1; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4998:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4998 | *(s+0) = (*(s+0) << 2) | (data_word >> 30) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:4999:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 4999 | *(s+1) = (*(s+1) << 2) | (data_word >> 28) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5000:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5000 | *(s+2) = (*(s+2) << 2) | (data_word >> 26) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5001:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5001 | *(s+3) = (*(s+3) << 2) | (data_word >> 24) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5002:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5002 | *(s+4) = (*(s+4) << 2) | (data_word >> 22) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5003:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5003 | *(s+5) = (*(s+5) << 2) | (data_word >> 20) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5004:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5004 | *(s+6) = (*(s+6) << 2) | (data_word >> 18) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5005:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5005 | *(s+7) = (*(s+7) << 2) | (data_word >> 16) & 3; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5017:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5017 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5018:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5018 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5019:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5019 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5020:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5020 | *(s+3) = (*(s+3) << 3) | (data_word >> 20) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5021:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5021 | *(s+4) = (*(s+4) << 3) | (data_word >> 17) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5031:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5031 | *(s+0) = (*(s+0) << 3) | (data_word >> 29) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5032:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5032 | *(s+1) = (*(s+1) << 3) | (data_word >> 26) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5033:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5033 | *(s+2) = (*(s+2) << 3) | (data_word >> 23) & 7; - | ~~~~~~~~~~~~~~~~~~^~~ -../rice.c:5048:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5048 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5049:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5049 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5050:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5050 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5051:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5051 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5058:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5058 | *(s+0) = (*(s+0) << 4) | (data_word >> 28) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5059:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5059 | *(s+1) = (*(s+1) << 4) | (data_word >> 24) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5060:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5060 | *(s+2) = (*(s+2) << 4) | (data_word >> 20) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5061:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5061 | *(s+3) = (*(s+3) << 4) | (data_word >> 16) & 0xf; - | ~~~~~~~~~~~~~~~~~~^~~~~ -../rice.c:5073:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5073 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5074:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5074 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5075:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5075 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5085:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5085 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5086:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5086 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5087:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5087 | *(s+2) = (*(s+2) << 5) | (data_word >> 17) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5097:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5097 | *(s+0) = (*(s+0) << 5) | (data_word >> 27) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5098:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5098 | *(s+1) = (*(s+1) << 5) | (data_word >> 22) & 0x1f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5113:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5113 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5114:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5114 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5124:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5124 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5125:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5125 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5135:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5135 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5136:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5136 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5146:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5146 | *(s+0) = (*(s+0) << 6) | (data_word >> 26) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5147:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5147 | *(s+1) = (*(s+1) << 6) | (data_word >> 20) & 0x3f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5162:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5162 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5163:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5163 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5173:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5173 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5174:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5174 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5184:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5184 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5185:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5185 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5195:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5195 | *(s+0) = (*(s+0) << 7) | (data_word >> 25) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5196:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5196 | *(s+1) = (*(s+1) << 7) | (data_word >> 18) & 0x7f; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5211:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5211 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5212:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5212 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5219:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5219 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5220:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5220 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5227:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5227 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5228:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5228 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5235:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5235 | *(s+0) = (*(s+0) << 8) | (data_word >> 24) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5236:53: warning: suggest parentheses around arithmetic in operand of ‘|’ [-Wparentheses] - 5236 | *(s+1) = (*(s+1) << 8) | (data_word >> 16) & 0xff; - | ~~~~~~~~~~~~~~~~~~^~~~~~ -../rice.c:5358:8: warning: ‘ext2_bit’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 5358 | if (ext2_bit) - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcmaster.obj -c ../jcmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DSZ_BUILT_AS_DYNAMIC_LIB -Dszip_EXPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o sz_api.obj -c ../sz_api.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcomapi.obj -c ../jcomapi.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o szip.dll -shared -Wl,--out-implib,libszip.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ encoding.obj rice.obj sz_api.obj -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/szipSrc/O.windows-x64-mingw' -make -C ./bitshuffleSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bitshuffleSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Nothing to be done for 'install'. -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcparam.obj -c ../jcparam.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Nothing to be done for 'install'. -make -C ./cbfSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF md5c.d ../md5c.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcprepct.obj -c ../jcprepct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_ws.d ../cbf_ws.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_write_binary.d ../cbf_write_binary.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_write.d ../cbf_write.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_uncompressed.d ../cbf_uncompressed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_tree.d ../cbf_tree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_stx.d ../cbf_stx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_string.d ../cbf_string.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_simple.d ../cbf_simple.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_read_mime.d ../cbf_read_mime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_read_binary.d ../cbf_read_binary.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_predictor.d ../cbf_predictor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_packed.d ../cbf_packed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_lex.d ../cbf_lex.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_getopt.d ../cbf_getopt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jcsample.obj -c ../jcsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_file.d ../cbf_file.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_context.d ../cbf_context.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_compress.d ../cbf_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_codes.d ../cbf_codes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_canonical.d ../cbf_canonical.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_byte_offset.d ../cbf_byte_offset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_binary.d ../cbf_binary.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jctrans.obj -c ../jctrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_ascii.d ../cbf_ascii.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf_alloc.d ../cbf_alloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF cbf.d ../cbf.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdapimin.obj -c ../jdapimin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdapistd.obj -c ../jdapistd.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdarith.obj -c ../jdarith.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdatadst.obj -c ../jdatadst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdatasrc.obj -c ../jdatasrc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdcoefct.obj -c ../jdcoefct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdcolor.obj -c ../jdcolor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jddctmgr.obj -c ../jddctmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdhuff.obj -c ../jdhuff.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdinput.obj -c ../jdinput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdmainct.obj -c ../jdmainct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf.c -../cbf.c: In function ‘cbf_validate’: -../cbf.c:7388:8: warning: ignoring return value of ‘fscanf’, declared with attribute warn_unused_result [-Wunused-result] - 7388 | fscanf(fout, "%s", output); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cbf.c:7493:8: warning: ignoring return value of ‘fscanf’, declared with attribute warn_unused_result [-Wunused-result] - 7493 | fscanf(fout, "%s", output); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cbf.c: In function ‘cbf_drel’: -../cbf.c:8417:2: warning: ignoring return value of ‘system’, declared with attribute warn_unused_result [-Wunused-result] - 8417 | system(preprocess); - | ^~~~~~~~~~~~~~~~~~ -../cbf.c:8425:2: warning: ignoring return value of ‘system’, declared with attribute warn_unused_result [-Wunused-result] - 8425 | system(evaluate); - | ^~~~~~~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from ../cbf.c:264: -In function ‘strncpy’, - inlined from ‘cbf_validate’ at ../cbf.c:7362:6: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 80 bytes from a string of length 81 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘cbf_validate’ at ../cbf.c:7441:19: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 80 bytes from a string of length 81 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_alloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_ascii.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_binary.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdmarker.obj -c ../jdmarker.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdmaster.obj -c ../jdmaster.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_byte_offset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdmerge.obj -c ../jdmerge.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdpostct.obj -c ../jdpostct.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdsample.obj -c ../jdsample.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jdtrans.obj -c ../jdtrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_canonical.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jerror.obj -c ../jerror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jfdctflt.obj -c ../jfdctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jfdctfst.obj -c ../jfdctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_codes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_context.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_file.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_getopt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jfdctint.obj -c ../jfdctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jidctflt.obj -c ../jidctflt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jidctfst.obj -c ../jidctfst.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_lex.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_packed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_predictor.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_read_binary.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_read_mime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jidctint.obj -c ../jidctint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jquant1.obj -c ../jquant1.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_simple.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_string.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jquant2.obj -c ../jquant2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_stx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jutils.obj -c ../jutils.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_tree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jmemmgr.obj -c ../jmemmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jmemnobs.obj -c ../jmemnobs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_JPEG -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o decompressJPEG.obj -c ../decompressJPEG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_uncompressed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o jpeg.dll -shared -Wl,--out-implib,libjpeg.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ jaricom.obj jcapimin.obj jcapistd.obj jcarith.obj jccoefct.obj jccolor.obj jcdctmgr.obj jchuff.obj jcinit.obj jcmainct.obj jcmarker.obj jcmaster.obj jcomapi.obj jcparam.obj jcprepct.obj jcsample.obj jctrans.obj jdapimin.obj jdapistd.obj jdarith.obj jdatadst.obj jdatasrc.obj jdcoefct.obj jdcolor.obj jddctmgr.obj jdhuff.obj jdinput.obj jdmainct.obj jdmarker.obj jdmaster.obj jdmerge.obj jdpostct.obj jdsample.obj jdtrans.obj jerror.obj jfdctflt.obj jfdctfst.obj jfdctint.obj jidctflt.obj jidctfst.obj jidctint.obj jquant1.obj jquant2.obj jutils.obj jmemmgr.obj jmemnobs.obj -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o decompressJPEG.dll -shared -Wl,--out-implib,libdecompressJPEG.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ decompressJPEG.obj -ljpeg -lws2_32 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/jpegSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_write.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_write_binary.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../cbf_ws.c -../cbf_ws.c: In function ‘cbf_find_bracketstring’: -../cbf_ws.c:1087:26: warning: ‘tokentype’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1087 | tokentype[depth-1]= *stringtype; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make -C ./bloscSrc install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../md5c.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -/usr/bin/ar -rc libcbfad.a cbf.o cbf_alloc.o cbf_ascii.o cbf_binary.o cbf_byte_offset.o cbf_canonical.o cbf_codes.o cbf_compress.o cbf_context.o cbf_file.o cbf_getopt.o cbf_lex.o cbf_packed.o cbf_predictor.o cbf_read_binary.o cbf_read_mime.o cbf_simple.o cbf_string.o cbf_stx.o cbf_tree.o cbf_uncompressed.o cbf_write.o cbf_write_binary.o cbf_ws.o md5c.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -/usr/bin/ranlib libcbfad.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle.d ../../../supportApp/bloscSrc/blosc/shuffle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bitshuffle-generic.d ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -g++ -o libcbfad.so -shared -fPIC -Wl,-hlibcbfad.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 cbf.o cbf_alloc.o cbf_ascii.o cbf_binary.o cbf_byte_offset.o cbf_canonical.o cbf_codes.o cbf_compress.o cbf_context.o cbf_file.o cbf_getopt.o cbf_lex.o cbf_packed.o cbf_predictor.o cbf_read_binary.o cbf_read_mime.o cbf_simple.o cbf_string.o cbf_stx.o cbf_tree.o cbf_uncompressed.o cbf_write.o cbf_write_binary.o cbf_ws.o md5c.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/cbfSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle-generic.d ../../../supportApp/bloscSrc/blosc/shuffle-generic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosclz.d ../../../supportApp/bloscSrc/blosc/blosclz.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc.d ../../../supportApp/bloscSrc/blosc/blosc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4hc.d ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Nothing to be done for 'install'. -make -C ./tiffSrc install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4.d ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_unix.d ../tif_unix.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_zip.d ../tif_zip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_write.d ../tif_write.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_warning.d ../tif_warning.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_version.d ../tif_version.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_tile.d ../tif_tile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_thunder.d ../tif_thunder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_swab.d ../tif_swab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_strip.d ../tif_strip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-stubs-internal.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_read.d ../tif_read.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-sinksource.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_print.d ../tif_print.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_predict.d ../tif_predict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-c.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_pixarlog.d ../tif_pixarlog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_packbits.d ../tif_packbits.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_open.d ../tif_open.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy.d ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_ojpeg.d ../tif_ojpeg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_decompress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_next.d ../tif_next.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_decompress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstdmt_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_lzw.d ../tif_lzw.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_luv.d ../tif_luv.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg_12.d ../tif_jpeg_12.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_compress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg.d ../tif_jpeg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_common.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jbig.d ../tif_jbig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xxhash.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_getimage.d ../tif_getimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threading.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pool.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_flush.d ../tif_flush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_decompress.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3sm.d ../tif_fax3sm.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error_private.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3.d ../tif_fax3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_extension.d ../tif_extension.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_error.d ../tif_error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dumpmode.d ../tif_dumpmode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirwrite.d ../tif_dirwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirread.d ../tif_dirread.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entropy_common.d ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirinfo.d ../tif_dirinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dir.d ../tif_dir.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_compress.d ../tif_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_color.d ../tif_color.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_codec.d ../tif_codec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_close.d ../tif_close.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_aux.d ../tif_aux.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_aux.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_close.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_codec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_color.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dir.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dirinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dirread.c -../tif_dirread.c: In function ‘EstimateStripByteCounts’: -../tif_dirread.c:4272:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 4272 | if( !_TIFFFillStriles( tif ) ) - | ^~ -../tif_dirread.c:4275:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 4275 | if (td->td_stripbytecount) - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dirwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_dumpmode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_extension.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_fax3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_fax3sm.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_flush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_getimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_jbig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_jpeg.c -In file included from ../../../include/os/Linux/jpeglib.h:27, - from ../tif_jpeg.c:88: -../../../include/os/Linux/jmorecfg.h:248: warning: "EXTERN" redefined - 248 | #define EXTERN(type) extern type - | -In file included from ../tiffiop.h:66, - from ../tif_jpeg.c:30: -../os/default/tiffio.h:91: note: this is the location of the previous definition - 91 | # define EXTERN extern - | -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_jpeg_12.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_luv.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_lzw.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_next.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_ojpeg.c -In file included from ../../../include/os/Linux/jpeglib.h:27, - from ../tif_ojpeg.c:217: -../../../include/os/Linux/jmorecfg.h:248: warning: "EXTERN" redefined - 248 | #define EXTERN(type) extern type - | -In file included from ../tiffiop.h:66, - from ../tif_ojpeg.c:126: -../os/default/tiffio.h:91: note: this is the location of the previous definition - 91 | # define EXTERN extern - | -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_open.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_packbits.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_pixarlog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_predict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_print.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_read.c -../tif_read.c: In function ‘TIFFFillStrip’: -../tif_read.c:495:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 495 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) - | ^~ -../tif_read.c:498:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 498 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) - | ^~ -../tif_read.c: In function ‘TIFFFillTile’: -../tif_read.c:798:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 798 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) - | ^~ -../tif_read.c:801:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 801 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) - | ^~ -../tif_read.c: In function ‘TIFFStartStrip’: -../tif_read.c:960:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 960 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) - | ^~ -../tif_read.c:963:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 963 | if ((tif->tif_flags & TIFF_CODERSETUP) == 0) { - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_strip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_swab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_thunder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::Append(const char*, size_t)’: -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1013:33: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long unsigned int’} [-Wsign-compare] - 1013 | if (curr_iov_index_ + 1 >= output_iov_count_) { - | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::AppendFromSelf(size_t, size_t)’: -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1095:35: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long unsigned int’} [-Wsign-compare] - 1095 | if (curr_iov_index_ + 1 >= output_iov_count_) { - | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: At global scope: -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:567:13: warning: ‘void snappy::ComputeTable()’ defined but not used [-Wunused-function] - 567 | static void ComputeTable() { - | ^~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_tile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_version.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_warning.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_write.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_zip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tif_unix.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -/usr/bin/ar -rc libtiff.a tif_aux.o tif_close.o tif_codec.o tif_color.o tif_compress.o tif_dir.o tif_dirinfo.o tif_dirread.o tif_dirwrite.o tif_dumpmode.o tif_error.o tif_extension.o tif_fax3.o tif_fax3sm.o tif_flush.o tif_getimage.o tif_jbig.o tif_jpeg.o tif_jpeg_12.o tif_luv.o tif_lzw.o tif_next.o tif_ojpeg.o tif_open.o tif_packbits.o tif_pixarlog.o tif_predict.o tif_print.o tif_read.o tif_strip.o tif_swab.o tif_thunder.o tif_tile.o tif_version.o tif_warning.o tif_write.o tif_zip.o tif_unix.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -/usr/bin/ranlib libtiff.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -g++ -o libtiff.so -shared -fPIC -Wl,-hlibtiff.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 tif_aux.o tif_close.o tif_codec.o tif_color.o tif_compress.o tif_dir.o tif_dirinfo.o tif_dirread.o tif_dirwrite.o tif_dumpmode.o tif_error.o tif_extension.o tif_fax3.o tif_fax3sm.o tif_flush.o tif_getimage.o tif_jbig.o tif_jpeg.o tif_jpeg_12.o tif_luv.o tif_lzw.o tif_next.o tif_ojpeg.o tif_open.o tif_packbits.o tif_pixarlog.o tif_predict.o tif_print.o tif_read.o tif_strip.o tif_swab.o tif_thunder.o tif_tile.o tif_version.o tif_warning.o tif_write.o tif_zip.o tif_unix.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_win32.d -MT tif_win32.obj ../tif_win32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_zip.d -MT tif_zip.obj ../tif_zip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_write.d -MT tif_write.obj ../tif_write.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_warning.d -MT tif_warning.obj ../tif_warning.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_version.d -MT tif_version.obj ../tif_version.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_tile.d -MT tif_tile.obj ../tif_tile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_thunder.d -MT tif_thunder.obj ../tif_thunder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_swab.d -MT tif_swab.obj ../tif_swab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_strip.d -MT tif_strip.obj ../tif_strip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_read.d -MT tif_read.obj ../tif_read.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_print.d -MT tif_print.obj ../tif_print.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_predict.d -MT tif_predict.obj ../tif_predict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_pixarlog.d -MT tif_pixarlog.obj ../tif_pixarlog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_packbits.d -MT tif_packbits.obj ../tif_packbits.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_open.d -MT tif_open.obj ../tif_open.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_ojpeg.d -MT tif_ojpeg.obj ../tif_ojpeg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_next.d -MT tif_next.obj ../tif_next.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_lzw.d -MT tif_lzw.obj ../tif_lzw.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_luv.d -MT tif_luv.obj ../tif_luv.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg_12.d -MT tif_jpeg_12.obj ../tif_jpeg_12.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jpeg.d -MT tif_jpeg.obj ../tif_jpeg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_jbig.d -MT tif_jbig.obj ../tif_jbig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_getimage.d -MT tif_getimage.obj ../tif_getimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_flush.d -MT tif_flush.obj ../tif_flush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3sm.d -MT tif_fax3sm.obj ../tif_fax3sm.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_fax3.d -MT tif_fax3.obj ../tif_fax3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_extension.d -MT tif_extension.obj ../tif_extension.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_error.d -MT tif_error.obj ../tif_error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dumpmode.d -MT tif_dumpmode.obj ../tif_dumpmode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirwrite.d -MT tif_dirwrite.obj ../tif_dirwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirread.d -MT tif_dirread.obj ../tif_dirread.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dirinfo.d -MT tif_dirinfo.obj ../tif_dirinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_dir.d -MT tif_dir.obj ../tif_dir.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_compress.d -MT tif_compress.obj ../tif_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_color.d -MT tif_color.obj ../tif_color.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_codec.d -MT tif_codec.obj ../tif_codec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_close.d -MT tif_close.obj ../tif_close.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tif_aux.d -MT tif_aux.obj ../tif_aux.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_aux.obj -c ../tif_aux.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_close.obj -c ../tif_close.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_codec.obj -c ../tif_codec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_color.obj -c ../tif_color.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_compress.obj -c ../tif_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dir.obj -c ../tif_dir.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dirinfo.obj -c ../tif_dirinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/blosc.c -In file included from /usr/include/stdio.h:867, - from ../../../supportApp/bloscSrc/blosc/blosc.c:11: -In function ‘fprintf’, - inlined from ‘blosc_d.isra.0’ at ../../../supportApp/bloscSrc/blosc/blosc.c:752:9: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:100:10: warning: ‘%s’ directive argument is null [-Wformat-overflow=] - 100 | return __fprintf_chk (__stream, __USE_FORTIFY_LEVEL - 1, __fmt, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 101 | __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘blosc_d.isra.0’: -../../../supportApp/bloscSrc/blosc/blosc.c:754:31: note: format string is defined here - 754 | "support for '%s' format. ", compname); - | ^~ -In file included from /usr/include/stdio.h:867, - from ../../../supportApp/bloscSrc/blosc/blosc.c:11: -In function ‘fprintf’, - inlined from ‘write_compression_header.isra.0’ at ../../../supportApp/bloscSrc/blosc/blosc.c:1105:5: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:100:10: warning: ‘%s’ directive argument is null [-Wformat-overflow=] - 100 | return __fprintf_chk (__stream, __USE_FORTIFY_LEVEL - 1, __fmt, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 101 | __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/blosclz.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dirread.obj -c ../tif_dirread.c -../tif_dirread.c: In function ‘EstimateStripByteCounts’: -../tif_dirread.c:4272:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 4272 | if( !_TIFFFillStriles( tif ) ) - | ^~ -../tif_dirread.c:4275:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 4275 | if (td->td_stripbytecount) - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/shuffle-generic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/bloscSrc/blosc/shuffle.c -../../../supportApp/bloscSrc/blosc/shuffle.c:288:4: warning: #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. [-Wcpp] - 288 | #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. - | ^~~~~~~ -../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘get_shuffle_implementation’: -../../../supportApp/bloscSrc/blosc/shuffle.c:298:22: warning: unused variable ‘cpu_features’ [-Wunused-variable] - 298 | blosc_cpu_features cpu_features = blosc_get_cpu_features(); - | ^~~~~~~~~~~~ -In file included from ../../../supportApp/bloscSrc/blosc/shuffle.c:12: -At top level: -../../../supportApp/bloscSrc/blosc/shuffle-generic.h:61:13: warning: ‘unshuffle_generic_inline’ defined but not used [-Wunused-function] - 61 | static void unshuffle_generic_inline(const size_t type_size, - | ^~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/blosc/shuffle-generic.h:32:13: warning: ‘shuffle_generic_inline’ defined but not used [-Wunused-function] - 32 | static void shuffle_generic_inline(const size_t type_size, - | ^~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -/usr/bin/ar -rc libblosc.a entropy_common.o error_private.o fse_decompress.o pool.o threading.o xxhash.o zstd_common.o fse_compress.o zstd_compress.o huf_compress.o zstdmt_compress.o huf_decompress.o zstd_decompress.o snappy.o snappy-c.o snappy-sinksource.o snappy-stubs-internal.o lz4.o lz4hc.o blosc.o blosclz.o shuffle-generic.o bitshuffle-generic.o shuffle.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -/usr/bin/ranlib libblosc.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -g++ -o libblosc.so -shared -fPIC -Wl,-hlibblosc.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 entropy_common.o error_private.o fse_decompress.o pool.o threading.o xxhash.o zstd_common.o fse_compress.o zstd_compress.o huf_compress.o zstdmt_compress.o huf_decompress.o zstd_decompress.o snappy.o snappy-c.o snappy-sinksource.o snappy-stubs-internal.o lz4.o lz4hc.o blosc.o blosclz.o shuffle-generic.o bitshuffle-generic.o shuffle.o -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle.d -MT shuffle.obj ../../../supportApp/bloscSrc/blosc/shuffle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bitshuffle-generic.d -MT bitshuffle-generic.obj ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF shuffle-generic.d -MT shuffle-generic.obj ../../../supportApp/bloscSrc/blosc/shuffle-generic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosclz.d -MT blosclz.obj ../../../supportApp/bloscSrc/blosc/blosclz.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc.d -MT blosc.obj ../../../supportApp/bloscSrc/blosc/blosc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4hc.d -MT lz4hc.obj ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lz4.d -MT lz4.obj ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dirwrite.obj -c ../tif_dirwrite.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-stubs-internal.d -MT snappy-stubs-internal.obj ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-sinksource.d -MT snappy-sinksource.obj ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_dumpmode.obj -c ../tif_dumpmode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy-c.d -MT snappy-c.obj ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_error.obj -c ../tif_error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF snappy.d -MT snappy.obj ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_extension.obj -c ../tif_extension.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_decompress.d -MT zstd_decompress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_decompress.d -MT huf_decompress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstdmt_compress.d -MT zstdmt_compress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huf_compress.d -MT huf_compress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_compress.d -MT zstd_compress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_compress.d -MT fse_compress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF zstd_common.d -MT zstd_common.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xxhash.d -MT xxhash.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threading.d -MT threading.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pool.d -MT pool.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fse_decompress.d -MT fse_decompress.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error_private.d -MT error_private.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entropy_common.d -MT entropy_common.obj ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o entropy_common.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/entropy_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o error_private.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/error_private.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o fse_decompress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/fse_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pool.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/pool.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o threading.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/threading.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xxhash.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/xxhash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zstd_common.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common/zstd_common.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_fax3.obj -c ../tif_fax3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_fax3sm.obj -c ../tif_fax3sm.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_flush.obj -c ../tif_flush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o fse_compress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/fse_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_getimage.obj -c ../tif_getimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_jbig.obj -c ../tif_jbig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_jpeg.obj -c ../tif_jpeg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_jpeg_12.obj -c ../tif_jpeg_12.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_luv.obj -c ../tif_luv.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_lzw.obj -c ../tif_lzw.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_next.obj -c ../tif_next.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_ojpeg.obj -c ../tif_ojpeg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_open.obj -c ../tif_open.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_packbits.obj -c ../tif_packbits.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_pixarlog.obj -c ../tif_pixarlog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_predict.obj -c ../tif_predict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_print.obj -c ../tif_print.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_read.obj -c ../tif_read.c -../tif_read.c: In function ‘TIFFFillStrip’: -../tif_read.c:495:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 495 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) - | ^~ -../tif_read.c:498:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 498 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) - | ^~ -../tif_read.c: In function ‘TIFFFillTile’: -../tif_read.c:798:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 798 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) - | ^~ -../tif_read.c:801:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 801 | if ((tif->tif_flags&TIFF_NOREADRAW)==0) - | ^~ -../tif_read.c: In function ‘TIFFStartStrip’: -../tif_read.c:960:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 960 | if (!_TIFFFillStriles( tif ) || !tif->tif_dir.td_stripbytecount) - | ^~ -../tif_read.c:963:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 963 | if ((tif->tif_flags & TIFF_CODERSETUP) == 0) { - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_strip.obj -c ../tif_strip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_swab.obj -c ../tif_swab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_thunder.obj -c ../tif_thunder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_tile.obj -c ../tif_tile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_version.obj -c ../tif_version.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_warning.obj -c ../tif_warning.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_write.obj -c ../tif_write.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_zip.obj -c ../tif_zip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DDLL_TIFF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tif_win32.obj -c ../tif_win32.c -../tif_win32.c: In function ‘TIFFFdOpen’: -../tif_win32.c:242:35: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 242 | tif = TIFFClientOpen(name, mode, (thandle_t)ifd, /* FIXME: WIN64 cast to pointer warning */ - | ^ -../tif_win32.c: In function ‘TIFFOpen’: -../tif_win32.c:287:19: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 287 | tif = TIFFFdOpen((int)fd, name, mode); /* FIXME: WIN64 cast from pointer to int warning */ - | ^ -../tif_win32.c: In function ‘TIFFOpenW’: -../tif_win32.c:342:19: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 342 | tif = TIFFFdOpen((int)fd, /* FIXME: WIN64 cast from pointer to int warning */ - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o tiff.dll -shared -Wl,--out-implib,libtiff.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ tif_aux.obj tif_close.obj tif_codec.obj tif_color.obj tif_compress.obj tif_dir.obj tif_dirinfo.obj tif_dirread.obj tif_dirwrite.obj tif_dumpmode.obj tif_error.obj tif_extension.obj tif_fax3.obj tif_fax3sm.obj tif_flush.obj tif_getimage.obj tif_jbig.obj tif_jpeg.obj tif_jpeg_12.obj tif_luv.obj tif_lzw.obj tif_next.obj tif_ojpeg.obj tif_open.obj tif_packbits.obj tif_pixarlog.obj tif_predict.obj tif_print.obj tif_read.obj tif_strip.obj tif_swab.obj tif_thunder.obj tif_tile.obj tif_version.obj tif_warning.obj tif_write.obj tif_zip.obj tif_win32.obj -luser32 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/tiffSrc/O.windows-x64-mingw' -make -C ./xml2Src install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp_stream.d ../nanohttp_stream.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlstring.d ../xmlstring.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpointer.d ../xpointer.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpath.d ../xpath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlwriter.d ../xmlwriter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlunicode.d ../xmlunicode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemastypes.d ../xmlschemastypes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemas.d ../xmlschemas.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlsave.d ../xmlsave.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmodule.d ../xmlmodule.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlregexp.d ../xmlregexp.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zstd_compress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstd_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlreader.d ../xmlreader.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmemory.d ../xmlmemory.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlIO.d ../xmlIO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xlink.d ../xlink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xinclude.d ../xinclude.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF valid.d ../valid.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uri.d ../uri.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tree.d ../tree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threads.d ../threads.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF schematron.d ../schematron.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX.d ../SAX.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o huf_compress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/huf_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX2.d ../SAX2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF relaxng.d ../relaxng.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pattern.d ../pattern.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parserInternals.d ../parserInternals.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parser.d ../parser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp.d ../nanohttp.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanoftp.d ../nanoftp.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF list.d ../list.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zstdmt_compress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress/zstdmt_compress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF legacy.d ../legacy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLtree.d ../HTMLtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLparser.d ../HTMLparser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF hash.d ../hash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF globals.d ../globals.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error.d ../error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entities.d ../entities.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d ../encoding.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF DOCBparser.d ../DOCBparser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dict.d ../dict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF debugXML.d ../debugXML.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF chvalid.d ../chvalid.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF catalog.d ../catalog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF c14n.d ../c14n.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF buf.d ../buf.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -mkdir ../../../include/os/Linux/libxml -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o huf_decompress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/huf_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../buf.c -../buf.c: In function ‘xmlBufMemoryError’: -../buf.c:94:5: warning: too many arguments for format [-Wformat-extra-args] - 94 | __xmlSimpleError(XML_FROM_BUFFER, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../buf.c: In function ‘xmlBufOverflowError’: -../buf.c:109:5: warning: too many arguments for format [-Wformat-extra-args] - 109 | __xmlSimpleError(XML_FROM_BUFFER, XML_BUF_OVERFLOW, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o zstd_decompress.obj -c ../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress/zstd_decompress.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../c14n.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o snappy.obj -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::Append(const char*, size_t)’: -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1013:33: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long long unsigned int’} [-Wsign-compare] - 1013 | if (curr_iov_index_ + 1 >= output_iov_count_) { - | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: In member function ‘bool snappy::SnappyIOVecWriter::AppendFromSelf(size_t, size_t)’: -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:1095:35: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long long unsigned int’} [-Wsign-compare] - 1095 | if (curr_iov_index_ + 1 >= output_iov_count_) { - | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc: At global scope: -../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy.cc:567:13: warning: ‘void snappy::ComputeTable()’ defined but not used [-Wunused-function] - 567 | static void ComputeTable() { - | ^~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../catalog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../chvalid.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o snappy-c.obj -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-c.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o snappy-sinksource.obj -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-sinksource.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o snappy-stubs-internal.obj -c ../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../debugXML.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../dict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../DOCBparser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../encoding.c -../encoding.c: In function ‘xmlEncodingErrMemory’: -../encoding.c:86:5: warning: too many arguments for format [-Wformat-extra-args] - 86 | __xmlSimpleError(XML_FROM_I18N, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../encoding.c: In function ‘xmlCharEncCloseFunc__internal_alias’: -../encoding.c:2856:12: warning: variable ‘handler_in_list’ set but not used [-Wunused-but-set-variable] - 2856 | int i, handler_in_list = 0; - | ^~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../entities.c -../entities.c: In function ‘xmlEntitiesErrMemory’: -../entities.c:76:5: warning: too many arguments for format [-Wformat-extra-args] - 76 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../globals.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o lz4.obj -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../hash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../HTMLparser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../HTMLtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../legacy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../list.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o lz4hc.obj -c ../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5/lz4hc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nanoftp.c -../nanoftp.c: In function ‘xmlFTPErrMemory’: -../nanoftp.c:176:5: warning: too many arguments for format [-Wformat-extra-args] - 176 | __xmlSimpleError(XML_FROM_FTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosc.obj -c ../../../supportApp/bloscSrc/blosc/blosc.c -../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘parallel_blosc’: -../../../supportApp/bloscSrc/blosc/blosc.c:858:7: warning: unused variable ‘rc’ [-Wunused-variable] - 858 | int rc; - | ^~ -../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘t_blosc’: -../../../supportApp/bloscSrc/blosc/blosc.c:1583:7: warning: unused variable ‘rc’ [-Wunused-variable] - 1583 | int rc; - | ^~ -../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘blosc_release_threadpool’: -../../../supportApp/bloscSrc/blosc/blosc.c:2062:7: warning: unused variable ‘rc’ [-Wunused-variable] - 2062 | int rc; - | ^~ -../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘blosc_d.isra.0’: -../../../supportApp/bloscSrc/blosc/blosc.c:752:9: warning: ‘%s’ directive argument is null [-Wformat-overflow=] - 752 | fprintf(stderr, - | ^~~~~~~~~~~~~~~ - 753 | "Blosc has not been compiled with decompression " - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 754 | "support for '%s' format. ", compname); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/blosc/blosc.c:754:31: note: format string is defined here - 754 | "support for '%s' format. ", compname); - | ^~ -../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘write_compression_header.isra.0’: -../../../supportApp/bloscSrc/blosc/blosc.c:1105:5: warning: ‘%s’ directive argument is null [-Wformat-overflow=] - 1105 | fprintf(stderr, "Blosc has not been compiled with '%s' ", compname); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/blosc/blosc.c: In function ‘blosc_c’: -../../../supportApp/bloscSrc/blosc/blosc.c:648:7: warning: ‘%s’ directive argument is null [-Wformat-overflow=] - 648 | fprintf(stderr, "Blosc has not been compiled with '%s' ", compname); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosclz.obj -c ../../../supportApp/bloscSrc/blosc/blosclz.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o shuffle-generic.obj -c ../../../supportApp/bloscSrc/blosc/shuffle-generic.c -../../../supportApp/bloscSrc/blosc/shuffle-generic.c: In function ‘shuffle_generic’: -../../../supportApp/bloscSrc/blosc/shuffle-generic.c:17:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 17 | } - | ^ -../../../supportApp/bloscSrc/blosc/shuffle-generic.c: In function ‘unshuffle_generic’: -../../../supportApp/bloscSrc/blosc/shuffle-generic.c:25:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 25 | } - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nanohttp.c -../nanohttp.c: In function ‘xmlHTTPErrMemory’: -../nanohttp.c:177:5: warning: too many arguments for format [-Wformat-extra-args] - 177 | __xmlSimpleError(XML_FROM_HTTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o bitshuffle-generic.obj -c ../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_byte_elem_remainder’: -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:40:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 40 | } - | ^ -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_byte_elem_scal’: -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:48:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 48 | } - | ^ -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_bit_byte_remainder’: -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:85:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 85 | } - | ^ -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_elem’: -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:110:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 110 | } - | ^ -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_bitrow_eight’: -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:122:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 122 | } - | ^ -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_trans_bit_elem_scal’: -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:140:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 140 | } - | ^ -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_shuffle_bit_eightelem_scal’: -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:205:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 205 | } - | ^ -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c: In function ‘bshuf_untrans_bit_elem_scal’: -../../../supportApp/bloscSrc/blosc/bitshuffle-generic.c:221:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 221 | } - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_ZSTD -DHAVE_SNAPPY -DHAVE_LZ4 -DHAVE_ZLIB -D BLOSC_SHARED_LIBRARY -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/ -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/common -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/compress -I../../../supportApp/bloscSrc/internal-complibs/zstd-1.3.0/decompress -I../../../supportApp/bloscSrc/internal-complibs/snappy-1.1.1 -I../../../supportApp/bloscSrc/internal-complibs/lz4-1.7.5 -I../../../supportApp/bloscSrc/blosc -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o shuffle.obj -c ../../../supportApp/bloscSrc/blosc/shuffle.c -../../../supportApp/bloscSrc/blosc/shuffle.c:288:4: warning: #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. [-Wcpp] - 288 | #warning Hardware-acceleration detection not implemented for the target architecture. Only the generic shuffle/unshuffle routines will be available. - | ^~~~~~~ -../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘get_shuffle_implementation’: -../../../supportApp/bloscSrc/blosc/shuffle.c:298:22: warning: unused variable ‘cpu_features’ [-Wunused-variable] - 298 | blosc_cpu_features cpu_features = blosc_get_cpu_features(); - | ^~~~~~~~~~~~ -In file included from ../../../supportApp/bloscSrc/blosc/shuffle.c:12: -At top level: -../../../supportApp/bloscSrc/blosc/shuffle-generic.h:61:13: warning: ‘unshuffle_generic_inline’ defined but not used [-Wunused-function] - 61 | static void unshuffle_generic_inline(const size_t type_size, - | ^~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/blosc/shuffle-generic.h:32:13: warning: ‘shuffle_generic_inline’ defined but not used [-Wunused-function] - 32 | static void shuffle_generic_inline(const size_t type_size, - | ^~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘shuffle’: -../../../supportApp/bloscSrc/blosc/shuffle.c:387:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 387 | } - | ^ -../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘unshuffle’: -../../../supportApp/bloscSrc/blosc/shuffle.c:400:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 400 | } - | ^ -../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘bitshuffle’: -../../../supportApp/bloscSrc/blosc/shuffle.c:421:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 421 | } - | ^ -../../../supportApp/bloscSrc/blosc/shuffle.c: In function ‘bitunshuffle’: -../../../supportApp/bloscSrc/blosc/shuffle.c:442:1: warning: visibility attribute not supported in this configuration; ignored [-Wattributes] - 442 | } - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o blosc.dll -shared -Wl,--out-implib,libblosc.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ entropy_common.obj error_private.obj fse_decompress.obj pool.obj threading.obj xxhash.obj zstd_common.obj fse_compress.obj zstd_compress.obj huf_compress.obj zstdmt_compress.obj huf_decompress.obj zstd_decompress.obj snappy.obj snappy-c.obj snappy-sinksource.obj snappy-stubs-internal.obj lz4.obj lz4hc.obj blosc.obj blosclz.obj shuffle-generic.obj bitshuffle-generic.obj shuffle.obj -lzlib -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/bloscSrc/O.windows-x64-mingw' -make -C ./hdf5Src install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5detect.d ../H5detect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d ../jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d ../blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5lib_settings.d ../H5lib_settings.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tinit.d ../os/Linux/H5Tinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ztrans.d ../H5Ztrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zszip.d ../H5Zszip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zshuffle.d ../H5Zshuffle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zscaleoffset.d ../H5Zscaleoffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Znbit.d ../H5Znbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zfletcher32.d ../H5Zfletcher32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zdeflate.d ../H5Zdeflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Z.d ../H5Z.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5WB.d ../H5WB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5VM.d ../H5VM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5TS.d ../H5TS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvlen.d ../H5Tvlen.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvisit.d ../H5Tvisit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tstrpad.d ../H5Tstrpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tprecis.d ../H5Tprecis.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tpad.d ../H5Tpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Torder.d ../H5Torder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Topaque.d ../H5Topaque.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toh.d ../H5Toh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toffset.d ../H5Toffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tnative.d ../H5Tnative.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfloat.d ../H5Tfloat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfixed.d ../H5Tfixed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfields.d ../H5Tfields.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tenum.d ../H5Tenum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdeprec.d ../H5Tdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdbg.d ../H5Tdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcset.d ../H5Tcset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tconv.d ../H5Tconv.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcompound.d ../H5Tcompound.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcommit.d ../H5Tcommit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tbit.d ../H5Tbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tarray.d ../H5Tarray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5T.d ../H5T.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ST.d ../H5ST.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMtest.d ../H5SMtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMmessage.d ../H5SMmessage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMcache.d ../H5SMcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMbtree2.d ../H5SMbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SM.d ../H5SM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SL.d ../H5SL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Stest.d ../H5Stest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sselect.d ../H5Sselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Spoint.d ../H5Spoint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Snone.d ../H5Snone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Shyper.d ../H5Shyper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sdbg.d ../H5Sdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sall.d ../H5Sall.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5S.d ../H5S.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5RS.d ../H5RS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5UC.d ../H5UC.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Rdeprec.d ../H5Rdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5R.d ../H5R.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PL.d ../H5PL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PB.d ../H5PB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ptest.d ../H5Ptest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pstrcpl.d ../H5Pstrcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpypl.d ../H5Pocpypl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpl.d ../H5Pocpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plcpl.d ../H5Plcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plapl.d ../H5Plapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pint.d ../H5Pint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pgcpl.d ../H5Pgcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfmpl.d ../H5Pfmpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfcpl.d ../H5Pfcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfapl.d ../H5Pfapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pencdec.d ../H5Pencdec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdxpl.d ../H5Pdxpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdeprec.d ../H5Pdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdcpl.d ../H5Pdcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdapl.d ../H5Pdapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pacpl.d ../H5Pacpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5P.d ../H5P.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ounknown.d ../H5Ounknown.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Otest.d ../H5Otest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ostab.d ../H5Ostab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshmesg.d ../H5Oshmesg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshared.d ../H5Oshared.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Osdspace.d ../H5Osdspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Orefcount.d ../H5Orefcount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Opline.d ../H5Opline.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Onull.d ../H5Onull.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oname.d ../H5Oname.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omtime.d ../H5Omtime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omessage.d ../H5Omessage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olink.d ../H5Olink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olinfo.d ../H5Olinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olayout.d ../H5Olayout.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oginfo.d ../H5Oginfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofsinfo.d ../H5Ofsinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oflush.d ../H5Oflush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofill.d ../H5Ofill.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../parser.c -../parser.c: In function ‘xmlParseReference__internal_alias’: -../parser.c:7258:44: warning: ‘%d’ directive output may be truncated writing between 3 and 10 bytes into a region of size 9 [-Wformat-truncation=] - 7258 | snprintf((char *)out, sizeof(out), "#%d", value); - | ^~ -../parser.c:7258:42: note: directive argument in the range [256, 2147483647] - 7258 | snprintf((char *)out, sizeof(out), "#%d", value); - | ^~~~~ -In file included from /usr/include/stdio.h:867, - from ../libxml.h:51, - from ../parser.c:34: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output between 5 and 12 bytes into a destination of size 10 - 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 68 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../parser.c:7256:47: warning: ‘__builtin___snprintf_chk’ output may be truncated before the last format character [-Wformat-truncation=] - 7256 | snprintf((char *)out, sizeof(out), "#x%X", value); - | ^ -In file included from /usr/include/stdio.h:867, - from ../libxml.h:51, - from ../parser.c:34: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output between 6 and 11 bytes into a destination of size 10 - 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 68 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oefl.d ../H5Oefl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odtype.d ../H5Odtype.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odrvinfo.d ../H5Odrvinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odbg.d ../H5Odbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocopy.d ../H5Ocopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocont.d ../H5Ocont.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ochunk.d ../H5Ochunk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache_image.d ../H5Ocache_image.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache.d ../H5Ocache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obtreek.d ../H5Obtreek.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obogus.d ../H5Obogus.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattribute.d ../H5Oattribute.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../parserInternals.c -../parserInternals.c: In function ‘xmlNextChar__internal_alias’: -../parserInternals.c:473:9: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 473 | if (c == 0xC0) - | ^~ -../parserInternals.c:475:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 475 | if (cur[1] == 0) { - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattr.d ../H5Oattr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oalloc.d ../H5Oalloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oainfo.d ../H5Oainfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5O.d ../H5O.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MPtest.d ../H5MPtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MP.d ../H5MP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MM.d ../H5MM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFsection.d ../H5MFsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFdbg.d ../H5MFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFaggr.d ../H5MFaggr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MF.d ../H5MF.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Lexternal.d ../H5Lexternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5L.d ../H5L.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Itest.d ../H5Itest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5I.d ../H5I.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HP.d ../H5HP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdblk.d ../H5HLdblk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLprfx.d ../H5HLprfx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLint.d ../H5HLint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pattern.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdbg.d ../H5HLdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLcache.d ../H5HLcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HL.d ../H5HL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGquery.d ../H5HGquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGdbg.d ../H5HGdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGcache.d ../H5HGcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HG.d ../H5HG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtiny.d ../H5HFtiny.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtest.d ../H5HFtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFstat.d ../H5HFstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFspace.d ../H5HFspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFsection.d ../H5HFsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFman.d ../H5HFman.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiter.d ../H5HFiter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiblock.d ../H5HFiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhuge.d ../H5HFhuge.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhdr.d ../H5HFhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdtable.d ../H5HFdtable.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdblock.d ../H5HFdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdbg.d ../H5HFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFcache.d ../H5HFcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFbtree2.d ../H5HFbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HF.d ../H5HF.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtraverse.d ../H5Gtraverse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtest.d ../H5Gtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gstab.d ../H5Gstab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Groot.d ../H5Groot.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Goh.d ../H5Goh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gobj.d ../H5Gobj.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gnode.d ../H5Gnode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gname.d ../H5Gname.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gloc.d ../H5Gloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Glink.d ../H5Glink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gint.d ../H5Gint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gent.d ../H5Gent.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdeprec.d ../H5Gdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdense.d ../H5Gdense.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcompact.d ../H5Gcompact.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcache.d ../H5Gcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gbtree2.d ../H5Gbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5G.d ../H5G.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FStest.d ../H5FStest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSstat.d ../H5FSstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSsection.d ../H5FSsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSint.d ../H5FSint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSdbg.d ../H5FSdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FScache.d ../H5FScache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FS.d ../H5FS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FO.d ../H5FO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FL.d ../H5FL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDtest.d ../H5FDtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDstdio.d ../H5FDstdio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDspace.d ../H5FDspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDsec2.d ../H5FDsec2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDmulti.d ../H5FDmulti.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDlog.d ../H5FDlog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDint.d ../H5FDint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDfamily.d ../H5FDfamily.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDcore.d ../H5FDcore.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FD.d ../H5FD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAtest.d ../H5FAtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAstat.d ../H5FAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAint.d ../H5FAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAhdr.d ../H5FAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblkpage.d ../H5FAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblock.d ../H5FAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdbg.d ../H5FAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAcache.d ../H5FAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FA.d ../H5FA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ftest.d ../H5Ftest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper_cache.d ../H5Fsuper_cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../relaxng.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper.d ../H5Fsuper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fspace.d ../H5Fspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsfile.d ../H5Fsfile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fquery.d ../H5Fquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fmount.d ../H5Fmount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fio.d ../H5Fio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fint.d ../H5Fint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ffake.d ../H5Ffake.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fefc.d ../H5Fefc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdeprec.d ../H5Fdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdbg.d ../H5Fdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fcwfs.d ../H5Fcwfs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Faccum.d ../H5Faccum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5F.d ../H5F.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../SAX2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAtest.d ../H5EAtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAstat.d ../H5EAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../SAX.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAsblock.d ../H5EAsblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAint.d ../H5EAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAiblock.d ../H5EAiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAhdr.d ../H5EAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblock.d ../H5EAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblkpage.d ../H5EAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdbg.d ../H5EAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAcache.d ../H5EAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EA.d ../H5EA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../schematron.c -../schematron.c: In function ‘xmlSchematronPErrMemory’: -../schematron.c:234:22: warning: too many arguments for format [-Wformat-extra-args] - 234 | extra); - | ^~~~~ -../schematron.c: In function ‘xmlSchematronVErrMemory’: -../schematron.c:284:22: warning: too many arguments for format [-Wformat-extra-args] - 284 | extra); - | ^~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Eint.d ../H5Eint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Edeprec.d ../H5Edeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5E.d ../H5E.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dvirtual.d ../H5Dvirtual.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../threads.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dtest.d ../H5Dtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dsingle.d ../H5Dsingle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dselect.d ../H5Dselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dscatgath.d ../H5Dscatgath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Doh.d ../H5Doh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dnone.d ../H5Dnone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dlayout.d ../H5Dlayout.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dio.d ../H5Dio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dint.d ../H5Dint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfill.d ../H5Dfill.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfarray.d ../H5Dfarray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Defl.d ../H5Defl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dearray.d ../H5Dearray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddeprec.d ../H5Ddeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddbg.d ../H5Ddbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcontig.d ../H5Dcontig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcompact.d ../H5Dcompact.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dchunk.d ../H5Dchunk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree2.d ../H5Dbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree.d ../H5Dbtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5D.d ../H5D.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5CS.d ../H5CS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctest.d ../H5Ctest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctag.d ../H5Ctag.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cquery.d ../H5Cquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cprefetched.d ../H5Cprefetched.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Clog.d ../H5Clog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cimage.d ../H5Cimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cepoch.d ../H5Cepoch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cdbg.d ../H5Cdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5C.d ../H5C.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2test.d ../H5B2test.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2stat.d ../H5B2stat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2leaf.d ../H5B2leaf.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2internal.d ../H5B2internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2int.d ../H5B2int.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2hdr.d ../H5B2hdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2dbg.d ../H5B2dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2cache.d ../H5B2cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2.d ../H5B2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bdbg.d ../H5Bdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bcache.d ../H5Bcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B.d ../H5B.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACproxy_entry.d ../H5ACproxy_entry.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACdbg.d ../H5ACdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AClog.d ../H5AClog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AC.d ../H5AC.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Atest.d ../H5Atest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Aint.d ../H5Aint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adeprec.d ../H5Adeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adense.d ../H5Adense.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Abtree2.d ../H5Abtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5A.d ../H5A.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5trace.d ../H5trace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5timer.d ../H5timer.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5system.d ../H5system.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5dbg.d ../H5dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5checksum.d ../H5checksum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../tree.c -../tree.c: In function ‘xmlTreeErrMemory’: -../tree.c:74:5: warning: too many arguments for format [-Wformat-extra-args] - 74 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../tree.c: In function ‘xmlGetNodePath__internal_alias’: -../tree.c:4758:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 4758 | if (tmp->type == XML_COMMENT_NODE) - | ^~ -../tree.c:4760:21: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 4760 | tmp = tmp->next; - | ^~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5.d ../H5.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../uri.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5checksum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5system.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5system.c:33: -In function ‘strncat’, - inlined from ‘H5_build_extpath’ at ../H5system.c:1116:13: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5system.c:33: -../H5system.c: In function ‘H5_build_extpath’: -../H5private.h:1358:31: note: length computed here - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5system.c:1116:13: note: in expansion of macro ‘HDstrncat’ - 1116 | HDstrncat(full_path, new_name, HDstrlen(new_name)); - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5timer.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../valid.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xinclude.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5trace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xlink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5A.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5A.c:25: -In function ‘strncpy’, - inlined from ‘H5Aget_name_by_idx’ at ../H5A.c:937:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5A.c:25: -../H5A.c: In function ‘H5Aget_name_by_idx’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5A.c:933:26: note: in expansion of macro ‘HDstrlen’ - 933 | ret_value = (ssize_t)HDstrlen(attr->shared->name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlIO.c -../xmlIO.c: In function ‘xmlIOErrMemory’: -../xmlIO.c:256:5: warning: too many arguments for format [-Wformat-extra-args] - 256 | __xmlSimpleError(XML_FROM_IO, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Abtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlmemory.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Adense.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Adeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlreader.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Aint.c -../H5Aint.c: In function ‘H5A_create’: -../H5Aint.c:200:45: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 200 | if(NULL == (attr->shared->dt = H5T_copy(type, H5T_COPY_ALL))) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Aprivate.h:25, - from ../H5Apkg.h:37, - from ../H5Aint.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Aint.c: In function ‘H5A__read’: -../H5Aint.c:532:71: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 532 | (dst_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0) - | ^~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Aprivate.h:25, - from ../H5Apkg.h:37, - from ../H5Aint.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Aint.c: In function ‘H5A__write’: -../H5Aint.c:632:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 632 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0 || - | ^~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Aprivate.h:25, - from ../H5Apkg.h:37, - from ../H5Aint.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Atest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5AC.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5AClog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5ACdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5ACproxy_entry.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B.c -../H5B.c: In function ‘H5B_valid’: -../H5B.c:2038:26: warning: variable ‘shared’ set but not used [-Wunused-but-set-variable] - 2038 | H5B_shared_t *shared; /* Pointer to shared B-tree info */ - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlregexp.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlmodule.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Bcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Bdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlsave.c -../xmlsave.c: In function ‘xmlSaveErrMemory’: -../xmlsave.c:111:5: warning: too many arguments for format [-Wformat-extra-args] - 111 | __xmlSimpleError(XML_FROM_OUTPUT, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2hdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2int.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2leaf.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2stat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5B2test.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5C.c -../H5C.c: In function ‘H5C_flush_cache’: -../H5C.c:1057:14: warning: variable ‘ignore_protected’ set but not used [-Wunused-but-set-variable] - 1057 | hbool_t ignore_protected; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cepoch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Clog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cprefetched.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Cquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ctag.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ctest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5CS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5D.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dbtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlschemas.c -../xmlschemas.c: In function ‘xmlSchemaPSimpleErr’: -../xmlschemas.c:1861:22: warning: too many arguments for format [-Wformat-extra-args] - 1861 | msg); - | ^~~ -../xmlschemas.c: In function ‘xmlSchemaPErrMemory’: -../xmlschemas.c:1878:22: warning: too many arguments for format [-Wformat-extra-args] - 1878 | extra); - | ^~~~~ -../xmlschemas.c: In function ‘xmlSchemaVErrMemory’: -../xmlschemas.c:2002:22: warning: too many arguments for format [-Wformat-extra-args] - 2002 | extra); - | ^~~~~ -../xmlschemas.c: In function ‘xmlSchemaPResCompAttrErr’: -../xmlschemas.c:2834:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 2834 | if (refTypeStr == NULL) - | ^~ -../xmlschemas.c:2836:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 2836 | xmlSchemaPErrExt(ctxt, ownerElem, error, - | ^~~~~~~~~~~~~~~~ -../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeQNameValue’: -../xmlschemas.c:5824:6: warning: too many arguments for format [-Wformat-extra-args] - 5824 | NULL, value, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlGetMaxOccurs’: -../xmlschemas.c:6047:3: warning: too many arguments for format [-Wformat-extra-args] - 6047 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:6061:6: warning: too many arguments for format [-Wformat-extra-args] - 6061 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:6078:6: warning: too many arguments for format [-Wformat-extra-args] - 6078 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c: In function ‘xmlGetMinOccurs’: -../xmlschemas.c:6113:6: warning: too many arguments for format [-Wformat-extra-args] - 6113 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:6130:6: warning: too many arguments for format [-Wformat-extra-args] - 6130 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c: In function ‘xmlSchemaPGetBoolNodeValue’: -../xmlschemas.c:6175:6: warning: too many arguments for format [-Wformat-extra-args] - 6175 | NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlGetBooleanProp’: -../xmlschemas.c:6223:6: warning: too many arguments for format [-Wformat-extra-args] - 6223 | NULL, val, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeValue’: -../xmlschemas.c:6328:6: warning: too many arguments for format [-Wformat-extra-args] - 6328 | type, NULL, value, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaParseWildcardNs’: -../xmlschemas.c:6763:6: warning: too many arguments for format [-Wformat-extra-args] - 6763 | NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c:6801:7: warning: too many arguments for format [-Wformat-extra-args] - 6801 | nsItem, NULL, NULL, NULL); - | ^~~~~~ -../xmlschemas.c: In function ‘xmlSchemaParseLocalAttribute’: -../xmlschemas.c:7188:8: warning: too many arguments for format [-Wformat-extra-args] - 7188 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:7208:4: warning: too many arguments for format [-Wformat-extra-args] - 7208 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:7366:2: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 7366 | if (defValue != NULL) - | ^~ -../xmlschemas.c:7368:6: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 7368 | if (defValueType == WXS_ATTR_DEF_VAL_FIXED) - | ^~ -../xmlschemas.c: In function ‘xmlSchemaParseElement’: -../xmlschemas.c:8629:4: warning: too many arguments for format [-Wformat-extra-args] - 8629 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:8708:4: warning: too many arguments for format [-Wformat-extra-args] - 8708 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:8738:7: warning: too many arguments for format [-Wformat-extra-args] - 8738 | NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaParseSimpleType’: -../xmlschemas.c:9294:7: warning: too many arguments for format [-Wformat-extra-args] - 9294 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c: In function ‘xmlSchemaParseSchemaElement’: -../xmlschemas.c:9693:3: warning: too many arguments for format [-Wformat-extra-args] - 9693 | "(qualified | unqualified)", val, NULL, NULL, NULL); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -../xmlschemas.c:9706:3: warning: too many arguments for format [-Wformat-extra-args] - 9706 | "(qualified | unqualified)", val, NULL, NULL, NULL); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -../xmlschemas.c:9724:3: warning: too many arguments for format [-Wformat-extra-args] - 9724 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:9740:3: warning: too many arguments for format [-Wformat-extra-args] - 9740 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c: In function ‘xmlSchemaParseImport’: -../xmlschemas.c:10763:6: warning: too many arguments for format [-Wformat-extra-args] -10763 | NULL, namespaceName, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c:10774:6: warning: too many arguments for format [-Wformat-extra-args] -10774 | NULL, schemaLocation, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaParseComplexType’: -../xmlschemas.c:12233:8: warning: too many arguments for format [-Wformat-extra-args] -12233 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:12251:8: warning: too many arguments for format [-Wformat-extra-args] -12251 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c: In function ‘xmlSchemaValidateFacets’: -../xmlschemas.c:24253:3: warning: too many arguments for format [-Wformat-extra-args] -24253 | value, len, type, facetLink->facet, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c:24289:3: warning: too many arguments for format [-Wformat-extra-args] -24289 | value, length, type, facetLink->facet, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c:24341:7: warning: too many arguments for format [-Wformat-extra-args] -24341 | value, 0, type, NULL, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c:24386:4: warning: too many arguments for format [-Wformat-extra-args] -24386 | value, 0, type, facet, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c: In function ‘xmlSchemaSetValidStructuredErrors__internal_alias’: -../xmlschemas.c:27790:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] -27790 | if (ctxt == NULL) - | ^~ -../xmlschemas.c:27792:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ -27792 | ctxt->serror = serror; - | ^~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dchunk.c -../H5Dchunk.c: In function ‘H5D__chunk_init’: -../H5Dchunk.c:724:26: warning: unused variable ‘sc’ [-Wunused-variable] - 724 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_is_space_alloc’: -../H5Dchunk.c:816:32: warning: unused variable ‘sc’ [-Wunused-variable] - 816 | const H5O_storage_chunk_t *sc = &(storage->u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_dest’: -../H5Dchunk.c:2371:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2371 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_create’: -../H5Dchunk.c:2582:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2582 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_lookup’: -../H5Dchunk.c:2683:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2683 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_flush_entry’: -../H5Dchunk.c:2806:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2806 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_allocated’: -../H5Dchunk.c:3716:26: warning: unused variable ‘sc’ [-Wunused-variable] - 3716 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_allocate’: -../H5Dchunk.c:3809:32: warning: unused variable ‘sc’ [-Wunused-variable] - 3809 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_update_old_edge_chunks’: -../H5Dchunk.c:4242:32: warning: unused variable ‘sc’ [-Wunused-variable] - 4242 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c:4229:24: warning: unused variable ‘pline’ [-Wunused-variable] - 4229 | const H5O_pline_t *pline = &(dset->shared->dcpl_cache.pline); /* I/O pipeline info */ - | ^~~~~ -../H5Dchunk.c: In function ‘H5D__chunk_prune_by_extent’: -../H5Dchunk.c:4797:32: warning: unused variable ‘sc’ [-Wunused-variable] - 4797 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_delete’: -../H5Dchunk.c:5203:26: warning: unused variable ‘sc’ [-Wunused-variable] - 5203 | H5O_storage_chunk_t *sc = &(storage->u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_copy_cb’: -../H5Dchunk.c:5550:111: warning: passing argument 5 of ‘H5D__chunk_file_alloc’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 5550 | if(H5D__chunk_file_alloc(udata->idx_info_dst, NULL, &udata_dst.chunk_block, &need_insert, udata_dst.common.scaled) < 0) - | ~~~~~~~~~~~~~~~~^~~~~~~ -../H5Dchunk.c:300:13: note: expected ‘hsize_t *’ {aka ‘long long unsigned int *’} but argument is of type ‘const hsize_t *’ {aka ‘const long long unsigned int *’} - 300 | hsize_t scaled[]); - | ~~~~~~~~^~~~~~~~ -../H5Dchunk.c: In function ‘H5D__chunk_copy’: -../H5Dchunk.c:5689:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 5689 | if(NULL == (dt_mem = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) - | ^~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dchunk.c:55: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dchunk.c:5697:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 5697 | if(NULL == (dt_dst = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) - | ^~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dchunk.c:55: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dchunk.c: In function ‘H5D__chunk_bh_info’: -../H5Dchunk.c:5856:26: warning: unused variable ‘sc’ [-Wunused-variable] - 5856 | H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_dump_index’: -../H5Dchunk.c:5979:26: warning: unused variable ‘sc’ [-Wunused-variable] - 5979 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dcompact.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dcontig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlschemastypes.c -../xmlschemastypes.c: In function ‘xmlSchemaTypeErrMemory’: -../xmlschemastypes.c:204:5: warning: too many arguments for format [-Wformat-extra-args] - 204 | __xmlSimpleError(XML_FROM_DATATYPE, XML_ERR_NO_MEMORY, node, NULL, extra); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ddbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ddeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlunicode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dearray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Defl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dfarray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlwriter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dfill.c -../H5Dfill.c: In function ‘H5D__fill’: -../H5Dfill.c:238:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 238 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(fill_type, H5T_COPY_ALL), FALSE)) < 0) - | ^~~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dfill.c:36: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dfill.c:241:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 241 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(buf_type, H5T_COPY_ALL), FALSE)) < 0) - | ^~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dfill.c:36: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dfill.c: In function ‘H5D__fill_init’: -../H5Dfill.c:413:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 413 | if(NULL == (fb_info->mem_type = H5T_copy(dset_type, H5T_COPY_REOPEN))) - | ^~~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dfill.c:36: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dint.c -../H5Dint.c: In function ‘H5D__init_type’: -../H5Dint.c:681:43: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 681 | if((dset->shared->type = H5T_copy(type, H5T_COPY_ALL)) == NULL) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dint.c:25: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dint.c: In function ‘H5D__mark’: -../H5Dint.c:3174:37: warning: passing argument 1 of ‘H5D__layout_oh_write’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 3174 | if(H5D__layout_oh_write(dataset, dxpl_id, oh, update_flags) < 0) - | ^~~~~~~ -In file included from ../H5Dint.c:25: -../H5Dpkg.h:638:43: note: expected ‘H5D_t *’ {aka ‘struct H5D_t *’} but argument is of type ‘const H5D_t *’ {aka ‘const struct H5D_t *’} - 638 | H5_DLL herr_t H5D__layout_oh_write(H5D_t *dataset, hid_t dxpl_id, H5O_t *oh, - | ~~~~~~~^~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dlayout.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dnone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Doh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dscatgath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dsingle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Dvirtual.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xpath.c -In file included from ../xpath.c:462: -../timsort.h: In function ‘libxml_domnode_tim_sort_collapse’: -../timsort.h:397:19: warning: variable ‘BD’ set but not used [-Wunused-but-set-variable] - 397 | int ABC, BCD, BD, CD; - | ^~ -../xpath.c: In function ‘xmlXPathNodeCollectAndTest’: -../xpath.c:12409:28: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘xmlXPathTypeVal’ {aka ‘enum ’} [-Wenum-compare] -12409 | } else if (cur->type == type) { - | ^~ -In file included from ../xpath.c:476: -At top level: -../trionan.c:218:1: warning: ‘trio_is_negative’ defined but not used [-Wunused-function] - 218 | trio_is_negative - | ^~~~~~~~~~~~~~~~ -../trionan.c:194:1: warning: ‘trio_is_special_quantity’ defined but not used [-Wunused-function] - 194 | trio_is_special_quantity - | ^~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xpointer.c -../xpointer.c: In function ‘xmlXPtrNewRangeNodePoint__internal_alias’: -../xpointer.c:451:21: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘enum ’ [-Wenum-compare] - 451 | if (start->type != XPATH_POINT) - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5E.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5E.c:52: -In function ‘strncpy’, - inlined from ‘H5E_get_class_name’ at ../H5E.c:646:8, - inlined from ‘H5Eget_class_name’ at ../H5E.c:610:21: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5E.c:52: -../H5E.c: In function ‘H5Eget_class_name’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5E.c:642:20: note: in expansion of macro ‘HDstrlen’ - 642 | len = (ssize_t)HDstrlen(cls->cls_name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../xmlstring.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Edeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Eint.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Eint.c:35: -In function ‘strncpy’, - inlined from ‘H5E_get_msg’ at ../H5Eint.c:143:8: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Eint.c:35: -../H5Eint.c: In function ‘H5E_get_msg’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Eint.c:139:20: note: in expansion of macro ‘HDstrlen’ - 139 | len = (ssize_t)HDstrlen(msg->msg); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPIC -DNOLIBTOOL -D_REENTRANT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nanohttp_stream.c -../nanohttp_stream.c: In function ‘xmlParseJpegHeader’: -../nanohttp_stream.c:628:40: warning: pointer targets in passing argument 1 of ‘xmlStrncmp__internal_alias’ differ in signedness [-Wpointer-sign] - 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { - | ~~~~^~~~~~~~~~~~~~ - | | - | char * -In file included from ../libxml.h:106, - from ../nanohttp_stream.c:16: -../elfgcchack.h:11051:30: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘char *’ -11051 | extern __typeof (xmlStrncmp) xmlStrncmp__internal_alias __attribute((visibility("hidden"))); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../nanohttp_stream.c:628:56: warning: pointer targets in passing argument 2 of ‘xmlStrncmp__internal_alias’ differ in signedness [-Wpointer-sign] - 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { - | ^~~~~~~~~~~~ - | | - | const char * -In file included from ../libxml.h:106, - from ../nanohttp_stream.c:16: -../elfgcchack.h:11051:30: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘const char *’ -11051 | extern __typeof (xmlStrncmp) xmlStrncmp__internal_alias __attribute((visibility("hidden"))); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../nanohttp_stream.c: In function ‘xmlNanoHTTPScanAnswer’: -../elfgcchack.h:11072:19: warning: pointer targets in initialization of ‘const char *’ from ‘const xmlChar *’ {aka ‘const unsigned char *’} differ in signedness [-Wpointer-sign] -11072 | #define xmlStrstr xmlStrstr__internal_alias - | ^~~~~~~~~~~~~~~~~~~~~~~~~ -../nanohttp_stream.c:979:30: note: in expansion of macro ‘xmlStrstr’ - 979 | const char* boundaryName = xmlStrstr(BAD_CAST ctxt->contentType, BAD_CAST "boundary"); - | ^~~~~~~~~ -../nanohttp_stream.c:981:17: warning: pointer targets in assignment from ‘const xmlChar *’ {aka ‘const unsigned char *’} to ‘const char *’ differ in signedness [-Wpointer-sign] - 981 | boundaryName = xmlStrstr(BAD_CAST boundaryName, BAD_CAST "="); - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -g++ -o libxml2.so -shared -fPIC -Wl,-hlibxml2.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -/usr/bin/ar -rc libxml2.a buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -/usr/bin/ranlib libxml2.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -/usr/bin/ar -rc libnanohttp_stream.a nanohttp_stream.o buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -/usr/bin/ranlib libnanohttp_stream.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -g++ -o libnanohttp_stream.so -shared -fPIC -Wl,-hlibnanohttp_stream.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 nanohttp_stream.o buf.o c14n.o catalog.o chvalid.o debugXML.o dict.o DOCBparser.o encoding.o entities.o error.o globals.o hash.o HTMLparser.o HTMLtree.o legacy.o list.o nanoftp.o nanohttp.o parser.o parserInternals.o pattern.o relaxng.o SAX2.o SAX.o schematron.o threads.o tree.o uri.o valid.o xinclude.o xlink.o xmlIO.o xmlmemory.o xmlreader.o xmlregexp.o xmlmodule.o xmlsave.o xmlschemas.o xmlschemastypes.o xmlunicode.o xmlwriter.o xpath.o xpointer.o xmlstring.o -lxml2 -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp_stream.d -MT nanohttp_stream.obj ../nanohttp_stream.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlstring.d -MT xmlstring.obj ../xmlstring.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpointer.d -MT xpointer.obj ../xpointer.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xpath.d -MT xpath.obj ../xpath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlwriter.d -MT xmlwriter.obj ../xmlwriter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlunicode.d -MT xmlunicode.obj ../xmlunicode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemastypes.d -MT xmlschemastypes.obj ../xmlschemastypes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlschemas.d -MT xmlschemas.obj ../xmlschemas.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlsave.d -MT xmlsave.obj ../xmlsave.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmodule.d -MT xmlmodule.obj ../xmlmodule.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlregexp.d -MT xmlregexp.obj ../xmlregexp.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlreader.d -MT xmlreader.obj ../xmlreader.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlmemory.d -MT xmlmemory.obj ../xmlmemory.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAsblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xmlIO.d -MT xmlIO.obj ../xmlIO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xlink.d -MT xlink.obj ../xlink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF xinclude.d -MT xinclude.obj ../xinclude.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF valid.d -MT valid.obj ../valid.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF uri.d -MT uri.obj ../uri.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF tree.d -MT tree.obj ../tree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5EAtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF threads.d -MT threads.obj ../threads.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF schematron.d -MT schematron.obj ../schematron.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX.d -MT SAX.obj ../SAX.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF SAX2.d -MT SAX2.obj ../SAX2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF relaxng.d -MT relaxng.obj ../relaxng.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pattern.d -MT pattern.obj ../pattern.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parserInternals.d -MT parserInternals.obj ../parserInternals.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parser.d -MT parser.obj ../parser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5F.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5F.c:24: -In function ‘strncpy’, - inlined from ‘H5Fget_name’ at ../H5F.c:1311:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5F.c:24: -../H5F.c: In function ‘H5Fget_name’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5F.c:1308:11: note: in expansion of macro ‘HDstrlen’ - 1308 | len = HDstrlen(H5F_OPEN_NAME(f)); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanohttp.d -MT nanohttp.obj ../nanohttp.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Faccum.c -../H5Faccum.c: In function ‘H5F__accum_read’: -../H5Faccum.c:129:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 129 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5Faccum.c:130:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 130 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -../H5Faccum.c: In function ‘H5F__accum_write’: -../H5Faccum.c:442:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 442 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5Faccum.c:443:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 443 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -../H5Faccum.c: In function ‘H5F__accum_free’: -../H5Faccum.c:877:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 877 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5Faccum.c:878:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 878 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -../H5Faccum.c: In function ‘H5F__accum_flush’: -../H5Faccum.c:1045:29: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1045 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5Faccum.c:1046:28: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1046 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fcwfs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nanoftp.d -MT nanoftp.obj ../nanoftp.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF list.d -MT list.obj ../list.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF legacy.d -MT legacy.obj ../legacy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLtree.d -MT HTMLtree.obj ../HTMLtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF HTMLparser.d -MT HTMLparser.obj ../HTMLparser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF hash.d -MT hash.obj ../hash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF globals.d -MT globals.obj ../globals.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF error.d -MT error.obj ../error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF entities.d -MT entities.obj ../entities.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF encoding.d -MT encoding.obj ../encoding.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF DOCBparser.d -MT DOCBparser.obj ../DOCBparser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dict.d -MT dict.obj ../dict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF debugXML.d -MT debugXML.obj ../debugXML.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF chvalid.d -MT chvalid.obj ../chvalid.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fefc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF catalog.d -MT catalog.obj ../catalog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF c14n.d -MT c14n.obj ../c14n.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ffake.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF buf.d -MT buf.obj ../buf.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -mkdir ../../../include/os/WIN32/libxml -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Circular libxml2.dll.a <- nanohttp_stream.dll dependency dropped. -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fmount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o buf.obj -c ../buf.c -../buf.c: In function ‘xmlBufMemoryError’: -../buf.c:94:5: warning: too many arguments for format [-Wformat-extra-args] - 94 | __xmlSimpleError(XML_FROM_BUFFER, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../buf.c: In function ‘xmlBufOverflowError’: -../buf.c:109:5: warning: too many arguments for format [-Wformat-extra-args] - 109 | __xmlSimpleError(XML_FROM_BUFFER, XML_BUF_OVERFLOW, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -In file included from ../buf.c:30: -../buf.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fsfile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o c14n.obj -c ../c14n.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fsuper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Fsuper_cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ftest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o catalog.obj -c ../catalog.c -In file included from ../catalog.c:38: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o chvalid.obj -c ../chvalid.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o debugXML.obj -c ../debugXML.c -In file included from ../debugXML.c:24: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dict.obj -c ../dict.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FAtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o DOCBparser.obj -c ../DOCBparser.c -In file included from ../os/default/libxml/DOCBparser.h:18, - from ../DOCBparser.c:18: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o encoding.obj -c ../encoding.c -../encoding.c: In function ‘xmlEncodingErrMemory’: -../encoding.c:86:5: warning: too many arguments for format [-Wformat-extra-args] - 86 | __xmlSimpleError(XML_FROM_I18N, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../encoding.c: In function ‘xmlCharEncCloseFunc’: -../encoding.c:2856:12: warning: variable ‘handler_in_list’ set but not used [-Wunused-but-set-variable] - 2856 | int i, handler_in_list = 0; - | ^~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDcore.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o entities.obj -c ../entities.c -../entities.c: In function ‘xmlEntitiesErrMemory’: -../entities.c:76:5: warning: too many arguments for format [-Wformat-extra-args] - 76 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -In file included from ../entities.c:20: -../entities.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDfamily.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o error.obj -c ../error.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o globals.obj -c ../globals.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o hash.obj -c ../hash.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDlog.c -../H5FDlog.c: In function ‘H5FD_log_open’: -../H5FDlog.c:630:95: warning: ‘stat_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDlog.c:630:59: warning: ‘stat_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDlog.c:628:95: warning: ‘open_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDlog.c:628:59: warning: ‘open_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o HTMLparser.obj -c ../HTMLparser.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o HTMLtree.obj -c ../HTMLtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o legacy.obj -c ../legacy.c -In file included from ../legacy.c:19: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o list.obj -c ../list.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDmulti.c -In file included from /usr/include/string.h:495, - from ../H5FDmulti.c:27: -In function ‘strncpy’, - inlined from ‘H5FD_multi_sb_encode’ at ../H5FDmulti.c:697:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDmulti.c: In function ‘H5FD_multi_sb_encode’: -../H5FDmulti.c:696:20: note: length computed here - 696 | size_t n = strlen(file->fa.memb_name[mt]) + 1; - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDsec2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDspace.c -../H5FDspace.c: In function ‘H5FD_extend’: -../H5FDspace.c:104:13: warning: unused variable ‘extra’ [-Wunused-variable] - 104 | hsize_t extra; /* Extra space to allocate, to align request */ - | ^~~~~ -../H5FDspace.c:102:13: warning: unused variable ‘orig_size’ [-Wunused-variable] - 102 | hsize_t orig_size = size; /* Original allocation size */ - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDstdio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FDtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nanoftp.obj -c ../nanoftp.c -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:45: warning: "EINPROGRESS" redefined - 45 | #define EINPROGRESS WSAEINPROGRESS - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:158: note: this is the location of the previous definition - 158 | #define EINPROGRESS 112 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:46: warning: "EALREADY" redefined - 46 | #define EALREADY WSAEALREADY - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:106: note: this is the location of the previous definition - 106 | #define EALREADY 103 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:47: warning: "ENOTSOCK" redefined - 47 | #define ENOTSOCK WSAENOTSOCK - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:146: note: this is the location of the previous definition - 146 | #define ENOTSOCK 128 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:48: warning: "EDESTADDRREQ" redefined - 48 | #define EDESTADDRREQ WSAEDESTADDRREQ - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:118: note: this is the location of the previous definition - 118 | #define EDESTADDRREQ 109 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:49: warning: "EMSGSIZE" redefined - 49 | #define EMSGSIZE WSAEMSGSIZE - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:126: note: this is the location of the previous definition - 126 | #define EMSGSIZE 115 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:50: warning: "EPROTOTYPE" redefined - 50 | #define EPROTOTYPE WSAEPROTOTYPE - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:231: note: this is the location of the previous definition - 231 | #define EPROTOTYPE 136 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:51: warning: "ENOPROTOOPT" redefined - 51 | #define ENOPROTOOPT WSAENOPROTOOPT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:142: note: this is the location of the previous definition - 142 | #define ENOPROTOOPT 123 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:52: warning: "EPROTONOSUPPORT" redefined - 52 | #define EPROTONOSUPPORT WSAEPROTONOSUPPORT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:178: note: this is the location of the previous definition - 178 | #define EPROTONOSUPPORT 135 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:54: warning: "EOPNOTSUPP" redefined - 54 | #define EOPNOTSUPP WSAEOPNOTSUPP - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:162: note: this is the location of the previous definition - 162 | #define EOPNOTSUPP 130 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:56: warning: "EAFNOSUPPORT" redefined - 56 | #define EAFNOSUPPORT WSAEAFNOSUPPORT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:82: note: this is the location of the previous definition - 82 | #define EAFNOSUPPORT 102 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:57: warning: "EADDRINUSE" redefined - 57 | #define EADDRINUSE WSAEADDRINUSE - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:86: note: this is the location of the previous definition - 86 | #define EADDRINUSE 100 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:58: warning: "EADDRNOTAVAIL" redefined - 58 | #define EADDRNOTAVAIL WSAEADDRNOTAVAIL - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:90: note: this is the location of the previous definition - 90 | #define EADDRNOTAVAIL 101 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:59: warning: "ENETDOWN" redefined - 59 | #define ENETDOWN WSAENETDOWN - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:130: note: this is the location of the previous definition - 130 | #define ENETDOWN 116 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:60: warning: "ENETUNREACH" redefined - 60 | #define ENETUNREACH WSAENETUNREACH - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:138: note: this is the location of the previous definition - 138 | #define ENETUNREACH 118 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:61: warning: "ENETRESET" redefined - 61 | #define ENETRESET WSAENETRESET - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:134: note: this is the location of the previous definition - 134 | #define ENETRESET 117 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:62: warning: "ECONNABORTED" redefined - 62 | #define ECONNABORTED WSAECONNABORTED - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:102: note: this is the location of the previous definition - 102 | #define ECONNABORTED 106 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:63: warning: "ECONNRESET" redefined - 63 | #define ECONNRESET WSAECONNRESET - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:114: note: this is the location of the previous definition - 114 | #define ECONNRESET 108 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:64: warning: "ENOBUFS" redefined - 64 | #define ENOBUFS WSAENOBUFS - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:98: note: this is the location of the previous definition - 98 | #define ENOBUFS 119 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:65: warning: "EISCONN" redefined - 65 | #define EISCONN WSAEISCONN - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:94: note: this is the location of the previous definition - 94 | #define EISCONN 113 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:66: warning: "ENOTCONN" redefined - 66 | #define ENOTCONN WSAENOTCONN - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:150: note: this is the location of the previous definition - 150 | #define ENOTCONN 126 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:68: warning: "ETIMEDOUT" redefined - 68 | #define ETIMEDOUT WSAETIMEDOUT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:223: note: this is the location of the previous definition - 223 | #define ETIMEDOUT 138 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:69: warning: "ECONNREFUSED" redefined - 69 | #define ECONNREFUSED WSAECONNREFUSED - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:110: note: this is the location of the previous definition - 110 | #define ECONNREFUSED 107 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:70: warning: "ELOOP" redefined - 70 | #define ELOOP WSAELOOP - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:227: note: this is the location of the previous definition - 227 | #define ELOOP 114 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -../os/WIN32/wsockcompat.h:72: warning: "EHOSTUNREACH" redefined - 72 | #define EHOSTUNREACH WSAEHOSTUNREACH - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/errno.h:122: note: this is the location of the previous definition - 122 | #define EHOSTUNREACH 110 - | -../nanoftp.c: In function ‘xmlFTPErrMemory’: -../nanoftp.c:176:5: warning: too many arguments for format [-Wformat-extra-args] - 176 | __xmlSimpleError(XML_FROM_FTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../nanoftp.c: In function ‘xmlNanoFTPGetConnection’: -../nanoftp.c:1479:66: warning: pointer targets in passing argument 3 of ‘getsockname’ differ in signedness [-Wpointer-sign] - 1479 | getsockname(ctxt->dataFd, (struct sockaddr *) &dataAddr, &dataAddrLen); - | ^~~~~~~~~~~~ - | | - | unsigned int * -In file included from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/winsock2.h:1009:82: note: expected ‘int *’ but argument is of type ‘unsigned int *’ - 1009 | WINSOCK_API_LINKAGE int WSAAPI getsockname(SOCKET s,struct sockaddr *name,int *namelen); - | ~~~~~^~~~~~~ -../nanoftp.c:1492:66: warning: pointer targets in passing argument 3 of ‘getsockname’ differ in signedness [-Wpointer-sign] - 1492 | getsockname(ctxt->dataFd, (struct sockaddr *) &dataAddr, &dataAddrLen); - | ^~~~~~~~~~~~ - | | - | unsigned int * -In file included from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanoftp.c:20: -/usr/share/mingw-w64/include/winsock2.h:1009:82: note: expected ‘int *’ but argument is of type ‘unsigned int *’ - 1009 | WINSOCK_API_LINKAGE int WSAAPI getsockname(SOCKET s,struct sockaddr *name,int *namelen); - | ~~~~~^~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FScache.c -../H5FScache.c: In function ‘H5FS__cache_sinfo_deserialize’: -../H5FScache.c:1013:17: warning: variable ‘old_tot_space’ set but not used [-Wunused-but-set-variable] - 1013 | hsize_t old_tot_space; /* Total space managed from header */ - | ^~~~~~~~~~~~~ -../H5FScache.c:1012:17: warning: variable ‘old_ghost_sect_count’ set but not used [-Wunused-but-set-variable] - 1012 | hsize_t old_ghost_sect_count; /* Total ghost section count from header */ - | ^~~~~~~~~~~~~~~~~~~~ -../H5FScache.c:1011:17: warning: variable ‘old_serial_sect_count’ set but not used [-Wunused-but-set-variable] - 1011 | hsize_t old_serial_sect_count; /* Total serializable section count from header */ - | ^~~~~~~~~~~~~~~~~~~~~ -../H5FScache.c:1010:17: warning: variable ‘old_tot_sect_count’ set but not used [-Wunused-but-set-variable] - 1010 | hsize_t old_tot_sect_count; /* Total section count from header */ - | ^~~~~~~~~~~~~~~~~~ -../H5FScache.c: In function ‘H5FS__cache_sinfo_image_len’: -../H5FScache.c:1119:19: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] - 1119 | const H5FS_t *fspace; /* Free space header */ - | ^~~~~~ -../H5FScache.c: In function ‘H5FS__cache_sinfo_serialize’: -../H5FScache.c:1249:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] - 1249 | H5FS_t *fspace; /* Free space header */ - | ^~~~~~ -../H5FScache.c: In function ‘H5FS__cache_sinfo_free_icr’: -../H5FScache.c:1396:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] - 1396 | H5FS_t *fspace; /* Free space header */ - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nanohttp.obj -c ../nanohttp.c -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:45: warning: "EINPROGRESS" redefined - 45 | #define EINPROGRESS WSAEINPROGRESS - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:158: note: this is the location of the previous definition - 158 | #define EINPROGRESS 112 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:46: warning: "EALREADY" redefined - 46 | #define EALREADY WSAEALREADY - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:106: note: this is the location of the previous definition - 106 | #define EALREADY 103 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:47: warning: "ENOTSOCK" redefined - 47 | #define ENOTSOCK WSAENOTSOCK - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:146: note: this is the location of the previous definition - 146 | #define ENOTSOCK 128 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:48: warning: "EDESTADDRREQ" redefined - 48 | #define EDESTADDRREQ WSAEDESTADDRREQ - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:118: note: this is the location of the previous definition - 118 | #define EDESTADDRREQ 109 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:49: warning: "EMSGSIZE" redefined - 49 | #define EMSGSIZE WSAEMSGSIZE - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:126: note: this is the location of the previous definition - 126 | #define EMSGSIZE 115 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:50: warning: "EPROTOTYPE" redefined - 50 | #define EPROTOTYPE WSAEPROTOTYPE - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:231: note: this is the location of the previous definition - 231 | #define EPROTOTYPE 136 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:51: warning: "ENOPROTOOPT" redefined - 51 | #define ENOPROTOOPT WSAENOPROTOOPT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:142: note: this is the location of the previous definition - 142 | #define ENOPROTOOPT 123 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:52: warning: "EPROTONOSUPPORT" redefined - 52 | #define EPROTONOSUPPORT WSAEPROTONOSUPPORT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:178: note: this is the location of the previous definition - 178 | #define EPROTONOSUPPORT 135 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:54: warning: "EOPNOTSUPP" redefined - 54 | #define EOPNOTSUPP WSAEOPNOTSUPP - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:162: note: this is the location of the previous definition - 162 | #define EOPNOTSUPP 130 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:56: warning: "EAFNOSUPPORT" redefined - 56 | #define EAFNOSUPPORT WSAEAFNOSUPPORT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:82: note: this is the location of the previous definition - 82 | #define EAFNOSUPPORT 102 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:57: warning: "EADDRINUSE" redefined - 57 | #define EADDRINUSE WSAEADDRINUSE - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:86: note: this is the location of the previous definition - 86 | #define EADDRINUSE 100 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:58: warning: "EADDRNOTAVAIL" redefined - 58 | #define EADDRNOTAVAIL WSAEADDRNOTAVAIL - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:90: note: this is the location of the previous definition - 90 | #define EADDRNOTAVAIL 101 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:59: warning: "ENETDOWN" redefined - 59 | #define ENETDOWN WSAENETDOWN - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:130: note: this is the location of the previous definition - 130 | #define ENETDOWN 116 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:60: warning: "ENETUNREACH" redefined - 60 | #define ENETUNREACH WSAENETUNREACH - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:138: note: this is the location of the previous definition - 138 | #define ENETUNREACH 118 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:61: warning: "ENETRESET" redefined - 61 | #define ENETRESET WSAENETRESET - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:134: note: this is the location of the previous definition - 134 | #define ENETRESET 117 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:62: warning: "ECONNABORTED" redefined - 62 | #define ECONNABORTED WSAECONNABORTED - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:102: note: this is the location of the previous definition - 102 | #define ECONNABORTED 106 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:63: warning: "ECONNRESET" redefined - 63 | #define ECONNRESET WSAECONNRESET - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:114: note: this is the location of the previous definition - 114 | #define ECONNRESET 108 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:64: warning: "ENOBUFS" redefined - 64 | #define ENOBUFS WSAENOBUFS - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:98: note: this is the location of the previous definition - 98 | #define ENOBUFS 119 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:65: warning: "EISCONN" redefined - 65 | #define EISCONN WSAEISCONN - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:94: note: this is the location of the previous definition - 94 | #define EISCONN 113 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:66: warning: "ENOTCONN" redefined - 66 | #define ENOTCONN WSAENOTCONN - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:150: note: this is the location of the previous definition - 150 | #define ENOTCONN 126 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:68: warning: "ETIMEDOUT" redefined - 68 | #define ETIMEDOUT WSAETIMEDOUT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:223: note: this is the location of the previous definition - 223 | #define ETIMEDOUT 138 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:69: warning: "ECONNREFUSED" redefined - 69 | #define ECONNREFUSED WSAECONNREFUSED - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:110: note: this is the location of the previous definition - 110 | #define ECONNREFUSED 107 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:70: warning: "ELOOP" redefined - 70 | #define ELOOP WSAELOOP - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:227: note: this is the location of the previous definition - 227 | #define ELOOP 114 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -../os/WIN32/wsockcompat.h:72: warning: "EHOSTUNREACH" redefined - 72 | #define EHOSTUNREACH WSAEHOSTUNREACH - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/errno.h:122: note: this is the location of the previous definition - 122 | #define EHOSTUNREACH 110 - | -../nanohttp.c: In function ‘xmlHTTPErrMemory’: -../nanohttp.c:177:5: warning: too many arguments for format [-Wformat-extra-args] - 177 | __xmlSimpleError(XML_FROM_HTTP, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../nanohttp.c: In function ‘xmlNanoHTTPConnectAttempt’: -../nanohttp.c:1002:67: warning: pointer targets in passing argument 5 of ‘getsockopt’ differ in signedness [-Wpointer-sign] - 1002 | if (getsockopt(s, SOL_SOCKET, SO_ERROR, (char *) &status, &len) < - | ^~~~ - | | - | unsigned int * -In file included from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp.c:16: -/usr/share/mingw-w64/include/winsock2.h:1010:94: note: expected ‘int *’ but argument is of type ‘unsigned int *’ - 1010 | WINSOCK_API_LINKAGE int WSAAPI getsockopt(SOCKET s,int level,int optname,char *optval,int *optlen); - | ~~~~~^~~~~~ -../nanohttp.c: In function ‘xmlNanoHTTPConnectHost’: -../nanohttp.c:1050:9: warning: unused variable ‘i’ [-Wunused-variable] - 1050 | int i; - | ^ -../nanohttp.c:1043:20: warning: unused variable ‘ia’ [-Wunused-variable] - 1043 | struct in_addr ia; - | ^~ -../nanohttp.c:1041:21: warning: unused variable ‘h’ [-Wunused-variable] - 1041 | struct hostent *h; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FSstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5FStest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5G.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gcompact.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Gcompact.c:28: -In function ‘strncpy’, - inlined from ‘H5G__compact_get_name_by_idx’ at ../H5Gcompact.c:246:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Gcompact.c:28: -../H5Gcompact.c: In function ‘H5G__compact_get_name_by_idx’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gcompact.c:242:26: note: in expansion of macro ‘HDstrlen’ - 242 | ret_value = (ssize_t)HDstrlen(ltable.lnks[idx].name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gdense.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Gdense.c:35: -In function ‘strncpy’, - inlined from ‘H5G__dense_get_name_by_idx’ at ../H5Gdense.c:1278:13: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Gdense.c:35: -../H5Gdense.c: In function ‘H5G__dense_get_name_by_idx’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gdense.c:1274:30: note: in expansion of macro ‘HDstrlen’ - 1274 | ret_value = (ssize_t)HDstrlen(ltable.lnks[n].name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gent.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Glink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gname.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Gname.c:35: -In function ‘strncat’, - inlined from ‘H5G_build_fullpath’ at ../H5Gname.c:327:5, - inlined from ‘H5G_build_fullpath_refstr_str’ at ../H5Gname.c:367:17: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Gname.c:35: -../H5Gname.c: In function ‘H5G_build_fullpath_refstr_str’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gname.c:316:16: note: in expansion of macro ‘HDstrlen’ - 316 | name_len = HDstrlen(name); - | ^~~~~~~~ -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Gname.c:35: -In function ‘strncat’, - inlined from ‘H5G_name_move_path’ at ../H5Gname.c:771:13, - inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:1028:24, - inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Gname.c:35: -../H5Gname.c: In function ‘H5G_name_replace_cb’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gname.c:717:23: note: in expansion of macro ‘HDstrlen’ - 717 | full_suffix_len = HDstrlen(full_suffix); - | ^~~~~~~~ -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Gname.c:35: -In function ‘strncat’, - inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:1040:17, - inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Gname.c:35: -../H5Gname.c: In function ‘H5G_name_replace_cb’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gname.c:1024:35: note: in expansion of macro ‘HDstrlen’ - 1024 | full_suffix_len = HDstrlen(full_suffix); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gnode.c -../H5Gnode.c: In function ‘H5G_node_remove’: -../H5Gnode.c:790:21: warning: unused variable ‘lt_key’ [-Wunused-variable] - 790 | H5G_node_key_t *lt_key = (H5G_node_key_t *)_lt_key; - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gobj.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o parser.obj -c ../parser.c -../parser.c: In function ‘xmlAddSpecialAttr’: -../parser.c:1327:22: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 1327 | (void *) (long) type); - | ^ -../parser.c: In function ‘xmlCleanSpecialAttrCallback’: -../parser.c:1346:10: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1346 | if (((long) payload) == XML_ATTRIBUTE_CDATA) { - | ^ -../parser.c: In function ‘nameNsPush’: -../parser.c:1858:43: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 1858 | ctxt->pushTab[ctxt->nameNr * 3 + 2] = (void *) (long) nsNr; - | ^ -../parser.c: In function ‘xmlParseAttribute2’: -../parser.c:9262:22: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 9262 | type = (int) (long) xmlHashQLookup2(ctxt->attsSpecial, - | ^ -../parser.c: In function ‘xmlParseTryOrFinish’: -../parser.c:11788:16: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] -11788 | (int) (long) ctxt->pushTab[ctxt->nameNr * 3 - 1], 0); - | ^ -In file included from ../parser.c:51: -../parser.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Goh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Groot.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gstab.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Gstab.c:29: -In function ‘strncpy’, - inlined from ‘H5G__stab_get_name_by_idx’ at ../H5Gstab.c:803:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Gstab.c:29: -../H5Gstab.c: In function ‘H5G__stab_get_name_by_idx’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gstab.c:799:26: note: in expansion of macro ‘HDstrlen’ - 799 | ret_value = (ssize_t)HDstrlen(udata.name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o parserInternals.obj -c ../parserInternals.c -../parserInternals.c: In function ‘xmlNextChar’: -../parserInternals.c:473:9: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 473 | if (c == 0xC0) - | ^~ -../parserInternals.c:475:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 475 | if (cur[1] == 0) { - | ^~ -In file included from ../parserInternals.c:42: -../parserInternals.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Gtraverse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pattern.obj -c ../pattern.c -In file included from ../pattern.c:35: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HF.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFcache.c -../H5HFcache.c: In function ‘H5HF__cache_hdr_serialize’: -../H5HFcache.c:774:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 774 | hdr->f = f; - | ^ -../H5HFcache.c: In function ‘H5HF__cache_iblock_serialize’: -../H5HFcache.c:1361:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1361 | hdr->f = f; - | ^ -../H5HFcache.c: In function ‘H5HF__cache_iblock_notify’: -../H5HFcache.c:1477:18: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] - 1477 | unsigned indir_idx; /* Index in parent's child iblock pointer array */ - | ^~~~~~~~~ -../H5HFcache.c:1476:26: warning: unused variable ‘par_iblock’ [-Wunused-variable] - 1476 | H5HF_indirect_t *par_iblock = iblock->parent; - | ^~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFdtable.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFhuge.c -../H5HFhuge.c: In function ‘H5HF_huge_write’: -../H5HFhuge.c:890:8: warning: ‘obj_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 890 | if(H5F_block_write(hdr->f, H5FD_MEM_FHEAP_HUGE_OBJ, obj_addr, obj_size, H5AC_rawdata_dxpl_id, obj) < 0) - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o relaxng.obj -c ../relaxng.c -../relaxng.c: In function ‘xmlRelaxNGComputeInterleaves’: -../relaxng.c:4407:44: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 4407 | (void *) (long) (i + 1)); - | ^ -../relaxng.c:4415:48: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 4415 | (void *) (long) (i + 1)); - | ^ -../relaxng.c:4419:48: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 4419 | (void *) (long) (i + 1)); - | ^ -../relaxng.c:4426:48: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 4426 | (void *) (long) (i + 1)); - | ^ -../relaxng.c:4430:48: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 4430 | (void *) (long) (i + 1)); - | ^ -../relaxng.c: In function ‘xmlRelaxNGValidateInterleave’: -../relaxng.c:9390:22: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 9390 | i = ((long) tmp) - 1; - | ^ -In file included from ../relaxng.c:25: -../relaxng.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFiter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFman.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o SAX2.obj -c ../SAX2.c -../SAX2.c: In function ‘xmlSAX2TextNode’: -../SAX2.c:1911:19: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 1911 | ret->psvi = (void *) (long) ctxt->input->line; - | ^ -In file included from ../SAX2.c:18: -../SAX2.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o SAX.obj -c ../SAX.c -In file included from ../SAX.c:18: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o schematron.obj -c ../schematron.c -../schematron.c: In function ‘xmlSchematronPErrMemory’: -../schematron.c:234:22: warning: too many arguments for format [-Wformat-extra-args] - 234 | extra); - | ^~~~~ -../schematron.c: In function ‘xmlSchematronVErrMemory’: -../schematron.c:284:22: warning: too many arguments for format [-Wformat-extra-args] - 284 | extra); - | ^~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFsection.c -../H5HFsection.c: In function ‘H5HF_sect_single_valid’: -../H5HFsection.c:1191:20: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] - 1191 | herr_t status; /* Generic status value */ - | ^~~~~~ -../H5HFsection.c:1189:20: warning: variable ‘dblock_overhead’ set but not used [-Wunused-but-set-variable] - 1189 | size_t dblock_overhead; /* Direct block's overhead */ - | ^~~~~~~~~~~~~~~ -../H5HFsection.c: In function ‘H5HF_sect_row_valid’: -../H5HFsection.c:2000:14: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] - 2000 | unsigned indir_idx; /* Index of row in underlying indirect section's row array */ - | ^~~~~~~~~ -../H5HFsection.c: In function ‘H5HF_sect_indirect_valid’: -../H5HFsection.c:4107:44: warning: variable ‘tmp_row_sect2’ set but not used [-Wunused-but-set-variable] - 4107 | const H5HF_free_section_t *tmp_row_sect2; /* Pointer to row section */ - | ^~~~~~~~~~~~~ -../H5HFsection.c:4099:40: warning: variable ‘tmp_row_sect’ set but not used [-Wunused-but-set-variable] - 4099 | const H5HF_free_section_t *tmp_row_sect; /* Pointer to row section */ - | ^~~~~~~~~~~~ -../H5HFsection.c:4134:44: warning: variable ‘tmp_child_sect2’ set but not used [-Wunused-but-set-variable] - 4134 | const H5HF_free_section_t *tmp_child_sect2; /* Pointer to child indirect section */ - | ^~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HFtiny.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o threads.obj -c ../threads.c -../threads.c: In function ‘__xmlGlobalInitMutexLock’: -../threads.c:461:43: warning: passing argument 1 of ‘_InterlockedCompareExchangePointer’ from incompatible pointer type [-Wincompatible-pointer-types] - 461 | InterlockedCompareExchangePointer(&global_init_lock, cs, NULL); - | ^~~~~~~~~~~~~~~~~ - | | - | struct _RTL_CRITICAL_SECTION * volatile* -In file included from /usr/share/mingw-w64/include/winnt.h:27, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from ../threads.c:30: -/usr/share/mingw-w64/include/psdk_inc/intrin-impl.h:1571:58: note: expected ‘void * volatile*’ but argument is of type ‘struct _RTL_CRITICAL_SECTION * volatile*’ - 1571 | void *_InterlockedCompareExchangePointer(void *volatile *Destination, void *ExChange, void *Comperand) { - | ~~~~~~~~~~~~~~~~^~~~~~~~~~~ -../threads.c: In function ‘xmlOnceInit’: -../threads.c:962:34: warning: pointer targets in passing argument 1 of ‘_InterlockedIncrement’ differ in signedness [-Wpointer-sign] - 962 | if (InterlockedIncrement(&run_once.control) == 1) { - | ^~~~~~~~~~~~~~~~~ - | | - | DWORD * {aka long unsigned int *} -In file included from /usr/share/mingw-w64/include/winnt.h:27, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from ../threads.c:30: -/usr/share/mingw-w64/include/psdk_inc/intrin-impl.h:1505:51: note: expected ‘volatile long int *’ but argument is of type ‘DWORD *’ {aka ‘long unsigned int *’} - 1505 | __LONG32 _InterlockedIncrement(__LONG32 volatile *Addend) { - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HGcache.c -../H5HGcache.c: In function ‘H5HG__cache_heap_get_final_load_size’: -../H5HGcache.c:225:17: warning: ‘*((void *)&heap+280)’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 225 | *actual_len = heap.size; - | ~~~~~~~~~~~~^~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HGdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HGquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLprfx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HLdblk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5HP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5I.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Itest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o tree.obj -c ../tree.c -../tree.c: In function ‘xmlTreeErrMemory’: -../tree.c:74:5: warning: too many arguments for format [-Wformat-extra-args] - 74 | __xmlSimpleError(XML_FROM_TREE, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../tree.c: In function ‘xmlGetLineNoInternal’: -../tree.c:4599:19: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 4599 | result = (long) node->psvi; - | ^ -../tree.c: In function ‘xmlGetNodePath’: -../tree.c:4758:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 4758 | if (tmp->type == XML_COMMENT_NODE) - | ^~ -../tree.c:4760:21: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 4760 | tmp = tmp->next; - | ^~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5L.c -../H5L.c: In function ‘H5L_move_cb’: -../H5L.c:2639:41: warning: passing argument 1 of ‘H5RS_wrap’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 2639 | dst_name_r = H5RS_wrap(udata->dst_name); - | ~~~~~^~~~~~~~~~ -In file included from ../H5Gprivate.h:35, - from ../H5Tprivate.h:28, - from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5L.c:26: -../H5RSprivate.h:47:20: note: expected ‘char *’ but argument is of type ‘const char *’ - 47 | H5_DLL H5RS_str_t *H5RS_wrap(char *s); - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o uri.obj -c ../uri.c -../uri.c: In function ‘xmlCanonicPath’: -../uri.c:2475:14: warning: pointer targets in assignment from ‘xmlChar *’ {aka ‘unsigned char *’} to ‘char *’ differ in signedness [-Wpointer-sign] - 2475 | uri->scheme = xmlStrdup(BAD_CAST "file"); - | ^ -../uri.c:2484:4: warning: pointer targets in assignment from ‘char *’ to ‘xmlChar *’ {aka ‘unsigned char *’} differ in signedness [-Wpointer-sign] - 2484 | p = uri->path + 1; - | ^ -../uri.c:2485:10: warning: pointer targets in passing argument 1 of ‘strncpy’ differ in signedness [-Wpointer-sign] - 2485 | strncpy(p, path, len + 1); - | ^ - | | - | xmlChar * {aka unsigned char *} -In file included from /usr/share/mingw-w64/include/io.h:10, - from ../os/WIN32/config.h:23, - from ../libxml.h:39, - from ../uri.c:12: -/usr/share/mingw-w64/include/string.h:89:9: note: expected ‘char * restrict’ but argument is of type ‘xmlChar *’ {aka ‘unsigned char *’} - 89 | char *strncpy(char * __restrict__ _Dest,const char * __restrict__ _Source,size_t _Count) __MINGW_ATTRIB_DEPRECATED_SEC_WARN; - | ^~~~~~~ -../uri.c:2485:13: warning: pointer targets in passing argument 2 of ‘strncpy’ differ in signedness [-Wpointer-sign] - 2485 | strncpy(p, path, len + 1); - | ^~~~ - | | - | const xmlChar * {aka const unsigned char *} -In file included from /usr/share/mingw-w64/include/io.h:10, - from ../os/WIN32/config.h:23, - from ../libxml.h:39, - from ../uri.c:12: -/usr/share/mingw-w64/include/string.h:89:9: note: expected ‘const char * restrict’ but argument is of type ‘const xmlChar *’ {aka ‘const unsigned char *’} - 89 | char *strncpy(char * __restrict__ _Dest,const char * __restrict__ _Source,size_t _Count) __MINGW_ATTRIB_DEPRECATED_SEC_WARN; - | ^~~~~~~ -../uri.c:2487:12: warning: pointer targets in assignment from ‘xmlChar *’ {aka ‘unsigned char *’} to ‘char *’ differ in signedness [-Wpointer-sign] - 2487 | uri->path = xmlStrdup(path); - | ^ -../uri.c:2492:4: warning: pointer targets in assignment from ‘char *’ to ‘xmlChar *’ {aka ‘unsigned char *’} differ in signedness [-Wpointer-sign] - 2492 | p = uri->path; - | ^ -../uri.c:2393:9: warning: unused variable ‘i’ [-Wunused-variable] - 2393 | int i = 0; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Lexternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MF.c -../H5MF.c: In function ‘H5MF_settle_meta_data_fsm’: -../H5MF.c:3249:17: warning: unused variable ‘fs_stat’ [-Wunused-variable] - 3249 | H5FS_stat_t fs_stat; /* Information for hdr FSM */ - | ^~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MFaggr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MFsection.c -../H5MFsection.c: In function ‘H5MF_sect_split’: -../H5MFsection.c:376:22: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 376 | FUNC_LEAVE_NOAPI((H5FS_section_info_t *)ret_value) - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o valid.obj -c ../valid.c -In file included from ../valid.c:24: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5MPtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xinclude.obj -c ../xinclude.c -In file included from ../xinclude.c:22: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xlink.obj -c ../xlink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5O.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oainfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlIO.obj -c ../xmlIO.c -../xmlIO.c:63: warning: "stat" redefined - 63 | # define stat _stat - | -In file included from ../xmlIO.c:24: -/usr/share/mingw-w64/include/sys/stat.h:279: note: this is the location of the previous definition - 279 | #define stat _stat64 - | -In file included from ../os/default/libxml/nanoftp.h:20, - from ../xmlIO.c:92: -/usr/share/mingw-w64/include/winsock2.h:15:2: warning: #warning Please include winsock2.h before windows.h [-Wcpp] - 15 | #warning Please include winsock2.h before windows.h - | ^~~~~~~ -../xmlIO.c: In function ‘xmlIOErrMemory’: -../xmlIO.c:256:5: warning: too many arguments for format [-Wformat-extra-args] - 256 | __xmlSimpleError(XML_FROM_IO, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -../xmlIO.c: In function ‘xmlFdRead’: -../xmlIO.c:829:22: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 829 | ret = read((int) (long) context, &buffer[0], len); - | ^ -../xmlIO.c: In function ‘xmlFdWrite’: -../xmlIO.c:850:20: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 850 | ret = write((int) (long) context, &buffer[0], len); - | ^ -../xmlIO.c: In function ‘xmlFdClose’: -../xmlIO.c:868:23: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 868 | ret = close((int) (long) context); - | ^ -../xmlIO.c: In function ‘xmlZMemBuffExtend’: -../xmlIO.c:1675:33: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 5 has type ‘size_t’ {aka ‘long long unsigned int’} [-Wformat=] - 1675 | "xmlZMemBuffExtend: %s %lu bytes.\n", - | ~~^ - | | - | long unsigned int - | %I64u - 1676 | "Allocation failure extending output buffer to", - 1677 | new_size ); - | ~~~~~~~~ - | | - | size_t {aka long long unsigned int} -../xmlIO.c: In function ‘xmlParserInputBufferCreateFd’: -../xmlIO.c:3006:24: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 3006 | ret->context = (void *) (long) fd; - | ^ -../xmlIO.c: In function ‘xmlOutputBufferCreateFd’: -../xmlIO.c:3112:24: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 3112 | ret->context = (void *) (long) fd; - | ^ -In file included from ../xmlIO.c:88: -../xmlIO.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oalloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlmemory.obj -c ../xmlmemory.c -../xmlmemory.c: In function ‘xmlMemFree’: -../xmlmemory.c:476:33: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 476 | "xmlMemFree(%lX) error\n", (unsigned long) ptr); - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oattr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oattribute.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Obogus.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Obtreek.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlreader.obj -c ../xmlreader.c -In file included from ../xmlreader.c:34: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocache_image.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ochunk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocont.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ocopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Odbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Odrvinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlregexp.obj -c ../xmlregexp.c -In file included from ../xmlregexp.c:31: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Odtype.c -../H5Odtype.c: In function ‘H5O_dtype_copy’: -../H5Odtype.c:1192:32: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1192 | if(NULL == (dst = H5T_copy(src, H5T_COPY_ALL))) - | ^~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Odtype.c:19: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Odtype.c: In function ‘H5O_dtype_pre_copy_file’: -../H5Odtype.c:1541:49: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1541 | if(NULL == (udata->src_dtype = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) - | ^~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Odtype.c:19: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlmodule.obj -c ../xmlmodule.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oefl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ofill.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oflush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlsave.obj -c ../xmlsave.c -../xmlsave.c: In function ‘xmlSaveErrMemory’: -../xmlsave.c:111:5: warning: too many arguments for format [-Wformat-extra-args] - 111 | __xmlSimpleError(XML_FROM_OUTPUT, XML_ERR_NO_MEMORY, NULL, NULL, extra); - | ^~~~~~~~~~~~~~~~ -In file included from ../xmlsave.c:14: -../xmlsave.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ofsinfo.c -../H5Ofsinfo.c: In function ‘H5O_fsinfo_decode’: -../H5Ofsinfo.c:132:35: warning: ‘threshold’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 132 | fsinfo->threshold = threshold; - | ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oginfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Olayout.c -../H5Olayout.c: In function ‘H5O__layout_decode’: -../H5Olayout.c:412:90: warning: ‘tmp_hsize’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 412 | if(NULL == (mesg->storage.u.virt.list = (H5O_storage_virtual_ent_t *)H5MM_calloc((size_t)tmp_hsize * sizeof(H5O_storage_virtual_ent_t)))) - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Olinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Olink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Omessage.c -../H5Omessage.c: In function ‘H5O_msg_reset_share’: -../H5Omessage.c:1691:28: warning: variable ‘type’ set but not used [-Wunused-but-set-variable] - 1691 | const H5O_msg_class_t *type; /* Actual H5O class type for the ID */ - | ^~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Omtime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oname.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Onull.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Opline.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Orefcount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Osdspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oshared.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Oshmesg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ostab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Otest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ounknown.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5P.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pacpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdapl.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Pdapl.c:35: -In function ‘strncpy’, - inlined from ‘H5Pget_efile_prefix’ at ../H5Pdapl.c:1280:13: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Pdapl.c:35: -../H5Pdapl.c: In function ‘H5Pget_efile_prefix’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Pdapl.c:1278:15: note: in expansion of macro ‘HDstrlen’ - 1278 | len = HDstrlen(my_prefix); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdcpl.c -../H5Pdcpl.c: In function ‘H5P_get_fill_value’: -../H5Pdcpl.c:3329:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 3329 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(type, H5T_COPY_TRANSIENT), FALSE)) < 0) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Pdcpl.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pdxpl.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Pdxpl.c:35: -In function ‘strncpy’, - inlined from ‘H5Pget_data_transform’ at ../H5Pdxpl.c:1129:2: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Pdxpl.c:35: -../H5Pdxpl.c: In function ‘H5Pget_data_transform’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Pdxpl.c:1127:11: note: in expansion of macro ‘HDstrlen’ - 1127 | len = HDstrlen(pexp); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pencdec.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Pencdec.c:29: -In function ‘strncpy’, - inlined from ‘H5P__encode_cb’ at ../H5Pencdec.c:351:13, - inlined from ‘H5P__encode_cb’ at ../H5Pencdec.c:332:1: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Pencdec.c:29: -../H5Pencdec.c: In function ‘H5P__encode_cb’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Pencdec.c:349:25: note: in expansion of macro ‘HDstrlen’ - 349 | prop_name_len = HDstrlen(prop->name) + 1; - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlschemas.obj -c ../xmlschemas.c -../xmlschemas.c: In function ‘xmlSchemaPSimpleErr’: -../xmlschemas.c:1861:22: warning: too many arguments for format [-Wformat-extra-args] - 1861 | msg); - | ^~~ -../xmlschemas.c: In function ‘xmlSchemaPErrMemory’: -../xmlschemas.c:1878:22: warning: too many arguments for format [-Wformat-extra-args] - 1878 | extra); - | ^~~~~ -../xmlschemas.c: In function ‘xmlSchemaVErrMemory’: -../xmlschemas.c:2002:22: warning: too many arguments for format [-Wformat-extra-args] - 2002 | extra); - | ^~~~~ -../xmlschemas.c: In function ‘xmlSchemaPResCompAttrErr’: -../xmlschemas.c:2834:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 2834 | if (refTypeStr == NULL) - | ^~ -../xmlschemas.c:2836:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 2836 | xmlSchemaPErrExt(ctxt, ownerElem, error, - | ^~~~~~~~~~~~~~~~ -../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeQNameValue’: -../xmlschemas.c:5824:6: warning: too many arguments for format [-Wformat-extra-args] - 5824 | NULL, value, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlGetMaxOccurs’: -../xmlschemas.c:6047:3: warning: too many arguments for format [-Wformat-extra-args] - 6047 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:6061:6: warning: too many arguments for format [-Wformat-extra-args] - 6061 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:6078:6: warning: too many arguments for format [-Wformat-extra-args] - 6078 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c: In function ‘xmlGetMinOccurs’: -../xmlschemas.c:6113:6: warning: too many arguments for format [-Wformat-extra-args] - 6113 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:6130:6: warning: too many arguments for format [-Wformat-extra-args] - 6130 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c: In function ‘xmlSchemaPGetBoolNodeValue’: -../xmlschemas.c:6175:6: warning: too many arguments for format [-Wformat-extra-args] - 6175 | NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlGetBooleanProp’: -../xmlschemas.c:6223:6: warning: too many arguments for format [-Wformat-extra-args] - 6223 | NULL, val, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaPValAttrNodeValue’: -../xmlschemas.c:6328:6: warning: too many arguments for format [-Wformat-extra-args] - 6328 | type, NULL, value, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaParseWildcardNs’: -../xmlschemas.c:6763:6: warning: too many arguments for format [-Wformat-extra-args] - 6763 | NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c:6801:7: warning: too many arguments for format [-Wformat-extra-args] - 6801 | nsItem, NULL, NULL, NULL); - | ^~~~~~ -../xmlschemas.c: In function ‘xmlSchemaParseLocalAttribute’: -../xmlschemas.c:7188:8: warning: too many arguments for format [-Wformat-extra-args] - 7188 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:7208:4: warning: too many arguments for format [-Wformat-extra-args] - 7208 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:7366:2: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] - 7366 | if (defValue != NULL) - | ^~ -../xmlschemas.c:7368:6: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ - 7368 | if (defValueType == WXS_ATTR_DEF_VAL_FIXED) - | ^~ -../xmlschemas.c: In function ‘xmlSchemaParseElement’: -../xmlschemas.c:8629:4: warning: too many arguments for format [-Wformat-extra-args] - 8629 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:8708:4: warning: too many arguments for format [-Wformat-extra-args] - 8708 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:8738:7: warning: too many arguments for format [-Wformat-extra-args] - 8738 | NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaParseSimpleType’: -../xmlschemas.c:9294:7: warning: too many arguments for format [-Wformat-extra-args] - 9294 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c: In function ‘xmlSchemaParseSchemaElement’: -../xmlschemas.c:9693:3: warning: too many arguments for format [-Wformat-extra-args] - 9693 | "(qualified | unqualified)", val, NULL, NULL, NULL); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -../xmlschemas.c:9706:3: warning: too many arguments for format [-Wformat-extra-args] - 9706 | "(qualified | unqualified)", val, NULL, NULL, NULL); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -../xmlschemas.c:9724:3: warning: too many arguments for format [-Wformat-extra-args] - 9724 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c:9740:3: warning: too many arguments for format [-Wformat-extra-args] - 9740 | val, NULL, NULL, NULL); - | ^~~ -../xmlschemas.c: In function ‘xmlSchemaParseImport’: -../xmlschemas.c:10763:6: warning: too many arguments for format [-Wformat-extra-args] -10763 | NULL, namespaceName, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c:10774:6: warning: too many arguments for format [-Wformat-extra-args] -10774 | NULL, schemaLocation, NULL, NULL, NULL); - | ^~~~ -../xmlschemas.c: In function ‘xmlSchemaParseComplexType’: -../xmlschemas.c:12233:8: warning: too many arguments for format [-Wformat-extra-args] -12233 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c:12251:8: warning: too many arguments for format [-Wformat-extra-args] -12251 | attrValue, NULL, NULL, NULL); - | ^~~~~~~~~ -../xmlschemas.c: In function ‘xmlSchemaValidateFacets’: -../xmlschemas.c:24253:3: warning: too many arguments for format [-Wformat-extra-args] -24253 | value, len, type, facetLink->facet, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c:24289:3: warning: too many arguments for format [-Wformat-extra-args] -24289 | value, length, type, facetLink->facet, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c:24341:7: warning: too many arguments for format [-Wformat-extra-args] -24341 | value, 0, type, NULL, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c:24386:4: warning: too many arguments for format [-Wformat-extra-args] -24386 | value, 0, type, facet, NULL, NULL, NULL); - | ^~~~~ -../xmlschemas.c: In function ‘xmlSchemaSetValidStructuredErrors’: -../xmlschemas.c:27790:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] -27790 | if (ctxt == NULL) - | ^~ -../xmlschemas.c:27792:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ -27792 | ctxt->serror = serror; - | ^~~~ -In file included from ../xmlschemas.c:55: -../xmlschemas.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pfapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pfcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pfmpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pgcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlschemastypes.obj -c ../xmlschemastypes.c -../xmlschemastypes.c: In function ‘xmlSchemaTypeErrMemory’: -../xmlschemastypes.c:204:5: warning: too many arguments for format [-Wformat-extra-args] - 204 | __xmlSimpleError(XML_FROM_DATATYPE, XML_ERR_NO_MEMORY, node, NULL, extra); - | ^~~~~~~~~~~~~~~~ -In file included from ../xmlschemastypes.c:18: -../xmlschemastypes.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlunicode.obj -c ../xmlunicode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pint.c -../H5Pint.c: In function ‘H5P__iterate_pclass_cb’: -../H5Pint.c:4066:11: warning: unused variable ‘key’ [-Wunused-variable] - 4066 | char *key = (char *)_key; /* Pointer to the property's name */ - | ^~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlwriter.obj -c ../xmlwriter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Plapl.c -../H5Plapl.c: In function ‘H5P__lacc_elink_fapl_cmp’: -../H5Plapl.c:570:16: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] - 570 | herr_t status; - | ^~~~~~ -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5Plapl.c:35: -In function ‘strncpy’, - inlined from ‘H5Pget_elink_prefix’ at ../H5Plapl.c:1062:13: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5Plapl.c:35: -../H5Plapl.c: In function ‘H5Pget_elink_prefix’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Plapl.c:1060:15: note: in expansion of macro ‘HDstrlen’ - 1060 | len = HDstrlen(my_prefix); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Plcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pocpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pocpypl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Pstrcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ptest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5PB.c -../H5PB.c: In function ‘H5PB_dest’: -../H5PB.c:487:7: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 487 | f = fio_info->f; - | ^ -../H5PB.c: In function ‘H5PB_read’: -../H5PB.c:793:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 793 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5PB.c:794:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 794 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -../H5PB.c: In function ‘H5PB_write’: -../H5PB.c:1100:25: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1100 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5PB.c:1101:24: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1101 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -../H5PB.c: In function ‘H5PB__write_entry’: -../H5PB.c:1525:29: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1525 | fdio_info.meta_dxpl = fio_info->meta_dxpl; - | ^ -../H5PB.c:1526:28: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1526 | fdio_info.raw_dxpl = fio_info->raw_dxpl; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5PL.c -In file included from /usr/include/string.h:495, - from ../H5private.h:59, - from ../H5PL.c:23: -In function ‘strncpy’, - inlined from ‘H5PLget’ at ../H5PL.c:623:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../H5PL.c:23: -../H5PL.c: In function ‘H5PLget’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5PL.c:621:11: note: in expansion of macro ‘HDstrlen’ - 621 | len = HDstrlen(dl_path); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5R.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Rdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5UC.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5RS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5S.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Sall.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Sdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xpath.obj -c ../xpath.c -../xpath.c: In function ‘xmlXPathCmpNodesExt’: -../xpath.c:170:12: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 170 | if ((0 > (long) node1->content) && /* TODO: Would a != 0 suffice here? */ - | ^ -../xpath.c:171:12: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 171 | (0 > (long) node2->content) && - | ^ -../xpath.c:174:14: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 174 | l1 = -((long) node1->content); - | ^ -../xpath.c:175:14: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 175 | l2 = -((long) node2->content); - | ^ -../xpath.c:220:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 220 | (0 <= (long) node1->content)) { - | ^ -../xpath.c:270:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 270 | (0 <= (long) node2->content)) - | ^ -../xpath.c:343:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 343 | (0 > (long) node1->content) && - | ^ -../xpath.c:344:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 344 | (0 > (long) node2->content) && - | ^ -../xpath.c:347:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 347 | l1 = -((long) node1->content); - | ^ -../xpath.c:348:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 348 | l2 = -((long) node2->content); - | ^ -../xpath.c:411:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 411 | (0 > (long) node1->content) && - | ^ -../xpath.c:412:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 412 | (0 > (long) node2->content) && - | ^ -../xpath.c:415:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 415 | l1 = -((long) node1->content); - | ^ -../xpath.c:416:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 416 | l2 = -((long) node2->content); - | ^ -In file included from ../xpath.c:462: -../timsort.h: In function ‘libxml_domnode_tim_sort_resize’: -../timsort.h:326:80: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 3 has type ‘long long unsigned int’ [-Wformat=] - 326 | fprintf(stderr, "Error allocating temporary storage for tim sort: need %lu bytes", sizeof(SORT_TYPE) * new_size); - | ~~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - | | | - | long unsigned int long long unsigned int - | %I64u -../timsort.h:326:80: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 3 has type ‘long long unsigned int’ [-Wformat=] - 326 | fprintf(stderr, "Error allocating temporary storage for tim sort: need %lu bytes", sizeof(SORT_TYPE) * new_size); - | ~~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - | | | - | long unsigned int long long unsigned int - | %I64u -../timsort.h: In function ‘libxml_domnode_tim_sort_collapse’: -../timsort.h:397:19: warning: variable ‘BD’ set but not used [-Wunused-but-set-variable] - 397 | int ABC, BCD, BD, CD; - | ^~ -../xpath.c: In function ‘xmlXPathOrderDocElems’: -../xpath.c:3236:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 3236 | cur->content = (void *) (-(++count)); - | ^ -../xpath.c: In function ‘xmlXPathCmpNodes’: -../xpath.c:3328:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 3328 | (0 > (long) node1->content) && - | ^ -../xpath.c:3329:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 3329 | (0 > (long) node2->content) && - | ^ -../xpath.c:3333:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 3333 | l1 = -((long) node1->content); - | ^ -../xpath.c:3334:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 3334 | l2 = -((long) node2->content); - | ^ -../xpath.c:3391:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 3391 | (0 > (long) node1->content) && - | ^ -../xpath.c:3392:7: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 3392 | (0 > (long) node2->content) && - | ^ -../xpath.c:3396:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 3396 | l1 = -((long) node1->content); - | ^ -../xpath.c:3397:9: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 3397 | l2 = -((long) node2->content); - | ^ -../xpath.c: In function ‘xmlXPathNodeCollectAndTest’: -../xpath.c:12409:28: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘xmlXPathTypeVal’ {aka ‘enum ’} [-Wenum-compare] -12409 | } else if (cur->type == type) { - | ^~ -In file included from ../xpath.c:43: -../xpath.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -In file included from ../xpath.c:476: -../trionan.c:218:1: warning: ‘trio_is_negative’ defined but not used [-Wunused-function] - 218 | trio_is_negative - | ^~~~~~~~~~~~~~~~ -../trionan.c:194:1: warning: ‘trio_is_special_quantity’ defined but not used [-Wunused-function] - 194 | trio_is_special_quantity - | ^~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xpointer.obj -c ../xpointer.c -../xpointer.c: In function ‘xmlXPtrNewRangeNodePoint’: -../xpointer.c:451:21: warning: comparison between ‘xmlElementType’ {aka ‘enum ’} and ‘enum ’ [-Wenum-compare] - 451 | if (start->type != XPATH_POINT) - | ^~ -In file included from ../xpointer.c:31: -../xpointer.c: At top level: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o xmlstring.obj -c ../xmlstring.c -In file included from ../xmlstring.c:22: -../os/default/libxml/parserInternals.h:312:25: warning: array ‘xmlStringText’ assumed to have one element - 312 | XMLPUBVAR const xmlChar xmlStringText[]; - | ^~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:313:25: warning: array ‘xmlStringTextNoenc’ assumed to have one element - 313 | XMLPUBVAR const xmlChar xmlStringTextNoenc[]; - | ^~~~~~~~~~~~~~~~~~ -../os/default/libxml/parserInternals.h:314:25: warning: array ‘xmlStringComment’ assumed to have one element - 314 | XMLPUBVAR const xmlChar xmlStringComment[]; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DPIC -DNOLIBTOOL -DHAVE_ZLIB_H -DWIN32 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nanohttp_stream.obj -c ../nanohttp_stream.c -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:45: warning: "EINPROGRESS" redefined - 45 | #define EINPROGRESS WSAEINPROGRESS - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:158: note: this is the location of the previous definition - 158 | #define EINPROGRESS 112 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:46: warning: "EALREADY" redefined - 46 | #define EALREADY WSAEALREADY - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:106: note: this is the location of the previous definition - 106 | #define EALREADY 103 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:47: warning: "ENOTSOCK" redefined - 47 | #define ENOTSOCK WSAENOTSOCK - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:146: note: this is the location of the previous definition - 146 | #define ENOTSOCK 128 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:48: warning: "EDESTADDRREQ" redefined - 48 | #define EDESTADDRREQ WSAEDESTADDRREQ - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:118: note: this is the location of the previous definition - 118 | #define EDESTADDRREQ 109 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:49: warning: "EMSGSIZE" redefined - 49 | #define EMSGSIZE WSAEMSGSIZE - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:126: note: this is the location of the previous definition - 126 | #define EMSGSIZE 115 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:50: warning: "EPROTOTYPE" redefined - 50 | #define EPROTOTYPE WSAEPROTOTYPE - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:231: note: this is the location of the previous definition - 231 | #define EPROTOTYPE 136 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:51: warning: "ENOPROTOOPT" redefined - 51 | #define ENOPROTOOPT WSAENOPROTOOPT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:142: note: this is the location of the previous definition - 142 | #define ENOPROTOOPT 123 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:52: warning: "EPROTONOSUPPORT" redefined - 52 | #define EPROTONOSUPPORT WSAEPROTONOSUPPORT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:178: note: this is the location of the previous definition - 178 | #define EPROTONOSUPPORT 135 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:54: warning: "EOPNOTSUPP" redefined - 54 | #define EOPNOTSUPP WSAEOPNOTSUPP - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:162: note: this is the location of the previous definition - 162 | #define EOPNOTSUPP 130 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:56: warning: "EAFNOSUPPORT" redefined - 56 | #define EAFNOSUPPORT WSAEAFNOSUPPORT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:82: note: this is the location of the previous definition - 82 | #define EAFNOSUPPORT 102 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:57: warning: "EADDRINUSE" redefined - 57 | #define EADDRINUSE WSAEADDRINUSE - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:86: note: this is the location of the previous definition - 86 | #define EADDRINUSE 100 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:58: warning: "EADDRNOTAVAIL" redefined - 58 | #define EADDRNOTAVAIL WSAEADDRNOTAVAIL - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:90: note: this is the location of the previous definition - 90 | #define EADDRNOTAVAIL 101 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:59: warning: "ENETDOWN" redefined - 59 | #define ENETDOWN WSAENETDOWN - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:130: note: this is the location of the previous definition - 130 | #define ENETDOWN 116 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:60: warning: "ENETUNREACH" redefined - 60 | #define ENETUNREACH WSAENETUNREACH - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:138: note: this is the location of the previous definition - 138 | #define ENETUNREACH 118 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:61: warning: "ENETRESET" redefined - 61 | #define ENETRESET WSAENETRESET - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:134: note: this is the location of the previous definition - 134 | #define ENETRESET 117 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:62: warning: "ECONNABORTED" redefined - 62 | #define ECONNABORTED WSAECONNABORTED - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:102: note: this is the location of the previous definition - 102 | #define ECONNABORTED 106 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:63: warning: "ECONNRESET" redefined - 63 | #define ECONNRESET WSAECONNRESET - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:114: note: this is the location of the previous definition - 114 | #define ECONNRESET 108 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:64: warning: "ENOBUFS" redefined - 64 | #define ENOBUFS WSAENOBUFS - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:98: note: this is the location of the previous definition - 98 | #define ENOBUFS 119 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:65: warning: "EISCONN" redefined - 65 | #define EISCONN WSAEISCONN - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:94: note: this is the location of the previous definition - 94 | #define EISCONN 113 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:66: warning: "ENOTCONN" redefined - 66 | #define ENOTCONN WSAENOTCONN - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:150: note: this is the location of the previous definition - 150 | #define ENOTCONN 126 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:68: warning: "ETIMEDOUT" redefined - 68 | #define ETIMEDOUT WSAETIMEDOUT - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:223: note: this is the location of the previous definition - 223 | #define ETIMEDOUT 138 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:69: warning: "ECONNREFUSED" redefined - 69 | #define ECONNREFUSED WSAECONNREFUSED - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:110: note: this is the location of the previous definition - 110 | #define ECONNREFUSED 107 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:70: warning: "ELOOP" redefined - 70 | #define ELOOP WSAELOOP - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:227: note: this is the location of the previous definition - 227 | #define ELOOP 114 - | -In file included from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -../os/WIN32/wsockcompat.h:72: warning: "EHOSTUNREACH" redefined - 72 | #define EHOSTUNREACH WSAEHOSTUNREACH - | -In file included from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/mm_malloc.h:28, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/xmmintrin.h:34, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/immintrin.h:29, - from /usr/lib/gcc/x86_64-w64-mingw32/9.3-win32/include/x86intrin.h:32, - from /usr/share/mingw-w64/include/winnt.h:1554, - from /usr/share/mingw-w64/include/minwindef.h:163, - from /usr/share/mingw-w64/include/windef.h:8, - from /usr/share/mingw-w64/include/windows.h:69, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/errno.h:122: note: this is the location of the previous definition - 122 | #define EHOSTUNREACH 110 - | -../nanohttp_stream.c: In function ‘xmlParseJpegHeader’: -../nanohttp_stream.c:628:40: warning: pointer targets in passing argument 1 of ‘xmlStrncmp’ differ in signedness [-Wpointer-sign] - 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { - | ~~~~^~~~~~~~~~~~~~ - | | - | char * -In file included from ../libxml.h:12, - from ../nanohttp_stream.c:16: -../os/default/libxml/xmlstring.h:67:58: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘char *’ - 67 | xmlStrncmp (const xmlChar *str1, - | ~~~~~~~~~~~~~~~^~~~ -../nanohttp_stream.c:628:56: warning: pointer targets in passing argument 2 of ‘xmlStrncmp’ differ in signedness [-Wpointer-sign] - 628 | if ((boundaryName) && (xmlStrncmp(ctxt->boundaryName, boundaryName, boundaryNameLen) == 0)) { - | ^~~~~~~~~~~~ - | | - | const char * -In file included from ../libxml.h:12, - from ../nanohttp_stream.c:16: -../os/default/libxml/xmlstring.h:68:57: note: expected ‘const xmlChar *’ {aka ‘const unsigned char *’} but argument is of type ‘const char *’ - 68 | const xmlChar *str2, - | ~~~~~~~~~~~~~~~^~~~ -../nanohttp_stream.c: In function ‘xmlNanoHTTPScanAnswer’: -../nanohttp_stream.c:979:30: warning: pointer targets in initialization of ‘const char *’ from ‘const xmlChar *’ {aka ‘const unsigned char *’} differ in signedness [-Wpointer-sign] - 979 | const char* boundaryName = xmlStrstr(BAD_CAST ctxt->contentType, BAD_CAST "boundary"); - | ^~~~~~~~~ -../nanohttp_stream.c:981:17: warning: pointer targets in assignment from ‘const xmlChar *’ {aka ‘const unsigned char *’} to ‘const char *’ differ in signedness [-Wpointer-sign] - 981 | boundaryName = xmlStrstr(BAD_CAST boundaryName, BAD_CAST "="); - | ^ -../nanohttp_stream.c: In function ‘xmlNanoHTTPConnectAttempt’: -../nanohttp_stream.c:1240:67: warning: pointer targets in passing argument 5 of ‘getsockopt’ differ in signedness [-Wpointer-sign] - 1240 | if (getsockopt(s, SOL_SOCKET, SO_ERROR, (char *) &status, &len) < - | ^~~~ - | | - | unsigned int * -In file included from ../os/WIN32/wsockcompat.h:12, - from ../os/WIN32/config.h:34, - from ../libxml.h:39, - from ../nanohttp_stream.c:16: -/usr/share/mingw-w64/include/winsock2.h:1010:94: note: expected ‘int *’ but argument is of type ‘unsigned int *’ - 1010 | WINSOCK_API_LINKAGE int WSAAPI getsockopt(SOCKET s,int level,int optname,char *optval,int *optlen); - | ~~~~~^~~~~~ -../nanohttp_stream.c: In function ‘xmlNanoHTTPConnectHost’: -../nanohttp_stream.c:1288:9: warning: unused variable ‘i’ [-Wunused-variable] - 1288 | int i; - | ^ -../nanohttp_stream.c:1281:20: warning: unused variable ‘ia’ [-Wunused-variable] - 1281 | struct in_addr ia; - | ^~ -../nanohttp_stream.c:1279:21: warning: unused variable ‘h’ [-Wunused-variable] - 1279 | struct hostent *h; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o xml2.dll -shared -Wl,--out-implib,libxml2.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ buf.obj c14n.obj catalog.obj chvalid.obj debugXML.obj dict.obj DOCBparser.obj encoding.obj entities.obj error.obj globals.obj hash.obj HTMLparser.obj HTMLtree.obj legacy.obj list.obj nanoftp.obj nanohttp.obj parser.obj parserInternals.obj pattern.obj relaxng.obj SAX2.obj SAX.obj schematron.obj threads.obj tree.obj uri.obj valid.obj xinclude.obj xlink.obj xmlIO.obj xmlmemory.obj xmlreader.obj xmlregexp.obj xmlmodule.obj xmlsave.obj xmlschemas.obj xmlschemastypes.obj xmlunicode.obj xmlwriter.obj xpath.obj xpointer.obj xmlstring.obj -lzlib -lws2_32 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o nanohttp_stream.dll -shared -Wl,--out-implib,libnanohttp_stream.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ nanohttp_stream.obj buf.obj c14n.obj catalog.obj chvalid.obj debugXML.obj dict.obj DOCBparser.obj encoding.obj entities.obj error.obj globals.obj hash.obj HTMLparser.obj HTMLtree.obj legacy.obj list.obj nanoftp.obj nanohttp.obj parser.obj parserInternals.obj pattern.obj relaxng.obj SAX2.obj SAX.obj schematron.obj threads.obj tree.obj uri.obj valid.obj xinclude.obj xlink.obj xmlIO.obj xmlmemory.obj xmlreader.obj xmlregexp.obj xmlmodule.obj xmlsave.obj xmlschemas.obj xmlschemastypes.obj xmlunicode.obj xmlwriter.obj xpath.obj xpointer.obj xmlstring.obj -lxml2 -lzlib -lws2_32 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/xml2Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Shyper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Snone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Spoint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Stest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Sselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMmessage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SMtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5ST.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5SL.c -../H5SL.c: In function ‘H5SL_term_package’: -../H5SL.c:655:21: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] - 655 | herr_t ret; - | ^~~ -In file included from ../H5SL.c:64: -../H5SL.c: In function ‘H5SL_search’: -../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 2267 | return(ret_value); \ - | ^ -../H5SL.c:1397:11: note: ‘ret_value’ was declared here - 1397 | void *ret_value; /* Return value */ - | ^~~~~~~~~ -In file included from ../H5SL.c:64: -../H5SL.c: In function ‘H5SL_find’: -../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 2267 | return(ret_value); \ - | ^ -../H5SL.c:1698:18: note: ‘ret_value’ was declared here - 1698 | H5SL_node_t *ret_value; /* Return value */ - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5T.c -../H5T.c: In function ‘H5T_path_find’: -../H5T.c:4499:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 4499 | if(NULL == (path->src = H5T_copy(src, H5T_COPY_ALL))) - | ^~~ -../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) - | ~~~~~~~^~~~~~ -../H5T.c:4501:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 4501 | if(NULL == (path->dst = H5T_copy(dst, H5T_COPY_ALL))) - | ^~~ -../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) - | ~~~~~~~^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tarray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make -C ./GraphicsMagickSrc install -make -C ./bzlib install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' -mkdir -p O.Common -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF randtable.d ../randtable.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huffman.d ../huffman.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompress.d ../decompress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crctable.d ../crctable.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d ../compress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bzlib.d ../bzlib.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tcommit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blocksort.d ../blocksort.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tcompound.c -../H5Tcompound.c: In function ‘H5T__insert’: -../H5Tcompound.c:459:56: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 459 | parent->shared->u.compnd.memb[idx].type = H5T_copy(member, H5T_COPY_ALL); - | ^~~~~~ -In file included from ../H5Tpkg.h:37, - from ../H5Tcompound.c:33: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../blocksort.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../bzlib.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../compress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../crctable.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../decompress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../huffman.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DBZ_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../randtable.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -/usr/bin/ar -rc libbzlib.a blocksort.o bzlib.o compress.o crctable.o decompress.o huffman.o randtable.o -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -/usr/bin/ranlib libbzlib.a -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -g++ -o libbzlib.so -shared -fPIC -Wl,-hlibbzlib.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 blocksort.o bzlib.o compress.o crctable.o decompress.o huffman.o randtable.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ - T_A=windows-x64-mingw install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF randtable.d -MT randtable.obj ../randtable.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF huffman.d -MT huffman.obj ../huffman.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF decompress.d -MT decompress.obj ../decompress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF crctable.d -MT crctable.obj ../crctable.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF compress.d -MT compress.obj ../compress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF bzlib.d -MT bzlib.obj ../bzlib.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blocksort.d -MT blocksort.obj ../blocksort.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blocksort.obj -c ../blocksort.c -In file included from ../bzlib_private.h:33, - from ../blocksort.c:22: -../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export - 85 | # pragma message( "BZIP compiling as DLL export" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o bzlib.obj -c ../bzlib.c -In file included from ../bzlib_private.h:33, - from ../bzlib.c:31: -../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export - 85 | # pragma message( "BZIP compiling as DLL export" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o compress.obj -c ../compress.c -In file included from ../bzlib_private.h:33, - from ../compress.c:29: -../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export - 85 | # pragma message( "BZIP compiling as DLL export" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o crctable.obj -c ../crctable.c -In file included from ../bzlib_private.h:33, - from ../crctable.c:22: -../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export - 85 | # pragma message( "BZIP compiling as DLL export" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o decompress.obj -c ../decompress.c -In file included from ../bzlib_private.h:33, - from ../decompress.c:22: -../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export - 85 | # pragma message( "BZIP compiling as DLL export" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o huffman.obj -c ../huffman.c -In file included from ../bzlib_private.h:33, - from ../huffman.c:22: -../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export - 85 | # pragma message( "BZIP compiling as DLL export" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DBZ_EXPORT -D_VISUALC_ -DWIN64 -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o randtable.obj -c ../randtable.c -In file included from ../bzlib_private.h:33, - from ../randtable.c:22: -../bzlib.h:85:14: note: #pragma message: BZIP compiling as DLL export - 85 | # pragma message( "BZIP compiling as DLL export" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-windres -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include ../bzlib.rc bzlib.coff -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o bzlib.dll -shared -Wl,--out-implib,libbzlib.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ blocksort.obj bzlib.obj compress.obj crctable.obj decompress.obj huffman.obj randtable.obj bzlib.coff -lws2_32 -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/bzlib/O.windows-x64-mingw' -make -C ./lcms install -make -C ./src install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' -perl -C0 /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' -perl -C0 /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' -mkdir -p O.Common -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsxform.d ../cmsxform.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmswtpnt.d ../cmswtpnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsvirt.d ../cmsvirt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmstypes.d ../cmstypes.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssm.d ../cmssm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssamp.d ../cmssamp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsps2.d ../cmsps2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsplugin.d ../cmsplugin.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspcs.d ../cmspcs.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspack.d ../cmspack.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsopt.d ../cmsopt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsnamed.d ../cmsnamed.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmtrx.d ../cmsmtrx.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmd5.d ../cmsmd5.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tconv.c -../H5Tconv.c: In function ‘H5T_conv_struct_free’: -../H5Tconv.c:1876:17: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] - 1876 | int status; - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmslut.d ../cmslut.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio1.d ../cmsio1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio0.d ../cmsio0.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsintrp.d ../cmsintrp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmshalf.d ../cmshalf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tcset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgmt.d ../cmsgmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgamma.d ../cmsgamma.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmserr.d ../cmserr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscnvrt.d ../cmscnvrt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscgats.d ../cmscgats.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscam02.d ../cmscam02.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsalpha.d ../cmsalpha.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsalpha.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tenum.c -../H5Tenum.c: In function ‘H5T__enum_create’: -../H5Tenum.c:110:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 110 | ret_value->shared->parent = H5T_copy(parent, H5T_COPY_ALL); - | ^~~~~~ -In file included from ../H5Tpkg.h:37, - from ../H5Tenum.c:26: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Tenum.c: In function ‘H5T_enum_nameof’: -../H5Tenum.c:411:38: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 411 | if(NULL == (copied_dt = H5T_copy(dt, H5T_COPY_ALL))) - | ^~ -In file included from ../H5Tpkg.h:37, - from ../H5Tenum.c:26: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Tenum.c: In function ‘H5T_enum_valueof’: -../H5Tenum.c:550:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 550 | if (NULL==(copied_dt=H5T_copy(dt, H5T_COPY_ALL))) - | ^~ -In file included from ../H5Tpkg.h:37, - from ../H5Tenum.c:26: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmscam02.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tfields.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tfixed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tfloat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tnative.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmscgats.c -../cmscgats.c: In function ‘ReadReal’: -../cmscgats.c:577:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 577 | else - | ^~~~ -../cmscgats.c:584:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 584 | e = 0; - | ^ -../cmscgats.c: In function ‘ParseFloatNumber’: -../cmscgats.c:654:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 654 | else - | ^~~~ -../cmscgats.c:661:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 661 | e = 0; - | ^ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘GetVal’ at ../cmscgats.c:986:19: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying between 255 and 1023 bytes from a string of length 1023 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘AddToList.constprop’ at ../cmscgats.c:1184:22: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList.constprop’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘AddToList.constprop’ at ../cmscgats.c:1215:22: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList.constprop’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘AddToList’ at ../cmscgats.c:1184:22: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘AddToList’ at ../cmscgats.c:1185:47: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘AddToList’ at ../cmscgats.c:1215:22: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘isabsolutepath’ at ../cmscgats.c:396:5, - inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:419:9, - inlined from ‘InSymbol’ at ../cmscgats.c:920:21: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 3 bytes from a string of length 1023 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:421:9, - inlined from ‘InSymbol’ at ../cmscgats.c:920:21: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 255 bytes from a string of length 1023 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:427:5, - inlined from ‘InSymbol’ at ../cmscgats.c:920:21: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 255 bytes from a string of length 255 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:437:5, - inlined from ‘InSymbol’ at ../cmscgats.c:920:21: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying between 1 and 255 bytes from a string of length 1023 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘SetData’ at ../cmscgats.c:1545:47: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘SetData’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, - inlined from ‘DataFormatSection’ at ../cmscgats.c:1841:18, - inlined from ‘ParseIT8’ at ../cmscgats.c:2061:26: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘ParseIT8’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, - inlined from ‘cmsIT8SetDataFormat’ at ../cmscgats.c:1490:16: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘cmsIT8SetDataFormat’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘SetData’ at ../cmscgats.c:1545:47, - inlined from ‘cmsIT8SetDataRowCol’ at ../cmscgats.c:2569:12: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘cmsIT8SetDataRowCol’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmscgats.c:27: -In function ‘strncpy’, - inlined from ‘AllocString’ at ../cmscgats.c:1111:14, - inlined from ‘SetData’ at ../cmscgats.c:1545:47, - inlined from ‘cmsIT8SetDataRowColDbl’ at ../cmscgats.c:2582:12: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘cmsIT8SetDataRowColDbl’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Toffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Toh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmscnvrt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Topaque.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmserr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Torder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tprecis.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsgamma.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tstrpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tvisit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsgmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmshalf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Tvlen.c -../H5Tvlen.c: In function ‘H5T__vlen_create’: -../H5Tvlen.c:142:47: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 142 | if(NULL == (dt->shared->parent = H5T_copy(base, H5T_COPY_ALL))) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Tvlen.c:23: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5TS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5VM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5WB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsintrp.c -../cmsintrp.c: In function ‘Eval4Inputs’: -../cmsintrp.c:918:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 918 | else - | ^~~~ -../cmsintrp.c:930:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 930 | Rest = c1 * rx + c2 * ry + c3 * rz; - | ^~~~ -../cmsintrp.c:982:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 982 | else - | ^~~~ -../cmsintrp.c:994:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 994 | Rest = c1 * rx + c2 * ry + c3 * rz; - | ^~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Z.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zdeflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zfletcher32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsio0.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsio1.c -../cmsio1.c: In function ‘_cmsReadFloatDevicelinkTag’: -../cmsio1.c:681:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 681 | else - | ^~~~ -../cmsio1.c:688:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 688 | if (PCS == cmsSigLabData) - | ^~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Znbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmslut.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsmd5.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsmtrx.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsnamed.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zscaleoffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsopt.c -../cmsopt.c: In function ‘PatchLUT’: -../cmsopt.c:510:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 510 | else - | ^~~~ -../cmsopt.c:526:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 526 | for (i=0; i < nChannelsOut; i++) - | ^~~ -../cmsopt.c: In function ‘PrelinEval8’: -../cmsopt.c:978:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 978 | else - | ^~~~ -../cmsopt.c:990:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 990 | Rest = c1 * rx + c2 * ry + c3 * rz + 0x8001; - | ^~~~ -../cmsopt.c: In function ‘OptimizeByComputingLinearization’: -../cmsopt.c:1030:26: warning: variable ‘lIsLinear’ set but not used [-Wunused-but-set-variable] - 1030 | cmsBool lIsSuitable, lIsLinear; - | ^~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zshuffle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Zszip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmspack.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmspcs.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsplugin.c -../cmsplugin.c: In function ‘_cmsReadFloat32Number’: -../cmsplugin.c:181:15: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] - 181 | *n = *(cmsFloat32Number*) (void*) &tmp; - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmsplugin.c: In function ‘_cmsWriteFloat32Number’: -../cmsplugin.c:292:12: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] - 292 | tmp = *(cmsUInt32Number*) (void*) &n; - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsps2.c -../cmsps2.c: In function ‘WriteInputMatrixShaper’: -../cmsps2.c:964:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 964 | else - | ^~~~ -../cmsps2.c:986:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 986 | return rc; - | ^~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5Ztrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmssamp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../os/Linux/H5Tinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5lib_settings.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmssm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmstypes.c -../cmstypes.c: In function ‘ReadCLUT’: -../cmstypes.c:2360:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 2360 | else - | ^~~~ -../cmstypes.c:2374:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 2374 | return CLUT; - | ^~~~~~ -../cmstypes.c: In function ‘WriteCLUT’: -../cmstypes.c:2645:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 2645 | else - | ^~~~ -../cmstypes.c:2655:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 2655 | if (!_cmsWriteAlignment(io)) return FALSE; - | ^~ -In file included from /usr/include/string.h:495, - from /usr/include/memory.h:29, - from ../../../../../supportApp/GraphicsMagickSrc/lcms/include/lcms2_plugin.h:53, - from ../lcms2_internal.h:31, - from ../cmstypes.c:27: -In function ‘strncpy’, - inlined from ‘Type_NamedColor_Write’ at ../cmstypes.c:3146:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘Type_NamedColor_Write’ at ../cmstypes.c:3147:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsvirt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmswtpnt.c -../cmswtpnt.c: In function ‘cmsWhitePointFromTemp’: -../cmswtpnt.c:66:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 66 | else - | ^~~~ -../cmswtpnt.c:80:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 80 | y = -3.000*(x*x) + 2.870*x - 0.275; - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../H5detect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -/usr/bin/ar -rc libhdf5.a H5.o H5checksum.o H5dbg.o H5system.o H5timer.o H5trace.o H5A.o H5Abtree2.o H5Adense.o H5Adeprec.o H5Aint.o H5Atest.o H5AC.o H5AClog.o H5ACdbg.o H5ACproxy_entry.o H5B.o H5Bcache.o H5Bdbg.o H5B2.o H5B2cache.o H5B2dbg.o H5B2hdr.o H5B2int.o H5B2internal.o H5B2leaf.o H5B2stat.o H5B2test.o H5C.o H5Cdbg.o H5Cepoch.o H5Cimage.o H5Clog.o H5Cprefetched.o H5Cquery.o H5Ctag.o H5Ctest.o H5CS.o H5D.o H5Dbtree.o H5Dbtree2.o H5Dchunk.o H5Dcompact.o H5Dcontig.o H5Ddbg.o H5Ddeprec.o H5Dearray.o H5Defl.o H5Dfarray.o H5Dfill.o H5Dint.o H5Dio.o H5Dlayout.o H5Dnone.o H5Doh.o H5Dscatgath.o H5Dselect.o H5Dsingle.o H5Dtest.o H5Dvirtual.o H5E.o H5Edeprec.o H5Eint.o H5EA.o H5EAcache.o H5EAdbg.o H5EAdblkpage.o H5EAdblock.o H5EAhdr.o H5EAiblock.o H5EAint.o H5EAsblock.o H5EAstat.o H5EAtest.o H5F.o H5Faccum.o H5Fcwfs.o H5Fdbg.o H5Fdeprec.o H5Fefc.o H5Ffake.o H5Fint.o H5Fio.o H5Fmount.o H5Fquery.o H5Fsfile.o H5Fspace.o H5Fsuper.o H5Fsuper_cache.o H5Ftest.o H5FA.o H5FAcache.o H5FAdbg.o H5FAdblock.o H5FAdblkpage.o H5FAhdr.o H5FAint.o H5FAstat.o H5FAtest.o H5FD.o H5FDcore.o H5FDfamily.o H5FDint.o H5FDlog.o H5FDmulti.o H5FDsec2.o H5FDspace.o H5FDstdio.o H5FDtest.o H5FL.o H5FO.o H5FS.o H5FScache.o H5FSdbg.o H5FSint.o H5FSsection.o H5FSstat.o H5FStest.o H5G.o H5Gbtree2.o H5Gcache.o H5Gcompact.o H5Gdense.o H5Gdeprec.o H5Gent.o H5Gint.o H5Glink.o H5Gloc.o H5Gname.o H5Gnode.o H5Gobj.o H5Goh.o H5Groot.o H5Gstab.o H5Gtest.o H5Gtraverse.o H5HF.o H5HFbtree2.o H5HFcache.o H5HFdbg.o H5HFdblock.o H5HFdtable.o H5HFhdr.o H5HFhuge.o H5HFiblock.o H5HFiter.o H5HFman.o H5HFsection.o H5HFspace.o H5HFstat.o H5HFtest.o H5HFtiny.o H5HG.o H5HGcache.o H5HGdbg.o H5HGquery.o H5HL.o H5HLcache.o H5HLdbg.o H5HLint.o H5HLprfx.o H5HLdblk.o H5HP.o H5I.o H5Itest.o H5L.o H5Lexternal.o H5MF.o H5MFaggr.o H5MFdbg.o H5MFsection.o H5MM.o H5MP.o H5MPtest.o H5O.o H5Oainfo.o H5Oalloc.o H5Oattr.o H5Oattribute.o H5Obogus.o H5Obtreek.o H5Ocache.o H5Ocache_image.o H5Ochunk.o H5Ocont.o H5Ocopy.o H5Odbg.o H5Odrvinfo.o H5Odtype.o H5Oefl.o H5Ofill.o H5Oflush.o H5Ofsinfo.o H5Oginfo.o H5Olayout.o H5Olinfo.o H5Olink.o H5Omessage.o H5Omtime.o H5Oname.o H5Onull.o H5Opline.o H5Orefcount.o H5Osdspace.o H5Oshared.o H5Oshmesg.o H5Ostab.o H5Otest.o H5Ounknown.o H5P.o H5Pacpl.o H5Pdapl.o H5Pdcpl.o H5Pdeprec.o H5Pdxpl.o H5Pencdec.o H5Pfapl.o H5Pfcpl.o H5Pfmpl.o H5Pgcpl.o H5Pint.o H5Plapl.o H5Plcpl.o H5Pocpl.o H5Pocpypl.o H5Pstrcpl.o H5Ptest.o H5PB.o H5PL.o H5R.o H5Rdeprec.o H5UC.o H5RS.o H5S.o H5Sall.o H5Sdbg.o H5Shyper.o H5Snone.o H5Spoint.o H5Sselect.o H5Stest.o H5SL.o H5SM.o H5SMbtree2.o H5SMcache.o H5SMmessage.o H5SMtest.o H5ST.o H5T.o H5Tarray.o H5Tbit.o H5Tcommit.o H5Tcompound.o H5Tconv.o H5Tcset.o H5Tdbg.o H5Tdeprec.o H5Tenum.o H5Tfields.o H5Tfixed.o H5Tfloat.o H5Tnative.o H5Toffset.o H5Toh.o H5Topaque.o H5Torder.o H5Tpad.o H5Tprecis.o H5Tstrpad.o H5Tvisit.o H5Tvlen.o H5TS.o H5VM.o H5WB.o H5Z.o H5Zdeflate.o H5Zfletcher32.o H5Znbit.o H5Zscaleoffset.o H5Zshuffle.o H5Zszip.o H5Ztrans.o H5Tinit.o H5lib_settings.o blosc_filter.o jpeg_h5filter.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -/usr/bin/ranlib libhdf5.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_LCMSLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -c ../cmsxform.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -/usr/bin/ar -rc liblcms.a cmsalpha.o cmscam02.o cmscgats.o cmscnvrt.o cmserr.o cmsgamma.o cmsgmt.o cmshalf.o cmsintrp.o cmsio0.o cmsio1.o cmslut.o cmsmd5.o cmsmtrx.o cmsnamed.o cmsopt.o cmspack.o cmspcs.o cmsplugin.o cmsps2.o cmssamp.o cmssm.o cmstypes.o cmsvirt.o cmswtpnt.o cmsxform.o -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -/usr/bin/ranlib liblcms.a -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -g++ -o liblcms.so -shared -fPIC -Wl,-hliblcms.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 cmsalpha.o cmscam02.o cmscgats.o cmscnvrt.o cmserr.o cmsgamma.o cmsgmt.o cmshalf.o cmsintrp.o cmsio0.o cmsio1.o cmslut.o cmsmd5.o cmsmtrx.o cmsnamed.o cmsopt.o cmspack.o cmspcs.o cmsplugin.o cmsps2.o cmssamp.o cmssm.o cmstypes.o cmsvirt.o cmswtpnt.o cmsxform.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -g++ -o libhdf5.so -shared -fPIC -Wl,-hlibhdf5.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 H5.o H5checksum.o H5dbg.o H5system.o H5timer.o H5trace.o H5A.o H5Abtree2.o H5Adense.o H5Adeprec.o H5Aint.o H5Atest.o H5AC.o H5AClog.o H5ACdbg.o H5ACproxy_entry.o H5B.o H5Bcache.o H5Bdbg.o H5B2.o H5B2cache.o H5B2dbg.o H5B2hdr.o H5B2int.o H5B2internal.o H5B2leaf.o H5B2stat.o H5B2test.o H5C.o H5Cdbg.o H5Cepoch.o H5Cimage.o H5Clog.o H5Cprefetched.o H5Cquery.o H5Ctag.o H5Ctest.o H5CS.o H5D.o H5Dbtree.o H5Dbtree2.o H5Dchunk.o H5Dcompact.o H5Dcontig.o H5Ddbg.o H5Ddeprec.o H5Dearray.o H5Defl.o H5Dfarray.o H5Dfill.o H5Dint.o H5Dio.o H5Dlayout.o H5Dnone.o H5Doh.o H5Dscatgath.o H5Dselect.o H5Dsingle.o H5Dtest.o H5Dvirtual.o H5E.o H5Edeprec.o H5Eint.o H5EA.o H5EAcache.o H5EAdbg.o H5EAdblkpage.o H5EAdblock.o H5EAhdr.o H5EAiblock.o H5EAint.o H5EAsblock.o H5EAstat.o H5EAtest.o H5F.o H5Faccum.o H5Fcwfs.o H5Fdbg.o H5Fdeprec.o H5Fefc.o H5Ffake.o H5Fint.o H5Fio.o H5Fmount.o H5Fquery.o H5Fsfile.o H5Fspace.o H5Fsuper.o H5Fsuper_cache.o H5Ftest.o H5FA.o H5FAcache.o H5FAdbg.o H5FAdblock.o H5FAdblkpage.o H5FAhdr.o H5FAint.o H5FAstat.o H5FAtest.o H5FD.o H5FDcore.o H5FDfamily.o H5FDint.o H5FDlog.o H5FDmulti.o H5FDsec2.o H5FDspace.o H5FDstdio.o H5FDtest.o H5FL.o H5FO.o H5FS.o H5FScache.o H5FSdbg.o H5FSint.o H5FSsection.o H5FSstat.o H5FStest.o H5G.o H5Gbtree2.o H5Gcache.o H5Gcompact.o H5Gdense.o H5Gdeprec.o H5Gent.o H5Gint.o H5Glink.o H5Gloc.o H5Gname.o H5Gnode.o H5Gobj.o H5Goh.o H5Groot.o H5Gstab.o H5Gtest.o H5Gtraverse.o H5HF.o H5HFbtree2.o H5HFcache.o H5HFdbg.o H5HFdblock.o H5HFdtable.o H5HFhdr.o H5HFhuge.o H5HFiblock.o H5HFiter.o H5HFman.o H5HFsection.o H5HFspace.o H5HFstat.o H5HFtest.o H5HFtiny.o H5HG.o H5HGcache.o H5HGdbg.o H5HGquery.o H5HL.o H5HLcache.o H5HLdbg.o H5HLint.o H5HLprfx.o H5HLdblk.o H5HP.o H5I.o H5Itest.o H5L.o H5Lexternal.o H5MF.o H5MFaggr.o H5MFdbg.o H5MFsection.o H5MM.o H5MP.o H5MPtest.o H5O.o H5Oainfo.o H5Oalloc.o H5Oattr.o H5Oattribute.o H5Obogus.o H5Obtreek.o H5Ocache.o H5Ocache_image.o H5Ochunk.o H5Ocont.o H5Ocopy.o H5Odbg.o H5Odrvinfo.o H5Odtype.o H5Oefl.o H5Ofill.o H5Oflush.o H5Ofsinfo.o H5Oginfo.o H5Olayout.o H5Olinfo.o H5Olink.o H5Omessage.o H5Omtime.o H5Oname.o H5Onull.o H5Opline.o H5Orefcount.o H5Osdspace.o H5Oshared.o H5Oshmesg.o H5Ostab.o H5Otest.o H5Ounknown.o H5P.o H5Pacpl.o H5Pdapl.o H5Pdcpl.o H5Pdeprec.o H5Pdxpl.o H5Pencdec.o H5Pfapl.o H5Pfcpl.o H5Pfmpl.o H5Pgcpl.o H5Pint.o H5Plapl.o H5Plcpl.o H5Pocpl.o H5Pocpypl.o H5Pstrcpl.o H5Ptest.o H5PB.o H5PL.o H5R.o H5Rdeprec.o H5UC.o H5RS.o H5S.o H5Sall.o H5Sdbg.o H5Shyper.o H5Snone.o H5Spoint.o H5Sselect.o H5Stest.o H5SL.o H5SM.o H5SMbtree2.o H5SMcache.o H5SMmessage.o H5SMtest.o H5ST.o H5T.o H5Tarray.o H5Tbit.o H5Tcommit.o H5Tcompound.o H5Tconv.o H5Tcset.o H5Tdbg.o H5Tdeprec.o H5Tenum.o H5Tfields.o H5Tfixed.o H5Tfloat.o H5Tnative.o H5Toffset.o H5Toh.o H5Topaque.o H5Torder.o H5Tpad.o H5Tprecis.o H5Tstrpad.o H5Tvisit.o H5Tvlen.o H5TS.o H5VM.o H5WB.o H5Z.o H5Zdeflate.o H5Zfletcher32.o H5Znbit.o H5Zscaleoffset.o H5Zshuffle.o H5Zszip.o H5Ztrans.o H5Tinit.o H5lib_settings.o blosc_filter.o jpeg_h5filter.o -lszip -lzlib -lblosc -ljpeg -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsxform.d -MT cmsxform.obj ../cmsxform.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -g++ -o H5detect -Wl,-Bstatic -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 H5detect.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -mkdir ../../../bin/linux-x86_64 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmswtpnt.d -MT cmswtpnt.obj ../cmswtpnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsvirt.d -MT cmsvirt.obj ../cmsvirt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5detect.d -MT H5detect.obj ../H5detect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d -MT jpeg_h5filter.obj ../jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d -MT blosc_filter.obj ../blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5lib_settings.d -MT H5lib_settings.obj ../H5lib_settings.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmstypes.d -MT cmstypes.obj ../cmstypes.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssm.d -MT cmssm.obj ../cmssm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tinit.d -MT H5Tinit.obj ../os/WIN32/H5Tinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmssamp.d -MT cmssamp.obj ../cmssamp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ztrans.d -MT H5Ztrans.obj ../H5Ztrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsps2.d -MT cmsps2.obj ../cmsps2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zszip.d -MT H5Zszip.obj ../H5Zszip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsplugin.d -MT cmsplugin.obj ../cmsplugin.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zshuffle.d -MT H5Zshuffle.obj ../H5Zshuffle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspcs.d -MT cmspcs.obj ../cmspcs.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zscaleoffset.d -MT H5Zscaleoffset.obj ../H5Zscaleoffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmspack.d -MT cmspack.obj ../cmspack.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Znbit.d -MT H5Znbit.obj ../H5Znbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsopt.d -MT cmsopt.obj ../cmsopt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zfletcher32.d -MT H5Zfletcher32.obj ../H5Zfletcher32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsnamed.d -MT cmsnamed.obj ../cmsnamed.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Zdeflate.d -MT H5Zdeflate.obj ../H5Zdeflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmtrx.d -MT cmsmtrx.obj ../cmsmtrx.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Z.d -MT H5Z.obj ../H5Z.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsmd5.d -MT cmsmd5.obj ../cmsmd5.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmslut.d -MT cmslut.obj ../cmslut.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5WB.d -MT H5WB.obj ../H5WB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio1.d -MT cmsio1.obj ../cmsio1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5VM.d -MT H5VM.obj ../H5VM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsio0.d -MT cmsio0.obj ../cmsio0.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5TS.d -MT H5TS.obj ../H5TS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsintrp.d -MT cmsintrp.obj ../cmsintrp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvlen.d -MT H5Tvlen.obj ../H5Tvlen.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmshalf.d -MT cmshalf.obj ../cmshalf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tvisit.d -MT H5Tvisit.obj ../H5Tvisit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgmt.d -MT cmsgmt.obj ../cmsgmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tstrpad.d -MT H5Tstrpad.obj ../H5Tstrpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsgamma.d -MT cmsgamma.obj ../cmsgamma.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tprecis.d -MT H5Tprecis.obj ../H5Tprecis.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmserr.d -MT cmserr.obj ../cmserr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tpad.d -MT H5Tpad.obj ../H5Tpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscnvrt.d -MT cmscnvrt.obj ../cmscnvrt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Torder.d -MT H5Torder.obj ../H5Torder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscgats.d -MT cmscgats.obj ../cmscgats.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Topaque.d -MT H5Topaque.obj ../H5Topaque.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmscam02.d -MT cmscam02.obj ../cmscam02.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toh.d -MT H5Toh.obj ../H5Toh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -MM -MF cmsalpha.d -MT cmsalpha.obj ../cmsalpha.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Toffset.d -MT H5Toffset.obj ../H5Toffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tnative.d -MT H5Tnative.obj ../H5Tnative.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfloat.d -MT H5Tfloat.obj ../H5Tfloat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfixed.d -MT H5Tfixed.obj ../H5Tfixed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tfields.d -MT H5Tfields.obj ../H5Tfields.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsalpha.obj -c ../cmsalpha.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tenum.d -MT H5Tenum.obj ../H5Tenum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdeprec.d -MT H5Tdeprec.obj ../H5Tdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tdbg.d -MT H5Tdbg.obj ../H5Tdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcset.d -MT H5Tcset.obj ../H5Tcset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tconv.d -MT H5Tconv.obj ../H5Tconv.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmscam02.obj -c ../cmscam02.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcompound.d -MT H5Tcompound.obj ../H5Tcompound.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tcommit.d -MT H5Tcommit.obj ../H5Tcommit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tbit.d -MT H5Tbit.obj ../H5Tbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Tarray.d -MT H5Tarray.obj ../H5Tarray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5T.d -MT H5T.obj ../H5T.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ST.d -MT H5ST.obj ../H5ST.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMtest.d -MT H5SMtest.obj ../H5SMtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMmessage.d -MT H5SMmessage.obj ../H5SMmessage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMcache.d -MT H5SMcache.obj ../H5SMcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SMbtree2.d -MT H5SMbtree2.obj ../H5SMbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmscgats.obj -c ../cmscgats.c -../cmscgats.c: In function ‘ReadReal’: -../cmscgats.c:577:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 577 | else - | ^~~~ -../cmscgats.c:584:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 584 | e = 0; - | ^ -../cmscgats.c: In function ‘ParseFloatNumber’: -../cmscgats.c:654:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 654 | else - | ^~~~ -../cmscgats.c:661:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 661 | e = 0; - | ^ -../cmscgats.c: In function ‘GetVal’: -../cmscgats.c:986:19: warning: ‘strncpy’ output may be truncated copying between 255 and 1023 bytes from a string of length 1023 [-Wstringop-truncation] - 986 | case SSTRING: strncpy(Buffer, it8->str, max); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘AddToList’ at ../cmscgats.c:1184:22: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘AddToList’ at ../cmscgats.c:1185:47: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘AddToList’ at ../cmscgats.c:1215:22: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘AddToList.constprop’ at ../cmscgats.c:1184:22: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList.constprop’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘AddToList.constprop’ at ../cmscgats.c:1215:22: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘AddToList.constprop’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘SetData’ at ../cmscgats.c:1545:47: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘SetData’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In function ‘isabsolutepath’, - inlined from ‘BuildAbsolutePath’ at ../cmscgats.c:419:9, - inlined from ‘InSymbol’ at ../cmscgats.c:920:21: -../cmscgats.c:396:5: warning: ‘strncpy’ output may be truncated copying 3 bytes from a string of length 1023 [-Wstringop-truncation] - 396 | strncpy(ThreeChars, path, 3); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘BuildAbsolutePath’, - inlined from ‘InSymbol’ at ../cmscgats.c:920:21: -../cmscgats.c:421:9: warning: ‘strncpy’ output may be truncated copying 255 bytes from a string of length 1023 [-Wstringop-truncation] - 421 | strncpy(buffer, relPath, MaxLen); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c:427:5: warning: ‘strncpy’ output may be truncated copying 255 bytes from a string of length 255 [-Wstringop-truncation] - 427 | strncpy(buffer, basePath, MaxLen); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c:437:5: warning: ‘strncpy’ output may be truncated copying between 1 and 255 bytes from a string of length 1023 [-Wstringop-truncation] - 437 | strncpy(tail + 1, relPath, MaxLen - len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘cmsIT8SetSheetType’, - inlined from ‘ParseIT8’ at ../cmscgats.c:2100:41: -../cmscgats.c:1335:9: warning: ‘strncpy’ output may be truncated copying 1023 bytes from a string of length 1023 [-Wstringop-truncation] - 1335 | strncpy(t ->SheetType, Type, MAXSTR-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, - inlined from ‘DataFormatSection’ at ../cmscgats.c:1841:18, - inlined from ‘ParseIT8’ at ../cmscgats.c:2061:26: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘ParseIT8’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘SetDataFormat’ at ../cmscgats.c:1480:28, - inlined from ‘cmsIT8SetDataFormat’ at ../cmscgats.c:1490:16: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘cmsIT8SetDataFormat’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘SetData’ at ../cmscgats.c:1545:47, - inlined from ‘cmsIT8SetDataRowCol’ at ../cmscgats.c:2569:12: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘cmsIT8SetDataRowCol’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -In function ‘AllocString’, - inlined from ‘SetData’ at ../cmscgats.c:1545:47, - inlined from ‘cmsIT8SetDataRowColDbl’ at ../cmscgats.c:2582:12: -../cmscgats.c:1111:14: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1111 | if (ptr) strncpy (ptr, str, Size-1); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmscgats.c: In function ‘cmsIT8SetDataRowColDbl’: -../cmscgats.c:1106:46: note: length computed here - 1106 | cmsUInt32Number Size = (cmsUInt32Number) strlen(str)+1; - | ^~~~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SM.d -MT H5SM.obj ../H5SM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5SL.d -MT H5SL.obj ../H5SL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Stest.d -MT H5Stest.obj ../H5Stest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sselect.d -MT H5Sselect.obj ../H5Sselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Spoint.d -MT H5Spoint.obj ../H5Spoint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmscnvrt.obj -c ../cmscnvrt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Snone.d -MT H5Snone.obj ../H5Snone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Shyper.d -MT H5Shyper.obj ../H5Shyper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sdbg.d -MT H5Sdbg.obj ../H5Sdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Sall.d -MT H5Sall.obj ../H5Sall.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5S.d -MT H5S.obj ../H5S.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmserr.obj -c ../cmserr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5RS.d -MT H5RS.obj ../H5RS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5UC.d -MT H5UC.obj ../H5UC.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Rdeprec.d -MT H5Rdeprec.obj ../H5Rdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5R.d -MT H5R.obj ../H5R.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PL.d -MT H5PL.obj ../H5PL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5PB.d -MT H5PB.obj ../H5PB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ptest.d -MT H5Ptest.obj ../H5Ptest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsgamma.obj -c ../cmsgamma.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pstrcpl.d -MT H5Pstrcpl.obj ../H5Pstrcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpypl.d -MT H5Pocpypl.obj ../H5Pocpypl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pocpl.d -MT H5Pocpl.obj ../H5Pocpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plcpl.d -MT H5Plcpl.obj ../H5Plcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsgmt.obj -c ../cmsgmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Plapl.d -MT H5Plapl.obj ../H5Plapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pint.d -MT H5Pint.obj ../H5Pint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pgcpl.d -MT H5Pgcpl.obj ../H5Pgcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmshalf.obj -c ../cmshalf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfmpl.d -MT H5Pfmpl.obj ../H5Pfmpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfcpl.d -MT H5Pfcpl.obj ../H5Pfcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pfapl.d -MT H5Pfapl.obj ../H5Pfapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pencdec.d -MT H5Pencdec.obj ../H5Pencdec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdxpl.d -MT H5Pdxpl.obj ../H5Pdxpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdeprec.d -MT H5Pdeprec.obj ../H5Pdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdcpl.d -MT H5Pdcpl.obj ../H5Pdcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pdapl.d -MT H5Pdapl.obj ../H5Pdapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Pacpl.d -MT H5Pacpl.obj ../H5Pacpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5P.d -MT H5P.obj ../H5P.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ounknown.d -MT H5Ounknown.obj ../H5Ounknown.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Otest.d -MT H5Otest.obj ../H5Otest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsintrp.obj -c ../cmsintrp.c -../cmsintrp.c: In function ‘Eval4Inputs’: -../cmsintrp.c:918:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 918 | else - | ^~~~ -../cmsintrp.c:930:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 930 | Rest = c1 * rx + c2 * ry + c3 * rz; - | ^~~~ -../cmsintrp.c:982:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 982 | else - | ^~~~ -../cmsintrp.c:994:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 994 | Rest = c1 * rx + c2 * ry + c3 * rz; - | ^~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ostab.d -MT H5Ostab.obj ../H5Ostab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshmesg.d -MT H5Oshmesg.obj ../H5Oshmesg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oshared.d -MT H5Oshared.obj ../H5Oshared.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Osdspace.d -MT H5Osdspace.obj ../H5Osdspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Orefcount.d -MT H5Orefcount.obj ../H5Orefcount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Opline.d -MT H5Opline.obj ../H5Opline.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Onull.d -MT H5Onull.obj ../H5Onull.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsio0.obj -c ../cmsio0.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oname.d -MT H5Oname.obj ../H5Oname.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omtime.d -MT H5Omtime.obj ../H5Omtime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Omessage.d -MT H5Omessage.obj ../H5Omessage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olink.d -MT H5Olink.obj ../H5Olink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olinfo.d -MT H5Olinfo.obj ../H5Olinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsio1.obj -c ../cmsio1.c -../cmsio1.c: In function ‘_cmsReadFloatDevicelinkTag’: -../cmsio1.c:681:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 681 | else - | ^~~~ -../cmsio1.c:688:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 688 | if (PCS == cmsSigLabData) - | ^~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Olayout.d -MT H5Olayout.obj ../H5Olayout.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oginfo.d -MT H5Oginfo.obj ../H5Oginfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofsinfo.d -MT H5Ofsinfo.obj ../H5Ofsinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oflush.d -MT H5Oflush.obj ../H5Oflush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ofill.d -MT H5Ofill.obj ../H5Ofill.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oefl.d -MT H5Oefl.obj ../H5Oefl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odtype.d -MT H5Odtype.obj ../H5Odtype.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odrvinfo.d -MT H5Odrvinfo.obj ../H5Odrvinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Odbg.d -MT H5Odbg.obj ../H5Odbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmslut.obj -c ../cmslut.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocopy.d -MT H5Ocopy.obj ../H5Ocopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocont.d -MT H5Ocont.obj ../H5Ocont.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ochunk.d -MT H5Ochunk.obj ../H5Ochunk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache_image.d -MT H5Ocache_image.obj ../H5Ocache_image.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsmd5.obj -c ../cmsmd5.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ocache.d -MT H5Ocache.obj ../H5Ocache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obtreek.d -MT H5Obtreek.obj ../H5Obtreek.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Obogus.d -MT H5Obogus.obj ../H5Obogus.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattribute.d -MT H5Oattribute.obj ../H5Oattribute.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsmtrx.obj -c ../cmsmtrx.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oattr.d -MT H5Oattr.obj ../H5Oattr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oalloc.d -MT H5Oalloc.obj ../H5Oalloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Oainfo.d -MT H5Oainfo.obj ../H5Oainfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5O.d -MT H5O.obj ../H5O.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MPtest.d -MT H5MPtest.obj ../H5MPtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MP.d -MT H5MP.obj ../H5MP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsnamed.obj -c ../cmsnamed.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MM.d -MT H5MM.obj ../H5MM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFsection.d -MT H5MFsection.obj ../H5MFsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFdbg.d -MT H5MFdbg.obj ../H5MFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MFaggr.d -MT H5MFaggr.obj ../H5MFaggr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5MF.d -MT H5MF.obj ../H5MF.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Lexternal.d -MT H5Lexternal.obj ../H5Lexternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5L.d -MT H5L.obj ../H5L.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Itest.d -MT H5Itest.obj ../H5Itest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5I.d -MT H5I.obj ../H5I.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsopt.obj -c ../cmsopt.c -../cmsopt.c: In function ‘PatchLUT’: -../cmsopt.c:510:9: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 510 | else - | ^~~~ -../cmsopt.c:526:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 526 | for (i=0; i < nChannelsOut; i++) - | ^~~ -../cmsopt.c: In function ‘PrelinEval8’: -../cmsopt.c:978:25: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 978 | else - | ^~~~ -../cmsopt.c:990:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 990 | Rest = c1 * rx + c2 * ry + c3 * rz + 0x8001; - | ^~~~ -../cmsopt.c: In function ‘OptimizeByComputingLinearization’: -../cmsopt.c:1030:26: warning: variable ‘lIsLinear’ set but not used [-Wunused-but-set-variable] - 1030 | cmsBool lIsSuitable, lIsLinear; - | ^~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HP.d -MT H5HP.obj ../H5HP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdblk.d -MT H5HLdblk.obj ../H5HLdblk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLprfx.d -MT H5HLprfx.obj ../H5HLprfx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLint.d -MT H5HLint.obj ../H5HLint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLdbg.d -MT H5HLdbg.obj ../H5HLdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HLcache.d -MT H5HLcache.obj ../H5HLcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HL.d -MT H5HL.obj ../H5HL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGquery.d -MT H5HGquery.obj ../H5HGquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGdbg.d -MT H5HGdbg.obj ../H5HGdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HGcache.d -MT H5HGcache.obj ../H5HGcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HG.d -MT H5HG.obj ../H5HG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtiny.d -MT H5HFtiny.obj ../H5HFtiny.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFtest.d -MT H5HFtest.obj ../H5HFtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFstat.d -MT H5HFstat.obj ../H5HFstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFspace.d -MT H5HFspace.obj ../H5HFspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFsection.d -MT H5HFsection.obj ../H5HFsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFman.d -MT H5HFman.obj ../H5HFman.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiter.d -MT H5HFiter.obj ../H5HFiter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFiblock.d -MT H5HFiblock.obj ../H5HFiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhuge.d -MT H5HFhuge.obj ../H5HFhuge.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFhdr.d -MT H5HFhdr.obj ../H5HFhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdtable.d -MT H5HFdtable.obj ../H5HFdtable.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdblock.d -MT H5HFdblock.obj ../H5HFdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFdbg.d -MT H5HFdbg.obj ../H5HFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFcache.d -MT H5HFcache.obj ../H5HFcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HFbtree2.d -MT H5HFbtree2.obj ../H5HFbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5HF.d -MT H5HF.obj ../H5HF.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmspack.obj -c ../cmspack.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtraverse.d -MT H5Gtraverse.obj ../H5Gtraverse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gtest.d -MT H5Gtest.obj ../H5Gtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gstab.d -MT H5Gstab.obj ../H5Gstab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Groot.d -MT H5Groot.obj ../H5Groot.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Goh.d -MT H5Goh.obj ../H5Goh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gobj.d -MT H5Gobj.obj ../H5Gobj.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmspcs.obj -c ../cmspcs.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gnode.d -MT H5Gnode.obj ../H5Gnode.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gname.d -MT H5Gname.obj ../H5Gname.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gloc.d -MT H5Gloc.obj ../H5Gloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Glink.d -MT H5Glink.obj ../H5Glink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gint.d -MT H5Gint.obj ../H5Gint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsplugin.obj -c ../cmsplugin.c -../cmsplugin.c: In function ‘_cmsReadFloat32Number’: -../cmsplugin.c:181:15: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] - 181 | *n = *(cmsFloat32Number*) (void*) &tmp; - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmsplugin.c: In function ‘_cmsWriteFloat32Number’: -../cmsplugin.c:292:12: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] - 292 | tmp = *(cmsUInt32Number*) (void*) &n; - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gent.d -MT H5Gent.obj ../H5Gent.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdeprec.d -MT H5Gdeprec.obj ../H5Gdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gdense.d -MT H5Gdense.obj ../H5Gdense.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcompact.d -MT H5Gcompact.obj ../H5Gcompact.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gcache.d -MT H5Gcache.obj ../H5Gcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsps2.obj -c ../cmsps2.c -../cmsps2.c: In function ‘WriteInputMatrixShaper’: -../cmsps2.c:964:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 964 | else - | ^~~~ -../cmsps2.c:986:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 986 | return rc; - | ^~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Gbtree2.d -MT H5Gbtree2.obj ../H5Gbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5G.d -MT H5G.obj ../H5G.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FStest.d -MT H5FStest.obj ../H5FStest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSstat.d -MT H5FSstat.obj ../H5FSstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmssamp.obj -c ../cmssamp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSsection.d -MT H5FSsection.obj ../H5FSsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSint.d -MT H5FSint.obj ../H5FSint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FSdbg.d -MT H5FSdbg.obj ../H5FSdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FScache.d -MT H5FScache.obj ../H5FScache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FS.d -MT H5FS.obj ../H5FS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FO.d -MT H5FO.obj ../H5FO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmssm.obj -c ../cmssm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FL.d -MT H5FL.obj ../H5FL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDtest.d -MT H5FDtest.obj ../H5FDtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDstdio.d -MT H5FDstdio.obj ../H5FDstdio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDspace.d -MT H5FDspace.obj ../H5FDspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDsec2.d -MT H5FDsec2.obj ../H5FDsec2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDmulti.d -MT H5FDmulti.obj ../H5FDmulti.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDlog.d -MT H5FDlog.obj ../H5FDlog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDint.d -MT H5FDint.obj ../H5FDint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDfamily.d -MT H5FDfamily.obj ../H5FDfamily.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FDcore.d -MT H5FDcore.obj ../H5FDcore.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FD.d -MT H5FD.obj ../H5FD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAtest.d -MT H5FAtest.obj ../H5FAtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAstat.d -MT H5FAstat.obj ../H5FAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAint.d -MT H5FAint.obj ../H5FAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAhdr.d -MT H5FAhdr.obj ../H5FAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblkpage.d -MT H5FAdblkpage.obj ../H5FAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmstypes.obj -c ../cmstypes.c -../cmstypes.c: In function ‘ReadCLUT’: -../cmstypes.c:2360:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 2360 | else - | ^~~~ -../cmstypes.c:2374:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 2374 | return CLUT; - | ^~~~~~ -../cmstypes.c: In function ‘WriteCLUT’: -../cmstypes.c:2645:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 2645 | else - | ^~~~ -../cmstypes.c:2655:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 2655 | if (!_cmsWriteAlignment(io)) return FALSE; - | ^~ -../cmstypes.c: In function ‘Type_NamedColor_Write’: -../cmstypes.c:3146:5: warning: ‘strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] - 3146 | strncpy(prefix, (const char*) NamedColorList->Prefix, 32); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../cmstypes.c:3147:5: warning: ‘strncpy’ output may be truncated copying 32 bytes from a string of length 32 [-Wstringop-truncation] - 3147 | strncpy(suffix, (const char*) NamedColorList->Suffix, 32); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdblock.d -MT H5FAdblock.obj ../H5FAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAdbg.d -MT H5FAdbg.obj ../H5FAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FAcache.d -MT H5FAcache.obj ../H5FAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5FA.d -MT H5FA.obj ../H5FA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ftest.d -MT H5Ftest.obj ../H5Ftest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsvirt.obj -c ../cmsvirt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper_cache.d -MT H5Fsuper_cache.obj ../H5Fsuper_cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsuper.d -MT H5Fsuper.obj ../H5Fsuper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fspace.d -MT H5Fspace.obj ../H5Fspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fsfile.d -MT H5Fsfile.obj ../H5Fsfile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmswtpnt.obj -c ../cmswtpnt.c -../cmswtpnt.c: In function ‘cmsWhitePointFromTemp’: -../cmswtpnt.c:66:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] - 66 | else - | ^~~~ -../cmswtpnt.c:80:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘else’ - 80 | y = -3.000*(x*x) + 2.870*x - 0.275; - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fquery.d -MT H5Fquery.obj ../H5Fquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fmount.d -MT H5Fmount.obj ../H5Fmount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fio.d -MT H5Fio.obj ../H5Fio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fint.d -MT H5Fint.obj ../H5Fint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ffake.d -MT H5Ffake.obj ../H5Ffake.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fefc.d -MT H5Fefc.obj ../H5Fefc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_LCMSLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -o cmsxform.obj -c ../cmsxform.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdeprec.d -MT H5Fdeprec.obj ../H5Fdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o lcms.dll -shared -Wl,--out-implib,liblcms.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ cmsalpha.obj cmscam02.obj cmscgats.obj cmscnvrt.obj cmserr.obj cmsgamma.obj cmsgmt.obj cmshalf.obj cmsintrp.obj cmsio0.obj cmsio1.obj cmslut.obj cmsmd5.obj cmsmtrx.obj cmsnamed.obj cmsopt.obj cmspack.obj cmspcs.obj cmsplugin.obj cmsps2.obj cmssamp.obj cmssm.obj cmstypes.obj cmsvirt.obj cmswtpnt.obj cmsxform.obj -lws2_32 -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/lcms/src/O.windows-x64-mingw' -make -C ./ttf install -make -C ./src install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fdbg.d -MT H5Fdbg.obj ../H5Fdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' -mkdir -p O.Common -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Fcwfs.d -MT H5Fcwfs.obj ../H5Fcwfs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cff.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bdf.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF winfnt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type42.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Faccum.d -MT H5Faccum.obj ../H5Faccum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1cid.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5F.d -MT H5F.obj ../H5F.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF truetype.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF smooth.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF sfnt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAtest.d -MT H5EAtest.obj ../H5EAtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF raster.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psmodule.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pshinter.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAstat.d -MT H5EAstat.obj ../H5EAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psaux.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pfr.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pcf.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlzw.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAsblock.d -MT H5EAsblock.obj ../H5EAsblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgzip.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftcache.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftwinfnt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAint.d -MT H5EAint.obj ../H5EAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fttype1.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsystem.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsynth.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftstroke.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAiblock.d -MT H5EAiblock.obj ../H5EAiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpfr.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpatent.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftotval.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftmm.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAhdr.d -MT H5EAhdr.obj ../H5EAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlcdfil.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftinit.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgxval.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftglyph.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblock.d -MT H5EAdblock.obj ../H5EAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgasp.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfstype.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfntfmt.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbitmap.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdblkpage.d -MT H5EAdblkpage.obj ../H5EAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbbox.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbase.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAdbg.d -MT H5EAdbg.obj ../H5EAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EAcache.d -MT H5EAcache.obj ../H5EAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5EA.d -MT H5EA.obj ../H5EA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF autofit.d ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Eint.d -MT H5Eint.obj ../H5Eint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Edeprec.d -MT H5Edeprec.obj ../H5Edeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5E.d -MT H5E.obj ../H5E.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dvirtual.d -MT H5Dvirtual.obj ../H5Dvirtual.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dtest.d -MT H5Dtest.obj ../H5Dtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dsingle.d -MT H5Dsingle.obj ../H5Dsingle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dselect.d -MT H5Dselect.obj ../H5Dselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dscatgath.d -MT H5Dscatgath.obj ../H5Dscatgath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Doh.d -MT H5Doh.obj ../H5Doh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dnone.d -MT H5Dnone.obj ../H5Dnone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dlayout.d -MT H5Dlayout.obj ../H5Dlayout.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dio.d -MT H5Dio.obj ../H5Dio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dint.d -MT H5Dint.obj ../H5Dint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfill.d -MT H5Dfill.obj ../H5Dfill.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dfarray.d -MT H5Dfarray.obj ../H5Dfarray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Defl.d -MT H5Defl.obj ../H5Defl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dearray.d -MT H5Dearray.obj ../H5Dearray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddeprec.d -MT H5Ddeprec.obj ../H5Ddeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ddbg.d -MT H5Ddbg.obj ../H5Ddbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcontig.d -MT H5Dcontig.obj ../H5Dcontig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dcompact.d -MT H5Dcompact.obj ../H5Dcompact.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dchunk.d -MT H5Dchunk.obj ../H5Dchunk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree2.d -MT H5Dbtree2.obj ../H5Dbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Dbtree.d -MT H5Dbtree.obj ../H5Dbtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5D.d -MT H5D.obj ../H5D.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5CS.d -MT H5CS.obj ../H5CS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctest.d -MT H5Ctest.obj ../H5Ctest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Ctag.d -MT H5Ctag.obj ../H5Ctag.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cquery.d -MT H5Cquery.obj ../H5Cquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cprefetched.d -MT H5Cprefetched.obj ../H5Cprefetched.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Clog.d -MT H5Clog.obj ../H5Clog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cimage.d -MT H5Cimage.obj ../H5Cimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cepoch.d -MT H5Cepoch.obj ../H5Cepoch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Cdbg.d -MT H5Cdbg.obj ../H5Cdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5C.d -MT H5C.obj ../H5C.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2test.d -MT H5B2test.obj ../H5B2test.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2stat.d -MT H5B2stat.obj ../H5B2stat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2leaf.d -MT H5B2leaf.obj ../H5B2leaf.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2internal.d -MT H5B2internal.obj ../H5B2internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2int.d -MT H5B2int.obj ../H5B2int.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2hdr.d -MT H5B2hdr.obj ../H5B2hdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2dbg.d -MT H5B2dbg.obj ../H5B2dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2cache.d -MT H5B2cache.obj ../H5B2cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B2.d -MT H5B2.obj ../H5B2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bdbg.d -MT H5Bdbg.obj ../H5Bdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Bcache.d -MT H5Bcache.obj ../H5Bcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5B.d -MT H5B.obj ../H5B.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACproxy_entry.d -MT H5ACproxy_entry.obj ../H5ACproxy_entry.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5ACdbg.d -MT H5ACdbg.obj ../H5ACdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AClog.d -MT H5AClog.obj ../H5AClog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5AC.d -MT H5AC.obj ../H5AC.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Atest.d -MT H5Atest.obj ../H5Atest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Aint.d -MT H5Aint.obj ../H5Aint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adeprec.d -MT H5Adeprec.obj ../H5Adeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Adense.d -MT H5Adense.obj ../H5Adense.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5Abtree2.d -MT H5Abtree2.obj ../H5Abtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5A.d -MT H5A.obj ../H5A.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5trace.d -MT H5trace.obj ../H5trace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5timer.d -MT H5timer.obj ../H5timer.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5system.d -MT H5system.obj ../H5system.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5dbg.d -MT H5dbg.obj ../H5dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5checksum.d -MT H5checksum.obj ../H5checksum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF H5.d -MT H5.obj ../H5.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5.obj -c ../H5.c -In file included from ../H5.c:22: -../H5.c: In function ‘H5check_version’: -../H5private.h:1358:31: warning: ‘strncat’ specified bound 1 equals source length [-Wstringop-overflow=] - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5.c:831:6: note: in expansion of macro ‘HDstrncat’ - 831 | HDstrncat(lib_str, "-", (size_t)1); - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5checksum.obj -c ../H5checksum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5dbg.obj -c ../H5dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5system.obj -c ../H5system.c -../H5system.c:849: warning: ignoring #pragma comment [-Wunknown-pragmas] - 849 | #pragma comment(lib, "advapi32.lib") - | -../H5system.c: In function ‘Wgetlogin’: -../H5system.c:861:36: warning: pointer targets in passing argument 2 of ‘GetUserNameA’ differ in signedness [-Wpointer-sign] - 861 | if (GetUserName(Wlogin_buffer, &bufferCount) == 0) - | ^~~~~~~~~~~~ - | | - | long int * -In file included from /usr/share/mingw-w64/include/windows.h:70, - from /usr/share/mingw-w64/include/winsock2.h:23, - from ../H5private.h:179, - from ../H5system.c:33: -/usr/share/mingw-w64/include/winbase.h:2399:66: note: expected ‘LPDWORD’ {aka ‘long unsigned int *’} but argument is of type ‘long int *’ - 2399 | WINADVAPI WINBOOL WINAPI GetUserNameA (LPSTR lpBuffer, LPDWORD pcbBuffer); - | ~~~~~~~~^~~~~~~~~ -In file included from ../H5system.c:33: -../H5system.c: In function ‘H5_build_extpath’: -../H5private.h:1358:31: warning: ‘strncat’ specified bound 1 equals source length [-Wstringop-overflow=] - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5system.c:1115:17: note: in expansion of macro ‘HDstrncat’ - 1115 | HDstrncat(full_path, H5_DIR_SEPS, HDstrlen(H5_DIR_SEPS)); - | ^~~~~~~~~ -../H5private.h:1358:31: warning: ‘strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5system.c:1116:13: note: in expansion of macro ‘HDstrncat’ - 1116 | HDstrncat(full_path, new_name, HDstrlen(new_name)); - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5timer.obj -c ../H5timer.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5trace.obj -c ../H5trace.c -../H5trace.c: In function ‘H5_trace’: -../H5trace.c:250:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 250 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:264:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 264 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:283:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 283 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:299:56: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 299 | fprintf (out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:337:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 337 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:363:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 363 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:397:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 397 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:431:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 431 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:461:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 461 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:499:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 499 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:545:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 545 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:587:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 587 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:638:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 638 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:668:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 668 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:702:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 702 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:728:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 728 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:764:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 764 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:783:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 783 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:809:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 809 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:816:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 816 | fprintf(out, "0x%lx", (unsigned long)error); - | ^ -../H5trace.c:823:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 823 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:857:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 857 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:891:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 891 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:926:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 926 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:977:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 977 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1003:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1003 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1012:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1012 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1047:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1047 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1095:56: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1095 | fprintf (out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1102:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1102 | fprintf(out, "0x%lx", (unsigned long)statbuf); - | ^ -../H5trace.c:1116:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1116 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1150:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1150 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1180:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1180 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1368:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1368 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1402:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1402 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1440:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1440 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1464:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1464 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1546:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1546 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1578:56: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1578 | fprintf (out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1624:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1624 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1640:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1640 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1656:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1656 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1715:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1715 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1731:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1731 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1775:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1775 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1799:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1799 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1815:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1815 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1857:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1857 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1891:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1891 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1949:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1949 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:1997:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1997 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2013:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2013 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2060:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2060 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2090:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2090 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2120:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2120 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2154:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2154 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2196:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2196 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2234:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2234 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2268:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2268 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2338:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2338 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2394:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2394 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2415:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2415 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2439:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2439 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2455:45: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2455 | fprintf(out, "%llu", iull); - | ^ -../H5trace.c:2455:42: warning: too many arguments for format [-Wformat-extra-args] - 2455 | fprintf(out, "%llu", iull); - | ^~~~~~ -../H5trace.c:2455:45: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2455 | fprintf(out, "%llu", iull); - | ^ -../H5trace.c:2455:42: warning: too many arguments for format [-Wformat-extra-args] - 2455 | fprintf(out, "%llu", iull); - | ^~~~~~ -../H5trace.c:2469:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2469 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2476:78: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2476 | fprintf(out, "%s0x%lx", (i ? ", " : ""), (unsigned long)(p[i])); - | ^ -../H5trace.c:2490:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2490 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2499:47: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2499 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2525:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2525 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2555:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2555 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2562:51: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2562 | fprintf(out, "0x%lx", (unsigned long)filter); - | ^ -../H5trace.c:2569:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2569 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2588:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2588 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -../H5trace.c:2605:55: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 2605 | fprintf(out, "0x%lx", (unsigned long)vp); - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5A.obj -c ../H5A.c -In file included from ../H5A.c:25: -../H5A.c: In function ‘H5Aget_name_by_idx’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5A.c:937:9: note: in expansion of macro ‘HDstrncpy’ - 937 | HDstrncpy(name, attr->shared->name, MIN((size_t)(ret_value + 1), size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5A.c:933:26: note: in expansion of macro ‘HDstrlen’ - 933 | ret_value = (ssize_t)HDstrlen(attr->shared->name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Abtree2.obj -c ../H5Abtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Adense.obj -c ../H5Adense.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Adeprec.obj -c ../H5Adeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Aint.obj -c ../H5Aint.c -../H5Aint.c: In function ‘H5A_create’: -../H5Aint.c:200:45: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 200 | if(NULL == (attr->shared->dt = H5T_copy(type, H5T_COPY_ALL))) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Aprivate.h:25, - from ../H5Apkg.h:37, - from ../H5Aint.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Aint.c: In function ‘H5A__read’: -../H5Aint.c:532:71: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 532 | (dst_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0) - | ^~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Aprivate.h:25, - from ../H5Apkg.h:37, - from ../H5Aint.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Aint.c: In function ‘H5A__write’: -../H5Aint.c:632:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 632 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(mem_type, H5T_COPY_ALL), FALSE)) < 0 || - | ^~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Aprivate.h:25, - from ../H5Apkg.h:37, - from ../H5Aint.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Atest.obj -c ../H5Atest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5AC.obj -c ../H5AC.c -In file included from ../H5AC.c:39: -../H5AC.c: In function ‘H5AC__init_package’: -../H5private.h:1992:13: warning: unused variable ‘err_occurred’ [-Wunused-variable] - 1992 | hbool_t err_occurred = FALSE; \ - | ^~~~~~~~~~~~ -../H5private.h:2175:5: note: in expansion of macro ‘FUNC_ENTER_COMMON’ - 2175 | FUNC_ENTER_COMMON(H5_IS_PKG(FUNC)); \ - | ^~~~~~~~~~~~~~~~~ -../H5AC.c:201:5: note: in expansion of macro ‘FUNC_ENTER_PACKAGE’ - 201 | FUNC_ENTER_PACKAGE - | ^~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5AClog.obj -c ../H5AClog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5ACdbg.obj -c ../H5ACdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5ACproxy_entry.obj -c ../H5ACproxy_entry.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B.obj -c ../H5B.c -../H5B.c: In function ‘H5B_valid’: -../H5B.c:2038:26: warning: variable ‘shared’ set but not used [-Wunused-but-set-variable] - 2038 | H5B_shared_t *shared; /* Pointer to shared B-tree info */ - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Bcache.obj -c ../H5Bcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Bdbg.obj -c ../H5Bdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -/usr/bin/ar -rc libttf.a autofit.o ftbase.o ftbbox.o ftbitmap.o ftfntfmt.o ftfstype.o ftgasp.o ftglyph.o ftgxval.o ftinit.o ftlcdfil.o ftmm.o ftotval.o ftpatent.o ftpfr.o ftstroke.o ftsynth.o ftsystem.o fttype1.o ftwinfnt.o ftcache.o ftgzip.o ftlzw.o pcf.o pfr.o psaux.o pshinter.o psmodule.o raster.o sfnt.o smooth.o truetype.o type1.o type1cid.o type42.o winfnt.o bdf.o cff.o -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -/usr/bin/ranlib libttf.a -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -g++ -o libttf.so -shared -fPIC -Wl,-hlibttf.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 autofit.o ftbase.o ftbbox.o ftbitmap.o ftfntfmt.o ftfstype.o ftgasp.o ftglyph.o ftgxval.o ftinit.o ftlcdfil.o ftmm.o ftotval.o ftpatent.o ftpfr.o ftstroke.o ftsynth.o ftsystem.o fttype1.o ftwinfnt.o ftcache.o ftgzip.o ftlzw.o pcf.o pfr.o psaux.o pshinter.o psmodule.o raster.o sfnt.o smooth.o truetype.o type1.o type1cid.o type42.o winfnt.o bdf.o cff.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ - T_A=windows-x64-mingw install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cff.d -MT cff.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bdf.d -MT bdf.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2.obj -c ../H5B2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF winfnt.d -MT winfnt.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type42.d -MT type42.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1cid.d -MT type1cid.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type1.d -MT type1.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF truetype.d -MT truetype.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF smooth.d -MT smooth.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF sfnt.d -MT sfnt.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF raster.d -MT raster.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psmodule.d -MT psmodule.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pshinter.d -MT pshinter.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF psaux.d -MT psaux.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pfr.d -MT pfr.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pcf.d -MT pcf.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlzw.d -MT ftlzw.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgzip.d -MT ftgzip.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftcache.d -MT ftcache.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftwinfnt.d -MT ftwinfnt.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fttype1.d -MT fttype1.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsystem.d -MT ftsystem.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftsynth.d -MT ftsynth.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftstroke.d -MT ftstroke.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2cache.obj -c ../H5B2cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpfr.d -MT ftpfr.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftpatent.d -MT ftpatent.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftotval.d -MT ftotval.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftmm.d -MT ftmm.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftlcdfil.d -MT ftlcdfil.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftinit.d -MT ftinit.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgxval.d -MT ftgxval.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftglyph.d -MT ftglyph.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftgasp.d -MT ftgasp.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfstype.d -MT ftfstype.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftfntfmt.d -MT ftfntfmt.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbitmap.d -MT ftbitmap.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbbox.d -MT ftbbox.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF ftbase.d -MT ftbase.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2dbg.obj -c ../H5B2dbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF autofit.d -MT autofit.obj ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2hdr.obj -c ../H5B2hdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2int.obj -c ../H5B2int.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o autofit.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit/autofit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2internal.obj -c ../H5B2internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2leaf.obj -c ../H5B2leaf.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2stat.obj -c ../H5B2stat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5B2test.obj -c ../H5B2test.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftbase.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbase.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftbbox.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbbox.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftbitmap.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftbitmap.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftfntfmt.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfntfmt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftfstype.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftfstype.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftgasp.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgasp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftglyph.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftglyph.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftgxval.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftgxval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftinit.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftinit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftlcdfil.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftlcdfil.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftmm.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftmm.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftotval.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftotval.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftpatent.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpatent.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftpfr.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftpfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5C.obj -c ../H5C.c -../H5C.c: In function ‘H5C_flush_cache’: -../H5C.c:1057:14: warning: variable ‘ignore_protected’ set but not used [-Wunused-but-set-variable] - 1057 | hbool_t ignore_protected; - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftstroke.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftstroke.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftsynth.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsynth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftsystem.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftsystem.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cdbg.obj -c ../H5Cdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o fttype1.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/fttype1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftwinfnt.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/base/ftwinfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cepoch.obj -c ../H5Cepoch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftcache.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache/ftcache.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftgzip.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip/ftgzip.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cimage.obj -c ../H5Cimage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o ftlzw.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw/ftlzw.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Clog.obj -c ../H5Clog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o pcf.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf/pcf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cprefetched.obj -c ../H5Cprefetched.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o pfr.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr/pfr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Cquery.obj -c ../H5Cquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ctag.obj -c ../H5Ctag.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o psaux.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux/psaux.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ctest.obj -c ../H5Ctest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5CS.obj -c ../H5CS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o pshinter.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter/pshinter.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o psmodule.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames/psmodule.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5D.obj -c ../H5D.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o raster.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster/raster.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dbtree.obj -c ../H5Dbtree.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dbtree2.obj -c ../H5Dbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o sfnt.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt/sfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o smooth.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth/smooth.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dchunk.obj -c ../H5Dchunk.c -../H5Dchunk.c: In function ‘H5D__chunk_direct_write’: -../H5Dchunk.c:393:13: warning: unused variable ‘md_dxpl_generated’ [-Wunused-variable] - 393 | hbool_t md_dxpl_generated = FALSE; /* bool to indicate whether we should free the md_dxpl_id at exit */ - | ^~~~~~~~~~~~~~~~~ -../H5Dchunk.c: In function ‘H5D__chunk_init’: -../H5Dchunk.c:724:26: warning: unused variable ‘sc’ [-Wunused-variable] - 724 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_is_space_alloc’: -../H5Dchunk.c:816:32: warning: unused variable ‘sc’ [-Wunused-variable] - 816 | const H5O_storage_chunk_t *sc = &(storage->u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_dest’: -../H5Dchunk.c:2371:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2371 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_create’: -../H5Dchunk.c:2582:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2582 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_lookup’: -../H5Dchunk.c:2683:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2683 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_flush_entry’: -../H5Dchunk.c:2806:26: warning: unused variable ‘sc’ [-Wunused-variable] - 2806 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_allocated’: -../H5Dchunk.c:3716:26: warning: unused variable ‘sc’ [-Wunused-variable] - 3716 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_allocate’: -../H5Dchunk.c:3809:32: warning: unused variable ‘sc’ [-Wunused-variable] - 3809 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_update_old_edge_chunks’: -../H5Dchunk.c:4242:32: warning: unused variable ‘sc’ [-Wunused-variable] - 4242 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c:4229:24: warning: unused variable ‘pline’ [-Wunused-variable] - 4229 | const H5O_pline_t *pline = &(dset->shared->dcpl_cache.pline); /* I/O pipeline info */ - | ^~~~~ -../H5Dchunk.c: In function ‘H5D__chunk_prune_by_extent’: -../H5Dchunk.c:4797:32: warning: unused variable ‘sc’ [-Wunused-variable] - 4797 | const H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_delete’: -../H5Dchunk.c:5203:26: warning: unused variable ‘sc’ [-Wunused-variable] - 5203 | H5O_storage_chunk_t *sc = &(storage->u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_copy_cb’: -../H5Dchunk.c:5550:111: warning: passing argument 5 of ‘H5D__chunk_file_alloc’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 5550 | if(H5D__chunk_file_alloc(udata->idx_info_dst, NULL, &udata_dst.chunk_block, &need_insert, udata_dst.common.scaled) < 0) - | ~~~~~~~~~~~~~~~~^~~~~~~ -../H5Dchunk.c:300:13: note: expected ‘hsize_t *’ {aka ‘long long unsigned int *’} but argument is of type ‘const hsize_t *’ {aka ‘const long long unsigned int *’} - 300 | hsize_t scaled[]); - | ~~~~~~~~^~~~~~~~ -../H5Dchunk.c: In function ‘H5D__chunk_copy’: -../H5Dchunk.c:5689:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 5689 | if(NULL == (dt_mem = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) - | ^~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dchunk.c:55: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dchunk.c:5697:39: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 5697 | if(NULL == (dt_dst = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) - | ^~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dchunk.c:55: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dchunk.c: In function ‘H5D__chunk_bh_info’: -../H5Dchunk.c:5856:26: warning: unused variable ‘sc’ [-Wunused-variable] - 5856 | H5O_storage_chunk_t *sc = &(layout->storage.u.chunk); - | ^~ -../H5Dchunk.c: In function ‘H5D__chunk_dump_index’: -../H5Dchunk.c:5979:26: warning: unused variable ‘sc’ [-Wunused-variable] - 5979 | H5O_storage_chunk_t *sc = &(dset->shared->layout.storage.u.chunk); - | ^~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dcompact.obj -c ../H5Dcompact.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dcontig.obj -c ../H5Dcontig.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o truetype.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/truetype.c:25: -../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/ttgload.c: In function ‘load_truetype_glyph’: -../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/ttgload.c:1662:26: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 1662 | (void*)(unsigned long)glyph_index ) ) - | ^ -../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype/ttgload.c:1676:22: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast] - 1676 | node->data = (void*)(unsigned long)glyph_index; - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ddbg.obj -c ../H5Ddbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ddeprec.obj -c ../H5Ddeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o type1.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1/type1.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o type1cid.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid/type1cid.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dearray.obj -c ../H5Dearray.c -../H5Dearray.c: In function ‘H5D__earray_debug’: -../H5Dearray.c:446:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 446 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5Dearray.c:446:23: warning: too many arguments for format [-Wformat-extra-args] - 446 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -../H5Dearray.c:446:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 446 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5Dearray.c:446:23: warning: too many arguments for format [-Wformat-extra-args] - 446 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -../H5Dearray.c: In function ‘H5D__earray_filt_debug’: -../H5Dearray.c:605:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 605 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5Dearray.c:605:23: warning: too many arguments for format [-Wformat-extra-args] - 605 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -../H5Dearray.c:605:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 605 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5Dearray.c:605:23: warning: too many arguments for format [-Wformat-extra-args] - 605 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o type42.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42/type42.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o winfnt.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts/winfnt.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Defl.obj -c ../H5Defl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o bdf.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf/bdf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dfarray.obj -c ../H5Dfarray.c -../H5Dfarray.c: In function ‘H5D__farray_debug’: -../H5Dfarray.c:444:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 444 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5Dfarray.c:444:23: warning: too many arguments for format [-Wformat-extra-args] - 444 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -../H5Dfarray.c:444:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 444 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5Dfarray.c:444:23: warning: too many arguments for format [-Wformat-extra-args] - 444 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -../H5Dfarray.c: In function ‘H5D__farray_filt_debug’: -../H5Dfarray.c:710:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 710 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5Dfarray.c:710:23: warning: too many arguments for format [-Wformat-extra-args] - 710 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -../H5Dfarray.c:710:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 710 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5Dfarray.c:710:23: warning: too many arguments for format [-Wformat-extra-args] - 710 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dfill.obj -c ../H5Dfill.c -../H5Dfill.c: In function ‘H5D__fill’: -../H5Dfill.c:238:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 238 | if((src_id = H5I_register(H5I_DATATYPE, H5T_copy(fill_type, H5T_COPY_ALL), FALSE)) < 0) - | ^~~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dfill.c:36: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dfill.c:241:62: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 241 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(buf_type, H5T_COPY_ALL), FALSE)) < 0) - | ^~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dfill.c:36: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dfill.c: In function ‘H5D__fill_init’: -../H5Dfill.c:413:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 413 | if(NULL == (fb_info->mem_type = H5T_copy(dset_type, H5T_COPY_REOPEN))) - | ^~~~~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dfill.c:36: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dint.obj -c ../H5Dint.c -../H5Dint.c: In function ‘H5D__init_type’: -../H5Dint.c:681:43: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 681 | if((dset->shared->type = H5T_copy(type, H5T_COPY_ALL)) == NULL) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Dint.c:25: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Dint.c: In function ‘H5D__mark’: -../H5Dint.c:3174:37: warning: passing argument 1 of ‘H5D__layout_oh_write’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 3174 | if(H5D__layout_oh_write(dataset, dxpl_id, oh, update_flags) < 0) - | ^~~~~~~ -In file included from ../H5Dint.c:25: -../H5Dpkg.h:638:43: note: expected ‘H5D_t *’ {aka ‘struct H5D_t *’} but argument is of type ‘const H5D_t *’ {aka ‘const struct H5D_t *’} - 638 | H5_DLL herr_t H5D__layout_oh_write(H5D_t *dataset, hid_t dxpl_id, H5O_t *oh, - | ~~~~~~~^~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_TTFLIB_ -DFT2_BUILD_LIBRARY -DFT_USE_T1CID -DHAVE_FT2BUILD_H -DWIN64 -D_VISUALC_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/autofit -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/base -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cache -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/gzip -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/lzw -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pcf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pfr -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psaux -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/pshinter -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/psnames -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/raster -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/sfnt -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/smooth -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/truetype -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type1 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cid -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/type42 -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/winfonts -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/bdf -I../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o cff.obj -c ../../../../../supportApp/GraphicsMagickSrc/ttf/src/cff/cff.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o ttf.dll -shared -Wl,--out-implib,libttf.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ autofit.obj ftbase.obj ftbbox.obj ftbitmap.obj ftfntfmt.obj ftfstype.obj ftgasp.obj ftglyph.obj ftgxval.obj ftinit.obj ftlcdfil.obj ftmm.obj ftotval.obj ftpatent.obj ftpfr.obj ftstroke.obj ftsynth.obj ftsystem.obj fttype1.obj ftwinfnt.obj ftcache.obj ftgzip.obj ftlzw.obj pcf.obj pfr.obj psaux.obj pshinter.obj psmodule.obj raster.obj sfnt.obj smooth.obj truetype.obj type1.obj type1cid.obj type42.obj winfnt.obj bdf.obj cff.obj -lws2_32 -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/ttf/src/O.windows-x64-mingw' -make -C ./wmf install -make -C ./src install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' -mkdir -p O.Common -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dio.obj -c ../H5Dio.c -In file included from ../H5Dio.c:24: -../H5Dio.c: In function ‘H5D__ioinfo_init’: -../H5private.h:1992:13: warning: unused variable ‘err_occurred’ [-Wunused-variable] - 1992 | hbool_t err_occurred = FALSE; \ - | ^~~~~~~~~~~~ -../H5private.h:2199:5: note: in expansion of macro ‘FUNC_ENTER_COMMON’ - 2199 | FUNC_ENTER_COMMON(H5_IS_PKG(FUNC)); \ - | ^~~~~~~~~~~~~~~~~ -../H5Dio.c:867:5: note: in expansion of macro ‘FUNC_ENTER_STATIC’ - 867 | FUNC_ENTER_STATIC - | ^~~~~~~~~~~~~~~~~ -../H5Dio.c:920:1: warning: label ‘done’ defined but not used [-Wunused-label] - 920 | done: - | ^~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF recorder.d ../recorder.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF player.d ../player.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF meta.d ../meta.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bbuf.d ../bbuf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF api.d ../api.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../api.c -In file included from ../api.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../bbuf.c -In file included from ../bbuf.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dlayout.obj -c ../H5Dlayout.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../meta.c -In file included from ../meta.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dnone.obj -c ../H5Dnone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Doh.obj -c ../H5Doh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dscatgath.obj -c ../H5Dscatgath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dselect.obj -c ../H5Dselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dsingle.obj -c ../H5Dsingle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dtest.obj -c ../H5Dtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../player.c -In file included from ../player.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -In file included from ../player.c:44: -../player/meta.h: In function ‘meta_dc_color’: -../player/meta.h:2386:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] - 2386 | { if (value = wmf_attr_query (API, attrlist, "color")) - | ^~~~~ -../player/meta.h: In function ‘meta_pen_create’: -../player/meta.h:3107:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] - 3107 | { if (value = wmf_attr_query (API, attrlist, "color")) - | ^~~~~ -../player/meta.h: In function ‘meta_brush_create’: -../player/meta.h:3209:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] - 3209 | { if (value = wmf_attr_query (API, attrlist, "color")) - | ^~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../recorder.c -In file included from ../recorder.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -../recorder.c: In function ‘wmf_canvas_line’: -../recorder.c:977:17: warning: unused variable ‘Size’ [-Wunused-variable] - 977 | unsigned long Size = 3 + 2; - | ^~~~ -../recorder.c: In function ‘s_update_header’: -../recorder.c:91:16: warning: ‘rbox.ptr’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 91 | *rbox->ptr++ = (unsigned char) ((ul >> 8) & 0xff); - | ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../recorder.c:98:16: note: ‘rbox.ptr’ was declared here - 98 | wmfRecordBox rbox; - | ^~~~ -../recorder.c:84:17: warning: ‘rbox.end’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 84 | if (rbox->end - rbox->ptr < 4) - | ~~~~~~~~~~^~~~~~~~~~~ -../recorder.c:98:16: note: ‘rbox.end’ was declared here - 98 | wmfRecordBox rbox; - | ^~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -/usr/bin/ar -rc libwmf.a api.o bbuf.o meta.o player.o recorder.o -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -/usr/bin/ranlib libwmf.a -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -g++ -o libwmf.so -shared -fPIC -Wl,-hlibwmf.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 api.o bbuf.o meta.o player.o recorder.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ - T_A=windows-x64-mingw install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF recorder.d -MT recorder.obj ../recorder.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF player.d -MT player.obj ../player.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF meta.d -MT meta.obj ../meta.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Dvirtual.obj -c ../H5Dvirtual.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bbuf.d -MT bbuf.obj ../bbuf.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF api.d -MT api.obj ../api.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o api.obj -c ../api.c -In file included from ../api.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, - from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, - from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, - from ../wmfdefs.h:24, - from ../api.c:29: -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] - 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] - 310 | # pragma warning( disable : 4018 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] - 311 | # pragma warning( disable : 4244 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] - 312 | # pragma warning( disable : 4142 ) - | -In file included from ../wmfdefs.h:25, - from ../api.c:29: -../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export - 34 | # pragma message( "WMF compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o bbuf.obj -c ../bbuf.c -In file included from ../bbuf.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, - from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, - from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, - from ../wmfdefs.h:24, - from ../bbuf.c:26: -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] - 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] - 310 | # pragma warning( disable : 4018 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] - 311 | # pragma warning( disable : 4244 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] - 312 | # pragma warning( disable : 4142 ) - | -In file included from ../wmfdefs.h:25, - from ../bbuf.c:26: -../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export - 34 | # pragma message( "WMF compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o meta.obj -c ../meta.c -In file included from ../meta.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, - from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, - from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, - from ../wmfdefs.h:24, - from ../meta.c:26: -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] - 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] - 310 | # pragma warning( disable : 4018 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] - 311 | # pragma warning( disable : 4244 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] - 312 | # pragma warning( disable : 4142 ) - | -In file included from ../wmfdefs.h:25, - from ../meta.c:26: -../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export - 34 | # pragma message( "WMF compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5E.obj -c ../H5E.c -In file included from ../H5E.c:52: -In function ‘H5E_get_class_name’, - inlined from ‘H5Eget_class_name’ at ../H5E.c:610:21: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5E.c:646:8: note: in expansion of macro ‘HDstrncpy’ - 646 | HDstrncpy(name, cls->cls_name, MIN((size_t)(len + 1), size)); - | ^~~~~~~~~ -../H5E.c: In function ‘H5Eget_class_name’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5E.c:642:20: note: in expansion of macro ‘HDstrlen’ - 642 | len = (ssize_t)HDstrlen(cls->cls_name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Edeprec.obj -c ../H5Edeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Eint.obj -c ../H5Eint.c -In file included from ../H5Eint.c:35: -../H5Eint.c: In function ‘H5E_get_msg’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Eint.c:143:8: note: in expansion of macro ‘HDstrncpy’ - 143 | HDstrncpy(msg_str, msg->msg, MIN((size_t)(len+1), size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Eint.c:139:20: note: in expansion of macro ‘HDstrlen’ - 139 | len = (ssize_t)HDstrlen(msg->msg); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EA.obj -c ../H5EA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o player.obj -c ../player.c -In file included from ../player.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, - from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, - from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, - from ../wmfdefs.h:24, - from ../player.c:33: -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] - 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] - 310 | # pragma warning( disable : 4018 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] - 311 | # pragma warning( disable : 4244 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] - 312 | # pragma warning( disable : 4142 ) - | -In file included from ../wmfdefs.h:25, - from ../player.c:33: -../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export - 34 | # pragma message( "WMF compiling as DLL export" ) - | ^~~~~~~ -In file included from ../player.c:44: -../player/meta.h: In function ‘meta_dc_color’: -../player/meta.h:2386:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] - 2386 | { if (value = wmf_attr_query (API, attrlist, "color")) - | ^~~~~ -../player/meta.h: In function ‘meta_pen_create’: -../player/meta.h:3107:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] - 3107 | { if (value = wmf_attr_query (API, attrlist, "color")) - | ^~~~~ -../player/meta.h: In function ‘meta_brush_create’: -../player/meta.h:3209:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] - 3209 | { if (value = wmf_attr_query (API, attrlist, "color")) - | ^~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAcache.obj -c ../H5EAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAdbg.obj -c ../H5EAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -D_EXPORT -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/wmf -I../../../../../supportApp/GraphicsMagickSrc/wmf/include -I../../../../../supportApp/GraphicsMagickSrc/ttf/include -o recorder.obj -c ../recorder.c -In file included from ../recorder.c:21: -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:161:18: warning: "/*" within comment [-Wcomment] - 161 | /* If any *printf/*scanf functions are missing, cover them with trio functions - | -../../../../../supportApp/GraphicsMagickSrc/wmf/wmfconfig.h:186:18: warning: "/*" within comment [-Wcomment] - 186 | /* If any *printf/*scanf functions are missing, cover them with trio functions */ - | -In file included from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, - from ../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, - from ../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, - from ../wmfdefs.h:24, - from ../recorder.c:28: -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] - 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] - 310 | # pragma warning( disable : 4018 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] - 311 | # pragma warning( disable : 4244 ) - | -../../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] - 312 | # pragma warning( disable : 4142 ) - | -In file included from ../wmfdefs.h:25, - from ../recorder.c:28: -../../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:34:14: note: #pragma message: WMF compiling as DLL export - 34 | # pragma message( "WMF compiling as DLL export" ) - | ^~~~~~~ -../recorder.c: In function ‘wmf_canvas_line’: -../recorder.c:977:17: warning: unused variable ‘Size’ [-Wunused-variable] - 977 | unsigned long Size = 3 + 2; - | ^~~~ -../recorder.c: In function ‘s_update_header’: -../recorder.c:91:16: warning: ‘rbox.ptr’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 91 | *rbox->ptr++ = (unsigned char) ((ul >> 8) & 0xff); - | ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../recorder.c:98:16: note: ‘rbox.ptr’ was declared here - 98 | wmfRecordBox rbox; - | ^~~~ -../recorder.c:84:17: warning: ‘rbox.end’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 84 | if (rbox->end - rbox->ptr < 4) - | ~~~~~~~~~~^~~~~~~~~~~ -../recorder.c:98:16: note: ‘rbox.end’ was declared here - 98 | wmfRecordBox rbox; - | ^~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o wmf.dll -shared -Wl,--out-implib,libwmf.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ api.obj bbuf.obj meta.obj player.obj recorder.obj -lws2_32 -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/wmf/src/O.windows-x64-mingw' -make -C ./webp install -make -C ./src install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' -mkdir -p O.Common -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF utils.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF thread.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerutils.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF random.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels_dec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman_encode.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersutils.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF color_cache.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAdblkpage.obj -c ../H5EAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_writer.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_reader.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxread.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxinternal.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxedit.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_encode.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webpenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF analysis.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphaenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF backward_references.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF delta_palettization.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF config.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filter.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF frameenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF histogram.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF iterator.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_tools.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_rescale.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_psnr.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_csp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF near_lossless.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF syntax.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF token.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treeenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8lenc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAdblock.obj -c ../H5EAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_msa.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_clip_tables.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cpu.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costdsp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_avx2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersdsp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse41.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAhdr.obj -c ../H5EAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_sse2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_neon.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips_dsp_r2.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips32.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerdsp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF demux.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_decode.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webp.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8ldec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treedec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantdec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF io.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF idec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF framedec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF buffer.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAiblock.obj -c ../H5EAiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphadec.d ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAint.obj -c ../H5EAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAsblock.obj -c ../H5EAsblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAstat.obj -c ../H5EAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5EAtest.obj -c ../H5EAtest.c -../H5EAtest.c: In function ‘H5EA__test_debug’: -../H5EAtest.c:339:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 339 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5EAtest.c:339:23: warning: too many arguments for format [-Wformat-extra-args] - 339 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -../H5EAtest.c:339:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 339 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5EAtest.c:339:23: warning: too many arguments for format [-Wformat-extra-args] - 339 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5F.obj -c ../H5F.c -In file included from ../H5F.c:24: -../H5F.c: In function ‘H5Fget_name’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5F.c:1311:9: note: in expansion of macro ‘HDstrncpy’ - 1311 | HDstrncpy(name, H5F_OPEN_NAME(f), MIN(len + 1,size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5F.c:1308:11: note: in expansion of macro ‘HDstrlen’ - 1308 | len = HDstrlen(H5F_OPEN_NAME(f)); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Faccum.obj -c ../H5Faccum.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fcwfs.obj -c ../H5Fcwfs.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fdbg.obj -c ../H5Fdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fdeprec.obj -c ../H5Fdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fefc.obj -c ../H5Fefc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ffake.obj -c ../H5Ffake.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fint.obj -c ../H5Fint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fio.obj -c ../H5Fio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fmount.obj -c ../H5Fmount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fquery.obj -c ../H5Fquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fsfile.obj -c ../H5Fsfile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fspace.obj -c ../H5Fspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fsuper.obj -c ../H5Fsuper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Fsuper_cache.obj -c ../H5Fsuper_cache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ftest.obj -c ../H5Ftest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FA.obj -c ../H5FA.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAcache.obj -c ../H5FAcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAdbg.obj -c ../H5FAdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAdblock.obj -c ../H5FAdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAdblkpage.obj -c ../H5FAdblkpage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAhdr.obj -c ../H5FAhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAint.obj -c ../H5FAint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAstat.obj -c ../H5FAstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FAtest.obj -c ../H5FAtest.c -../H5FAtest.c: In function ‘H5FA__test_debug’: -../H5FAtest.c:322:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 322 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5FAtest.c:322:23: warning: too many arguments for format [-Wformat-extra-args] - 322 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -../H5FAtest.c:322:35: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 322 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^ -../H5FAtest.c:322:23: warning: too many arguments for format [-Wformat-extra-args] - 322 | sprintf(temp_str, "Element #%llu:", (unsigned long long)idx); - | ^~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FD.obj -c ../H5FD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDcore.obj -c ../H5FDcore.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDfamily.obj -c ../H5FDfamily.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDint.obj -c ../H5FDint.c -../H5FDint.c: In function ‘H5FD_read’: -../H5FDint.c:183:17: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 183 | io_dxpl = fdio_info->raw_dxpl; - | ^ -../H5FDint.c:185:17: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 185 | io_dxpl = fdio_info->meta_dxpl; - | ^ -../H5FDint.c: In function ‘H5FD_write’: -../H5FDint.c:269:17: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 269 | io_dxpl = fdio_info->raw_dxpl; - | ^ -../H5FDint.c:271:17: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 271 | io_dxpl = fdio_info->meta_dxpl; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDlog.obj -c ../H5FDlog.c -../H5FDlog.c: In function ‘H5FD_log_open’: -../H5FDlog.c:630:95: warning: ‘stat_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDlog.c:630:59: warning: ‘stat_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 630 | HDfprintf(file->logfp, "Stat took: (%f s)\n", (double)stat_timeval_diff.tv_sec + ((double)stat_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDlog.c:628:95: warning: ‘open_timeval_diff.tv_usec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDlog.c:628:59: warning: ‘open_timeval_diff.tv_sec’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 628 | HDfprintf(file->logfp, "Open took: (%f s)\n", (double)open_timeval_diff.tv_sec + ((double)open_timeval_diff.tv_usec / (double)1000000.0f)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDmulti.obj -c ../H5FDmulti.c -../H5FDmulti.c: In function ‘H5FD_multi_sb_encode’: -../H5FDmulti.c:662:5: warning: ‘strncpy’ output truncated copying 8 bytes from a string of length 9 [-Wstringop-truncation] - 662 | strncpy(name, "NCSAmulti", (size_t)8); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDmulti.c:697:9: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 697 | strncpy((char *)p, file->fa.memb_name[mt], n); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5FDmulti.c:696:20: note: length computed here - 696 | size_t n = strlen(file->fa.memb_name[mt]) + 1; - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDsec2.obj -c ../H5FDsec2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDspace.obj -c ../H5FDspace.c -../H5FDspace.c: In function ‘H5FD_extend’: -../H5FDspace.c:104:13: warning: unused variable ‘extra’ [-Wunused-variable] - 104 | hsize_t extra; /* Extra space to allocate, to align request */ - | ^~~~~ -../H5FDspace.c:102:13: warning: unused variable ‘orig_size’ [-Wunused-variable] - 102 | hsize_t orig_size = size; /* Original allocation size */ - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDstdio.obj -c ../H5FDstdio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FDtest.obj -c ../H5FDtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FL.obj -c ../H5FL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FO.obj -c ../H5FO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_WEBPLIB_ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FS.obj -c ../H5FS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -/usr/bin/ar -rc libwebp.a alphadec.o buffer.o framedec.o idec.o io.o quantdec.o treedec.o vp8.o vp8ldec.o webp.o anim_decode.o demux.o rescalerdsp.o rescaler_mips32.o rescaler_mips_dsp_r2.o rescaler_neon.o rescaler_sse2.o lossless.o lossless_enc.o lossless_enc_mips32.o lossless_enc_mips_dsp_r2.o lossless_enc_neon.o lossless_enc_sse2.o lossless_enc_sse41.o lossless_mips_dsp_r2.o lossless_neon.o lossless_sse2.o filtersdsp.o filters_mips_dsp_r2.o filters_sse2.o enc.o enc_avx2.o enc_mips32.o enc_mips_dsp_r2.o enc_neon.o enc_sse2.o enc_sse41.o costdsp.o cost_mips32.o cost_mips_dsp_r2.o cost_sse2.o cpu.o dec.o dec_clip_tables.o dec_mips32.o dec_mips_dsp_r2.o dec_msa.o dec_neon.o dec_sse2.o dec_sse41.o argb.o argb_mips_dsp_r2.o argb_sse2.o alpha_processing.o alpha_processing_mips_dsp_r2.o alpha_processing_sse2.o alpha_processing_sse41.o upsampling.o upsampling_mips_dsp_r2.o upsampling_neon.o upsampling_sse2.o yuv.o yuv_mips32.o yuv_mips_dsp_r2.o yuv_sse2.o vp8lenc.o treeenc.o token.o syntax.o near_lossless.o picture.o picture_csp.o picture_psnr.o picture_rescale.o picture_tools.o quantenc.o iterator.o histogram.o frameenc.o filter.o config.o costenc.o delta_palettization.o backward_references.o alphaenc.o analysis.o webpenc.o anim_encode.o muxedit.o muxinternal.o muxread.o bit_reader.o bit_writer.o color_cache.o filtersutils.o huffman.o huffman_encode.o quant_levels.o quant_levels_dec.o random.o rescalerutils.o thread.o utils.o -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -/usr/bin/ranlib libwebp.a -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -g++ -o libwebp.so -shared -fPIC -Wl,-hlibwebp.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 alphadec.o buffer.o framedec.o idec.o io.o quantdec.o treedec.o vp8.o vp8ldec.o webp.o anim_decode.o demux.o rescalerdsp.o rescaler_mips32.o rescaler_mips_dsp_r2.o rescaler_neon.o rescaler_sse2.o lossless.o lossless_enc.o lossless_enc_mips32.o lossless_enc_mips_dsp_r2.o lossless_enc_neon.o lossless_enc_sse2.o lossless_enc_sse41.o lossless_mips_dsp_r2.o lossless_neon.o lossless_sse2.o filtersdsp.o filters_mips_dsp_r2.o filters_sse2.o enc.o enc_avx2.o enc_mips32.o enc_mips_dsp_r2.o enc_neon.o enc_sse2.o enc_sse41.o costdsp.o cost_mips32.o cost_mips_dsp_r2.o cost_sse2.o cpu.o dec.o dec_clip_tables.o dec_mips32.o dec_mips_dsp_r2.o dec_msa.o dec_neon.o dec_sse2.o dec_sse41.o argb.o argb_mips_dsp_r2.o argb_sse2.o alpha_processing.o alpha_processing_mips_dsp_r2.o alpha_processing_sse2.o alpha_processing_sse41.o upsampling.o upsampling_mips_dsp_r2.o upsampling_neon.o upsampling_sse2.o yuv.o yuv_mips32.o yuv_mips_dsp_r2.o yuv_sse2.o vp8lenc.o treeenc.o token.o syntax.o near_lossless.o picture.o picture_csp.o picture_psnr.o picture_rescale.o picture_tools.o quantenc.o iterator.o histogram.o frameenc.o filter.o config.o costenc.o delta_palettization.o backward_references.o alphaenc.o analysis.o webpenc.o anim_encode.o muxedit.o muxinternal.o muxread.o bit_reader.o bit_writer.o color_cache.o filtersutils.o huffman.o huffman_encode.o quant_levels.o quant_levels_dec.o random.o rescalerutils.o thread.o utils.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ - T_A=windows-x64-mingw install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF utils.d -MT utils.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF thread.d -MT thread.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerutils.d -MT rescalerutils.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF random.d -MT random.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels_dec.d -MT quant_levels_dec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quant_levels.d -MT quant_levels.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman_encode.d -MT huffman_encode.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF huffman.d -MT huffman.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersutils.d -MT filtersutils.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF color_cache.d -MT color_cache.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_writer.d -MT bit_writer.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF bit_reader.d -MT bit_reader.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxread.d -MT muxread.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxinternal.d -MT muxinternal.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF muxedit.d -MT muxedit.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_encode.d -MT anim_encode.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webpenc.d -MT webpenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF analysis.d -MT analysis.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphaenc.d -MT alphaenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF backward_references.d -MT backward_references.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF delta_palettization.d -MT delta_palettization.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costenc.d -MT costenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF config.d -MT config.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filter.d -MT filter.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF frameenc.d -MT frameenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF histogram.d -MT histogram.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF iterator.d -MT iterator.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantenc.d -MT quantenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_tools.d -MT picture_tools.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_rescale.d -MT picture_rescale.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_psnr.d -MT picture_psnr.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture_csp.d -MT picture_csp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF picture.d -MT picture.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF near_lossless.d -MT near_lossless.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF syntax.d -MT syntax.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF token.d -MT token.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treeenc.d -MT treeenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8lenc.d -MT vp8lenc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_sse2.d -MT yuv_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FScache.obj -c ../H5FScache.c -../H5FScache.c: In function ‘H5FS__cache_sinfo_deserialize’: -../H5FScache.c:1013:17: warning: variable ‘old_tot_space’ set but not used [-Wunused-but-set-variable] - 1013 | hsize_t old_tot_space; /* Total space managed from header */ - | ^~~~~~~~~~~~~ -../H5FScache.c:1012:17: warning: variable ‘old_ghost_sect_count’ set but not used [-Wunused-but-set-variable] - 1012 | hsize_t old_ghost_sect_count; /* Total ghost section count from header */ - | ^~~~~~~~~~~~~~~~~~~~ -../H5FScache.c:1011:17: warning: variable ‘old_serial_sect_count’ set but not used [-Wunused-but-set-variable] - 1011 | hsize_t old_serial_sect_count; /* Total serializable section count from header */ - | ^~~~~~~~~~~~~~~~~~~~~ -../H5FScache.c:1010:17: warning: variable ‘old_tot_sect_count’ set but not used [-Wunused-but-set-variable] - 1010 | hsize_t old_tot_sect_count; /* Total section count from header */ - | ^~~~~~~~~~~~~~~~~~ -../H5FScache.c: In function ‘H5FS__cache_sinfo_image_len’: -../H5FScache.c:1119:19: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] - 1119 | const H5FS_t *fspace; /* Free space header */ - | ^~~~~~ -../H5FScache.c: In function ‘H5FS__cache_sinfo_serialize’: -../H5FScache.c:1249:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] - 1249 | H5FS_t *fspace; /* Free space header */ - | ^~~~~~ -../H5FScache.c: In function ‘H5FS__cache_sinfo_free_icr’: -../H5FScache.c:1396:26: warning: variable ‘fspace’ set but not used [-Wunused-but-set-variable] - 1396 | H5FS_t *fspace; /* Free space header */ - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips_dsp_r2.d -MT yuv_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv_mips32.d -MT yuv_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF yuv.d -MT yuv.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_sse2.d -MT upsampling_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_neon.d -MT upsampling_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling_mips_dsp_r2.d -MT upsampling_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF upsampling.d -MT upsampling.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse41.d -MT alpha_processing_sse41.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_sse2.d -MT alpha_processing_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing_mips_dsp_r2.d -MT alpha_processing_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alpha_processing.d -MT alpha_processing.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_sse2.d -MT argb_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb_mips_dsp_r2.d -MT argb_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF argb.d -MT argb.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse41.d -MT dec_sse41.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_sse2.d -MT dec_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_neon.d -MT dec_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_msa.d -MT dec_msa.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips_dsp_r2.d -MT dec_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_mips32.d -MT dec_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec_clip_tables.d -MT dec_clip_tables.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF dec.d -MT dec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cpu.d -MT cpu.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_sse2.d -MT cost_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips_dsp_r2.d -MT cost_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF cost_mips32.d -MT cost_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF costdsp.d -MT costdsp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse41.d -MT enc_sse41.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_sse2.d -MT enc_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_neon.d -MT enc_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips_dsp_r2.d -MT enc_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_mips32.d -MT enc_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc_avx2.d -MT enc_avx2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF enc.d -MT enc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_sse2.d -MT filters_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filters_mips_dsp_r2.d -MT filters_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF filtersdsp.d -MT filtersdsp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FSdbg.obj -c ../H5FSdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_sse2.d -MT lossless_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_neon.d -MT lossless_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_mips_dsp_r2.d -MT lossless_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse41.d -MT lossless_enc_sse41.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_sse2.d -MT lossless_enc_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_neon.d -MT lossless_enc_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips_dsp_r2.d -MT lossless_enc_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc_mips32.d -MT lossless_enc_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless_enc.d -MT lossless_enc.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF lossless.d -MT lossless.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_sse2.d -MT rescaler_sse2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_neon.d -MT rescaler_neon.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips_dsp_r2.d -MT rescaler_mips_dsp_r2.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescaler_mips32.d -MT rescaler_mips32.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF rescalerdsp.d -MT rescalerdsp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF demux.d -MT demux.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF anim_decode.d -MT anim_decode.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF webp.d -MT webp.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8ldec.d -MT vp8ldec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF vp8.d -MT vp8.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF treedec.d -MT treedec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF quantdec.d -MT quantdec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF io.d -MT io.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF idec.d -MT idec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF framedec.d -MT framedec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF buffer.d -MT buffer.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FSint.obj -c ../H5FSint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF alphadec.d -MT alphadec.obj ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alphadec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/rescaler.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././webpi.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./alphai.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/alphadec.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o buffer.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/buffer.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o framedec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/framedec.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FSsection.obj -c ../H5FSsection.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o idec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/rescaler.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././webpi.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./alphai.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/idec.c:18: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FSstat.obj -c ../H5FSstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o io.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/../enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/../enc/vp8li.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/vp8i.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/io.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/../dec/../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o quantdec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/quantdec.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o treedec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/treedec.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5FStest.obj -c ../H5FStest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o vp8.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/rescaler.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././webpi.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./alphai.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5G.obj -c ../H5G.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o vp8ldec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/rescaler.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././webpi.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./alphai.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/vp8ldec.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/././../utils/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gbtree2.obj -c ../H5Gbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o webp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/vp8li.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./vp8i.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/webp.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dec/./../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o anim_decode.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/utils.h:24, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/anim_decode.c:20: -../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gcache.obj -c ../H5Gcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o demux.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/utils.h:24, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/demux.c:21: -../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/demux/../utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescalerdsp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescalerdsp.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescaler_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips32.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescaler_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_mips_dsp_r2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescaler_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_neon.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescaler_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/rescaler_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gcompact.obj -c ../H5Gcompact.c -In file included from ../H5Gcompact.c:28: -../H5Gcompact.c: In function ‘H5G__compact_get_name_by_idx’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Gcompact.c:246:9: note: in expansion of macro ‘HDstrncpy’ - 246 | HDstrncpy(name, ltable.lnks[idx].name, MIN((size_t)(ret_value + 1), size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gcompact.c:242:26: note: in expansion of macro ‘HDstrlen’ - 242 | ret_value = (ssize_t)HDstrlen(ltable.lnks[idx].name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gdense.obj -c ../H5Gdense.c -In file included from ../H5Gdense.c:35: -../H5Gdense.c: In function ‘H5G__dense_get_name_by_idx’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Gdense.c:1278:13: note: in expansion of macro ‘HDstrncpy’ - 1278 | HDstrncpy(name, ltable.lnks[n].name, MIN((size_t)(ret_value + 1), size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gdense.c:1274:30: note: in expansion of macro ‘HDstrlen’ - 1274 | ret_value = (ssize_t)HDstrlen(ltable.lnks[n].name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips32.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_mips_dsp_r2.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_neon.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_enc_sse41.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_enc_sse41.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_mips_dsp_r2.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_neon.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o lossless_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/lossless_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gdeprec.obj -c ../H5Gdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filtersdsp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filtersdsp.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filters_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_mips_dsp_r2.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filters_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/filters_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gent.obj -c ../H5Gent.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_avx2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_avx2.c:12: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips32.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_mips_dsp_r2.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_neon.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gint.obj -c ../H5Gint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Glink.obj -c ../H5Glink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o enc_sse41.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/enc_sse41.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o costdsp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/costdsp.c:12: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o cost_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips32.c:12: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o cost_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_mips_dsp_r2.c:12: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o cost_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cost_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o cpu.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/cpu.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gloc.obj -c ../H5Gloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_clip_tables.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_clip_tables.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips32.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_mips_dsp_r2.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_msa.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_msa.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_neon.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gname.obj -c ../H5Gname.c -In file included from ../H5Gname.c:35: -../H5Gname.c: In function ‘H5G_build_fullpath’: -../H5private.h:1358:31: warning: ‘strncat’ specified bound 1 equals source length [-Wstringop-overflow=] - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Gname.c:326:9: note: in expansion of macro ‘HDstrncat’ - 326 | HDstrncat(full_path, "/", (size_t)1); - | ^~~~~~~~~ -../H5Gname.c: In function ‘H5G_common_path.part.0’: -../H5Gname.c:253:23: warning: ‘nchars2’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 253 | prefix+=nchars2; - | ~~~~~~^~~~~~~~~ -In file included from ../H5Gname.c:35: -../H5private.h:1361:31: warning: ‘nchars1’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1361 | #define HDstrncmp(X,Y,Z) strncmp(X,Y,Z) - | ^~~~~~~ -../H5Gname.c:230:13: note: ‘nchars1’ was declared here - 230 | size_t nchars1,nchars2; /* Number of characters in components */ - | ^~~~~~~ -In file included from ../H5Gname.c:35: -In function ‘H5G_name_move_path’, - inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:1028:24, - inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: -../H5private.h:1358:31: warning: ‘strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Gname.c:771:13: note: in expansion of macro ‘HDstrncat’ - 771 | HDstrncat(new_path, full_suffix, full_suffix_len); - | ^~~~~~~~~ -../H5Gname.c: In function ‘H5G_name_replace_cb’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gname.c:717:23: note: in expansion of macro ‘HDstrlen’ - 717 | full_suffix_len = HDstrlen(full_suffix); - | ^~~~~~~~ -In function ‘H5G_name_replace_cb’, - inlined from ‘H5G_name_replace_cb’ at ../H5Gname.c:799:1: -../H5private.h:1358:31: warning: ‘strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Gname.c:1040:17: note: in expansion of macro ‘HDstrncat’ - 1040 | HDstrncat(new_full_path, full_suffix, full_suffix_len); - | ^~~~~~~~~ -../H5Gname.c: In function ‘H5G_name_replace_cb’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gname.c:1024:35: note: in expansion of macro ‘HDstrlen’ - 1024 | full_suffix_len = HDstrlen(full_suffix); - | ^~~~~~~~ -In function ‘H5G_build_fullpath’, - inlined from ‘H5G_build_fullpath_refstr_str’ at ../H5Gname.c:367:17: -../H5private.h:1358:31: warning: ‘strncat’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Gname.c:327:5: note: in expansion of macro ‘HDstrncat’ - 327 | HDstrncat(full_path, name, name_len); - | ^~~~~~~~~ -../H5Gname.c: In function ‘H5G_build_fullpath_refstr_str’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gname.c:316:16: note: in expansion of macro ‘HDstrlen’ - 316 | name_len = HDstrlen(name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse2.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o dec_sse41.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/dec_sse41.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gnode.obj -c ../H5Gnode.c -../H5Gnode.c: In function ‘H5G_node_remove’: -../H5Gnode.c:790:21: warning: unused variable ‘lt_key’ [-Wunused-variable] - 790 | H5G_node_key_t *lt_key = (H5G_node_key_t *)_lt_key; - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o argb.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o argb_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_mips_dsp_r2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o argb_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/argb_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alpha_processing.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alpha_processing_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_mips_dsp_r2.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alpha_processing_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alpha_processing_sse41.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/alpha_processing_sse41.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gobj.obj -c ../H5Gobj.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Goh.obj -c ../H5Goh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o upsampling.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o upsampling_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_mips_dsp_r2.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o upsampling_neon.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_neon.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Groot.obj -c ../H5Groot.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gstab.obj -c ../H5Gstab.c -In file included from ../H5Gstab.c:29: -../H5Gstab.c: In function ‘H5G__stab_get_name_by_idx’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Gstab.c:803:9: note: in expansion of macro ‘HDstrncpy’ - 803 | HDstrncpy(name, udata.name, MIN((size_t)(ret_value + 1), size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Gstab.c:799:26: note: in expansion of macro ‘HDstrlen’ - 799 | ret_value = (ssize_t)HDstrlen(udata.name); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gtest.obj -c ../H5Gtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o upsampling_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/upsampling_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Gtraverse.obj -c ../H5Gtraverse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HF.obj -c ../H5HF.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o yuv.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./yuv.h:38, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o yuv_mips32.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips32.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o yuv_mips_dsp_r2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_mips_dsp_r2.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFbtree2.obj -c ../H5HFbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o yuv_sse2.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/./yuv.h:38, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/yuv_sse2.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp/././../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o vp8lenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/vp8lenc.c:18: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o treeenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/treeenc.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o token.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./cost.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/token.c:23: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFcache.obj -c ../H5HFcache.c -../H5HFcache.c: In function ‘H5HF__cache_hdr_serialize’: -../H5HFcache.c:774:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 774 | hdr->f = f; - | ^ -../H5HFcache.c: In function ‘H5HF__cache_iblock_serialize’: -../H5HFcache.c:1361:12: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1361 | hdr->f = f; - | ^ -../H5HFcache.c: In function ‘H5HF__cache_iblock_notify’: -../H5HFcache.c:1477:18: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] - 1477 | unsigned indir_idx; /* Index in parent's child iblock pointer array */ - | ^~~~~~~~~ -../H5HFcache.c:1476:26: warning: unused variable ‘par_iblock’ [-Wunused-variable] - 1476 | H5HF_indirect_t *par_iblock = iblock->parent; - | ^~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o syntax.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../utils/../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../utils/utils.h:24, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/syntax.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o near_lossless.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../dsp/lossless.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/near_lossless.c:20: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFdbg.obj -c ../H5HFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFdblock.obj -c ../H5HFdblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture_csp.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_csp.c:18: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture_psnr.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_psnr.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture_rescale.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_rescale.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFdtable.obj -c ../H5HFdtable.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o picture_tools.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/picture_tools.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFhdr.obj -c ../H5HFhdr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o quantenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/quantenc.c:18: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFhuge.obj -c ../H5HFhuge.c -../H5HFhuge.c: In function ‘H5HF_huge_write’: -../H5HFhuge.c:890:8: warning: ‘obj_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 890 | if(H5F_block_write(hdr->f, H5FD_MEM_FHEAP_HUGE_OBJ, obj_addr, obj_size, H5AC_rawdata_dxpl_id, obj) < 0) - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o iterator.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/iterator.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o histogram.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/histogram.c:18: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFiblock.obj -c ../H5HFiblock.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o frameenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./cost.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/frameenc.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filter.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/filter.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o config.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../webp/encode.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/config.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../webp/./types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/../webp/./types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFiter.obj -c ../H5HFiter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o costenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./cost.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/costenc.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o delta_palettization.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/encode.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./delta_palettization.h:16, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/delta_palettization.c:13: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/./types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/./types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFman.obj -c ../H5HFman.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o backward_references.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/backward_references.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o alphaenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/alphaenc.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o analysis.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/analysis.c:18: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o webpenc.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././vp8enci.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/./cost.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/webpenc.c:19: -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/enc/././../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFsection.obj -c ../H5HFsection.c -../H5HFsection.c: In function ‘H5HF_sect_single_valid’: -../H5HFsection.c:1191:20: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] - 1191 | herr_t status; /* Generic status value */ - | ^~~~~~ -../H5HFsection.c:1189:20: warning: variable ‘dblock_overhead’ set but not used [-Wunused-but-set-variable] - 1189 | size_t dblock_overhead; /* Direct block's overhead */ - | ^~~~~~~~~~~~~~~ -../H5HFsection.c: In function ‘H5HF_sect_row_valid’: -../H5HFsection.c:2000:14: warning: variable ‘indir_idx’ set but not used [-Wunused-but-set-variable] - 2000 | unsigned indir_idx; /* Index of row in underlying indirect section's row array */ - | ^~~~~~~~~ -../H5HFsection.c: In function ‘H5HF_sect_indirect_valid’: -../H5HFsection.c:4107:44: warning: variable ‘tmp_row_sect2’ set but not used [-Wunused-but-set-variable] - 4107 | const H5HF_free_section_t *tmp_row_sect2; /* Pointer to row section */ - | ^~~~~~~~~~~~~ -../H5HFsection.c:4099:40: warning: variable ‘tmp_row_sect’ set but not used [-Wunused-but-set-variable] - 4099 | const H5HF_free_section_t *tmp_row_sect; /* Pointer to row section */ - | ^~~~~~~~~~~~ -../H5HFsection.c:4134:44: warning: variable ‘tmp_child_sect2’ set but not used [-Wunused-but-set-variable] - 4134 | const H5HF_free_section_t *tmp_child_sect2; /* Pointer to child indirect section */ - | ^~~~~~~~~~~~~~~ -../H5HFsection.c: In function ‘H5HF_sect_single_full_dblock.part.0’: -../H5HFsection.c:774:21: warning: ‘dblock_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 774 | if((dblock_size - dblock_overhead) == sect->sect_info.size && - | ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~ -../H5HFsection.c:787:12: warning: ‘dblock_addr’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 787 | if(H5HF_man_dblock_destroy(hdr, dxpl_id, dblock, dblock_addr) < 0) - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5HFsection.c: In function ‘H5HF_sect_single_valid’: -../H5HFsection.c:1223:26: warning: ‘dblock_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1223 | dblock = H5HF_man_dblock_protect(iblock->hdr, dxpl_id, dblock_addr, dblock_size, iblock, sect->u.single.par_entry, H5AC__READ_ONLY_FLAG); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5HFsection.c:1223:26: warning: ‘dblock_addr’ may be used uninitialized in this function [-Wmaybe-uninitialized] -../H5HFsection.c: In function ‘H5HF_sect_single_shrink’: -../H5HFsection.c:1095:26: warning: ‘dblock_size’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1095 | if(NULL == (dblock = H5HF_man_dblock_protect(hdr, dxpl_id, dblock_addr, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 1096 | dblock_size, (*sect)->u.single.parent, (*sect)->u.single.par_entry, H5AC__NO_FLAGS_SET))) - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5HFsection.c:1101:8: warning: ‘dblock_addr’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1101 | if(H5HF_man_dblock_destroy(hdr, dxpl_id, dblock, dblock_addr) < 0) - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o anim_encode.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/../utils/../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/../utils/utils.h:24, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/anim_encode.c:19: -../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/../utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/../utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFspace.obj -c ../H5HFspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o muxedit.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/vp8li.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/vp8i.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./muxi.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxedit.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o muxinternal.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/vp8li.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/vp8i.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./muxi.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxinternal.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFstat.obj -c ../H5HFstat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o muxread.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./backward_references.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/vp8li.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/vp8i.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./muxi.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/muxread.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/mux/./../dec/../enc/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o bit_reader.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./bit_reader_inl.h:27, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_reader.c:18: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o bit_writer.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./bit_writer.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/bit_writer.c:19: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o color_cache.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./color_cache.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/color_cache.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFtest.obj -c ../H5HFtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o filtersutils.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./filters.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/filtersutils.c:14: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o huffman.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./huffman.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o huffman_encode.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./huffman_encode.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/huffman_encode.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o quant_levels.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./quant_levels.h:19, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HFtiny.obj -c ../H5HFtiny.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o quant_levels_dec.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./quant_levels_dec.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/quant_levels_dec.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o random.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./random.h:18, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/random.c:15: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o rescalerutils.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../dsp/dsp.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/rescalerutils.c:17: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../dsp/../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../dsp/../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o thread.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./thread.h:21, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/thread.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/./../webp/types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_WEBPLIB_ -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dec -I../../../../../supportApp/GraphicsMagickSrc/webp/src/demux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/dsp -I../../../../../supportApp/GraphicsMagickSrc/webp/src/enc -I../../../../../supportApp/GraphicsMagickSrc/webp/src/mux -I../../../../../supportApp/GraphicsMagickSrc/webp/src/utils -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o utils.obj -c ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c -In file included from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../webp/decode.h:17, - from ../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/utils.c:16: -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../webp/./types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../../supportApp/GraphicsMagickSrc/webp/src/utils/../webp/./types.h:52:16: note: #pragma message: libwebp compiling as DLL export - 52 | # pragma message( "libwebp compiling as DLL export" ) - | ^~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o webp.dll -shared -Wl,--out-implib,libwebp.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ alphadec.obj buffer.obj framedec.obj idec.obj io.obj quantdec.obj treedec.obj vp8.obj vp8ldec.obj webp.obj anim_decode.obj demux.obj rescalerdsp.obj rescaler_mips32.obj rescaler_mips_dsp_r2.obj rescaler_neon.obj rescaler_sse2.obj lossless.obj lossless_enc.obj lossless_enc_mips32.obj lossless_enc_mips_dsp_r2.obj lossless_enc_neon.obj lossless_enc_sse2.obj lossless_enc_sse41.obj lossless_mips_dsp_r2.obj lossless_neon.obj lossless_sse2.obj filtersdsp.obj filters_mips_dsp_r2.obj filters_sse2.obj enc.obj enc_avx2.obj enc_mips32.obj enc_mips_dsp_r2.obj enc_neon.obj enc_sse2.obj enc_sse41.obj costdsp.obj cost_mips32.obj cost_mips_dsp_r2.obj cost_sse2.obj cpu.obj dec.obj dec_clip_tables.obj dec_mips32.obj dec_mips_dsp_r2.obj dec_msa.obj dec_neon.obj dec_sse2.obj dec_sse41.obj argb.obj argb_mips_dsp_r2.obj argb_sse2.obj alpha_processing.obj alpha_processing_mips_dsp_r2.obj alpha_processing_sse2.obj alpha_processing_sse41.obj upsampling.obj upsampling_mips_dsp_r2.obj upsampling_neon.obj upsampling_sse2.obj yuv.obj yuv_mips32.obj yuv_mips_dsp_r2.obj yuv_sse2.obj vp8lenc.obj treeenc.obj token.obj syntax.obj near_lossless.obj picture.obj picture_csp.obj picture_psnr.obj picture_rescale.obj picture_tools.obj quantenc.obj iterator.obj histogram.obj frameenc.obj filter.obj config.obj costenc.obj delta_palettization.obj backward_references.obj alphaenc.obj analysis.obj webpenc.obj anim_encode.obj muxedit.obj muxinternal.obj muxread.obj bit_reader.obj bit_writer.obj color_cache.obj filtersutils.obj huffman.obj huffman_encode.obj quant_levels.obj quant_levels_dec.obj random.obj rescalerutils.obj thread.obj utils.obj -lws2_32 -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/webp/src/O.windows-x64-mingw' -make -C ./png install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' -mkdir -p O.Common -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngread.d ../pngread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwutil.d ../pngwutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwtran.d ../pngwtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HG.obj -c ../H5HG.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwrite.d ../pngwrite.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwio.d ../pngwio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngtrans.d ../pngtrans.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngset.d ../pngset.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrutil.d ../pngrutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrtran.d ../pngrtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrio.d ../pngrio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngpread.d ../pngpread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngmem.d ../pngmem.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngget.d ../pngget.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngerror.d ../pngerror.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF png.d ../png.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HGcache.obj -c ../H5HGcache.c -../H5HGcache.c: In function ‘H5HG__cache_heap_get_final_load_size’: -../H5HGcache.c:225:17: warning: ‘*((void *)&heap+312)’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 225 | *actual_len = heap.size; - | ~~~~~~~~~~~~^~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HGdbg.obj -c ../H5HGdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../png.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HGquery.obj -c ../H5HGquery.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngerror.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngget.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngmem.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HL.obj -c ../H5HL.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngpread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngrio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLcache.obj -c ../H5HLcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLdbg.obj -c ../H5HLdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLint.obj -c ../H5HLint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngrtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLprfx.obj -c ../H5HLprfx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HLdblk.obj -c ../H5HLdblk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngrutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5HP.obj -c ../H5HP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngset.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngtrans.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5I.obj -c ../H5I.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwrite.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Itest.obj -c ../H5Itest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngwutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5L.obj -c ../H5L.c -../H5L.c: In function ‘H5L_move_cb’: -../H5L.c:2639:41: warning: passing argument 1 of ‘H5RS_wrap’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 2639 | dst_name_r = H5RS_wrap(udata->dst_name); - | ~~~~~^~~~~~~~~~ -In file included from ../H5Gprivate.h:35, - from ../H5Tprivate.h:28, - from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5L.c:26: -../H5RSprivate.h:47:20: note: expected ‘char *’ but argument is of type ‘const char *’ - 47 | H5_DLL H5RS_str_t *H5RS_wrap(char *s); - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Lexternal.obj -c ../H5Lexternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../pngread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -/usr/bin/ar -rc libpng.a png.o pngerror.o pngget.o pngmem.o pngpread.o pngrio.o pngrtran.o pngrutil.o pngset.o pngtrans.o pngwio.o pngwrite.o pngwtran.o pngwutil.o pngread.o -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -/usr/bin/ranlib libpng.a -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -g++ -o libpng.so -shared -fPIC -Wl,-hlibpng.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 png.o pngerror.o pngget.o pngmem.o pngpread.o pngrio.o pngrtran.o pngrutil.o pngset.o pngtrans.o pngwio.o pngwrite.o pngwtran.o pngwutil.o pngread.o -lbzlib -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ - T_A=windows-x64-mingw install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngread.d -MT pngread.obj ../pngread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwutil.d -MT pngwutil.obj ../pngwutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MF.obj -c ../H5MF.c -../H5MF.c: In function ‘H5MF_settle_meta_data_fsm’: -../H5MF.c:3249:17: warning: unused variable ‘fs_stat’ [-Wunused-variable] - 3249 | H5FS_stat_t fs_stat; /* Information for hdr FSM */ - | ^~~~~~~ -../H5MF.c: In function ‘H5MF__fsm_type_is_self_referential.part.0’: -../H5MF.c:3548:17: warning: ‘lg_fshdr_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3547 | result = (fsm_type == sm_fshdr_fsm) || (fsm_type == sm_fssinfo_fsm) - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 3548 | || (fsm_type == lg_fshdr_fsm) || (fsm_type == lg_fssinfo_fsm); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5MF.c:3548:47: warning: ‘lg_fssinfo_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3547 | result = (fsm_type == sm_fshdr_fsm) || (fsm_type == sm_fssinfo_fsm) - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 3548 | || (fsm_type == lg_fshdr_fsm) || (fsm_type == lg_fssinfo_fsm); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5MF.c:3547:45: warning: ‘sm_fssinfo_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3547 | result = (fsm_type == sm_fshdr_fsm) || (fsm_type == sm_fssinfo_fsm) - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5MF.c:3548:47: warning: ‘sm_fshdr_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3547 | result = (fsm_type == sm_fshdr_fsm) || (fsm_type == sm_fssinfo_fsm) - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 3548 | || (fsm_type == lg_fshdr_fsm) || (fsm_type == lg_fssinfo_fsm); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5MF.c: In function ‘H5MF__fsm_is_self_referential.part.0’: -../H5MF.c:3606:48: warning: ‘lg_fshdr_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3606 | (fspace == f->shared->fs_man[lg_fshdr_fsm]) || - | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ -../H5MF.c:3607:48: warning: ‘lg_fssinfo_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3607 | (fspace == f->shared->fs_man[lg_fssinfo_fsm]); - | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ -../H5MF.c:3605:48: warning: ‘sm_fssinfo_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3605 | (fspace == f->shared->fs_man[sm_fssinfo_fsm]) || - | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ -../H5MF.c:3604:46: warning: ‘sm_fshdr_fsm’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3604 | result = (fspace == f->shared->fs_man[sm_fshdr_fsm]) || - | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ -../H5MF.c: In function ‘H5MF_settle_meta_data_fsm’: -../H5MF.c:3240:20: warning: ‘lg_fssinfo_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3240 | H5F_mem_page_t lg_fssinfo_fs_type; /* large fs sinfo fsm */ - | ^~~~~~~~~~~~~~~~~~ -../H5MF.c:3239:20: warning: ‘lg_fshdr_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3239 | H5F_mem_page_t lg_fshdr_fs_type; /* large fs hdr fsm */ - | ^~~~~~~~~~~~~~~~ -../H5MF.c:3286:25: warning: ‘sm_fssinfo_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3286 | sm_sinfo_fspace = f->shared->fs_man[sm_fssinfo_fs_type]; - | ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5MF.c: In function ‘H5MF_tidy_self_referential_fsm_hack’: -../H5MF.c:3873:16: warning: ‘lg_fssinfo_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3873 | if(H5FS_free(f, f->shared->fs_man[lg_fssinfo_fs_type], dxpl_id, FALSE) < 0) - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../H5MF.c:3854:29: warning: ‘lg_fshdr_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3854 | if(f->shared->fs_man[lg_fshdr_fs_type]) { - | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~ -../H5MF.c:3829:25: warning: ‘sm_fshdr_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3829 | if(f->shared->fs_man[sm_fshdr_fs_type]) { - | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~ -../H5MF.c:3848:12: warning: ‘sm_fssinfo_fs_type’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 3848 | if(H5FS_free(f, f->shared->fs_man[sm_fssinfo_fs_type], dxpl_id, FALSE) < 0) - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwtran.d -MT pngwtran.obj ../pngwtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwrite.d -MT pngwrite.obj ../pngwrite.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MFaggr.obj -c ../H5MFaggr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngwio.d -MT pngwio.obj ../pngwio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MFdbg.obj -c ../H5MFdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngtrans.d -MT pngtrans.obj ../pngtrans.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngset.d -MT pngset.obj ../pngset.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MFsection.obj -c ../H5MFsection.c -../H5MFsection.c: In function ‘H5MF_sect_split’: -../H5MFsection.c:376:22: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 376 | FUNC_LEAVE_NOAPI((H5FS_section_info_t *)ret_value) - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrutil.d -MT pngrutil.obj ../pngrutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MM.obj -c ../H5MM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrtran.d -MT pngrtran.obj ../pngrtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MP.obj -c ../H5MP.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngrio.d -MT pngrio.obj ../pngrio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5MPtest.obj -c ../H5MPtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngpread.d -MT pngpread.obj ../pngpread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngmem.d -MT pngmem.obj ../pngmem.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngget.d -MT pngget.obj ../pngget.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF pngerror.d -MT pngerror.obj ../pngerror.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5O.obj -c ../H5O.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF png.d -MT png.obj ../png.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oainfo.obj -c ../H5Oainfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oalloc.obj -c ../H5Oalloc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o png.obj -c ../png.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oattr.obj -c ../H5Oattr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngerror.obj -c ../pngerror.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oattribute.obj -c ../H5Oattribute.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Obogus.obj -c ../H5Obogus.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngget.obj -c ../pngget.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Obtreek.obj -c ../H5Obtreek.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngmem.obj -c ../pngmem.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ocache.obj -c ../H5Ocache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ocache_image.obj -c ../H5Ocache_image.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngpread.obj -c ../pngpread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ochunk.obj -c ../H5Ochunk.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ocont.obj -c ../H5Ocont.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngrio.obj -c ../pngrio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ocopy.obj -c ../H5Ocopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Odbg.obj -c ../H5Odbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Odrvinfo.obj -c ../H5Odrvinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngrtran.obj -c ../pngrtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Odtype.obj -c ../H5Odtype.c -../H5Odtype.c: In function ‘H5O_dtype_copy’: -../H5Odtype.c:1192:32: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1192 | if(NULL == (dst = H5T_copy(src, H5T_COPY_ALL))) - | ^~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Odtype.c:19: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Odtype.c: In function ‘H5O_dtype_pre_copy_file’: -../H5Odtype.c:1541:49: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 1541 | if(NULL == (udata->src_dtype = H5T_copy(dt_src, H5T_COPY_TRANSIENT))) - | ^~~~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Odtype.c:19: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oefl.obj -c ../H5Oefl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngrutil.obj -c ../pngrutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ofill.obj -c ../H5Ofill.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oflush.obj -c ../H5Oflush.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngset.obj -c ../pngset.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ofsinfo.obj -c ../H5Ofsinfo.c -../H5Ofsinfo.c: In function ‘H5O_fsinfo_decode’: -../H5Ofsinfo.c:132:35: warning: ‘threshold’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 132 | fsinfo->threshold = threshold; - | ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oginfo.obj -c ../H5Oginfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngtrans.obj -c ../pngtrans.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Olayout.obj -c ../H5Olayout.c -../H5Olayout.c: In function ‘H5O__layout_decode’: -../H5Olayout.c:412:90: warning: ‘tmp_hsize’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 412 | if(NULL == (mesg->storage.u.virt.list = (H5O_storage_virtual_ent_t *)H5MM_calloc((size_t)tmp_hsize * sizeof(H5O_storage_virtual_ent_t)))) - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngwio.obj -c ../pngwio.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Olinfo.obj -c ../H5Olinfo.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Olink.obj -c ../H5Olink.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngwrite.obj -c ../pngwrite.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Omessage.obj -c ../H5Omessage.c -../H5Omessage.c: In function ‘H5O_msg_reset_share’: -../H5Omessage.c:1691:28: warning: variable ‘type’ set but not used [-Wunused-but-set-variable] - 1691 | const H5O_msg_class_t *type; /* Actual H5O class type for the ID */ - | ^~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngwtran.obj -c ../pngwtran.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Omtime.obj -c ../H5Omtime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oname.obj -c ../H5Oname.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Onull.obj -c ../H5Onull.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngwutil.obj -c ../pngwutil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Opline.obj -c ../H5Opline.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Orefcount.obj -c ../H5Orefcount.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Osdspace.obj -c ../H5Osdspace.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oshared.obj -c ../H5Oshared.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_PNGLIB_ -DPNG_NO_MODULEDEF -D__FLAT__ -DWIN64 -D_VISUALC_ -D__WIN32DLL__ -D_DLL -DPNG_BUILD_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o pngread.obj -c ../pngread.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-windres -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include ../png.rc png.coff -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o png.dll -shared -Wl,--out-implib,libpng.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ png.obj pngerror.obj pngget.obj pngmem.obj pngpread.obj pngrio.obj pngrtran.obj pngrutil.obj pngset.obj pngtrans.obj pngwio.obj pngwrite.obj pngwtran.obj pngwutil.obj pngread.obj png.coff -lbzlib -lzlib -lws2_32 -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/png/O.windows-x64-mingw' -make -C ./jp2 install -make -C ./src install -make -C ./libjasper install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../../.. -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../../.. -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' -mkdir -p O.Common -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Oshmesg.obj -c ../H5Oshmesg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_util.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tsfb.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tagtree.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2cod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1cod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_qmfb.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqenc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqdec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqcod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mct.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_math.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_cs.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_bs.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ostab.obj -c ../H5Ostab.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_enc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_dec.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_cod.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_version.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tvp.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tmr.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_string.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_stream.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_seq.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_malloc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_init.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_image.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_iccdata.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_icc.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_getopt.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_debug.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_cm.d ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Otest.obj -c ../H5Otest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ounknown.obj -c ../H5Ounknown.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5P.obj -c ../H5P.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pacpl.obj -c ../H5Pacpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_iccattrtab_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:730:49: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘jas_iccsig_t’ {aka ‘long unsigned int’} [-Wformat=] - 730 | fprintf(out, "attrno=%d; attrname=\"%s\"(0x%08x); attrtype=\"%s\"(0x%08x)\n", - | ~~~^ - | | - | unsigned int - | %08lx -...... - 733 | attr->name, - | ~~~~~~~~~~ - | | - | jas_iccsig_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:730:74: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 7 has type ‘jas_iccsig_t’ {aka ‘long unsigned int’} [-Wformat=] - 730 | fprintf(out, "attrno=%d; attrname=\"%s\"(0x%08x); attrtype=\"%s\"(0x%08x)\n", - | ~~~^ - | | - | unsigned int - | %08lx -...... - 735 | attrval->type - | ~~~~~~~~~~~~~ - | | - | jas_iccsig_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_iccattrval_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:886:41: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘jas_iccsig_t’ {aka ‘long unsigned int’} [-Wformat=] - 886 | fprintf(out, "refcnt = %d; type = 0x%08x %s\n", attrval->refcnt, - | ~~~^ - | | - | unsigned int - | %08lx - 887 | attrval->type, jas_iccsigtostr(attrval->type, &buf[0])); - | ~~~~~~~~~~~~~ - | | - | jas_iccsig_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icccurv_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1044:37: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint32_t’ {aka ‘long unsigned int’} [-Wformat=] - 1044 | fprintf(out, "number of entires = %d\n", curv->numents); - | ~^ ~~~~~~~~~~~~~ - | | | - | int jas_iccuint32_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icctxtdesc_copy’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1072:20: warning: variable ‘txtdesc’ set but not used [-Wunused-but-set-variable] - 1072 | jas_icctxtdesc_t *txtdesc = &attrval->data.txtdesc; - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icctxtdesc_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1170:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint32_t’ {aka ‘long unsigned int’} [-Wformat=] - 1170 | fprintf(out, "uclangcode = %d; uclen = %d\n", txtdesc->uclangcode, - | ~^ ~~~~~~~~~~~~~~~~~~~ - | | | - | int jas_iccuint32_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1170:42: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘jas_iccuint32_t’ {aka ‘long unsigned int’} [-Wformat=] - 1170 | fprintf(out, "uclangcode = %d; uclen = %d\n", txtdesc->uclangcode, - | ~^ - | | - | int - | %ld - 1171 | txtdesc->uclen); - | ~~~~~~~~~~~~~~ - | | - | jas_iccuint32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1172:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1172 | fprintf(out, "sccode = %d\n", txtdesc->sccode); - | ~^ ~~~~~~~~~~~~~~~ - | | | - | int jas_iccuint16_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut8_copy’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1259:17: warning: variable ‘lut8’ set but not used [-Wunused-but-set-variable] - 1259 | jas_icclut8_t *lut8 = &attrval->data.lut8; - | ^~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut8_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1403:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1403 | fprintf(out, "numintabents=%d, numouttabents=%d\n", - | ~^ - | | - | int - | %ld - 1404 | lut8->numintabents, lut8->numouttabents); - | ~~~~~~~~~~~~~~~~~~ - | | - | jas_iccuint16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1403:48: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1403 | fprintf(out, "numintabents=%d, numouttabents=%d\n", - | ~^ - | | - | int - | %ld - 1404 | lut8->numintabents, lut8->numouttabents); - | ~~~~~~~~~~~~~~~~~~~ - | | - | jas_iccuint16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut16_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1567:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1567 | fprintf(out, "numintabents=%d, numouttabents=%d\n", - | ~^ - | | - | int - | %ld - 1568 | lut16->numintabents, lut16->numouttabents); - | ~~~~~~~~~~~~~~~~~~~ - | | - | jas_iccuint16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1567:48: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘jas_iccuint16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1567 | fprintf(out, "numintabents=%d, numouttabents=%d\n", - | ~^ - | | - | int - | %ld - 1568 | lut16->numintabents, lut16->numouttabents); - | ~~~~~~~~~~~~~~~~~~~~ - | | - | jas_iccuint16_t {aka long unsigned int} -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pdapl.obj -c ../H5Pdapl.c -In file included from ../H5Pdapl.c:35: -../H5Pdapl.c: In function ‘H5Pget_efile_prefix’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Pdapl.c:1280:13: note: in expansion of macro ‘HDstrncpy’ - 1280 | HDstrncpy(prefix, my_prefix, MIN(len + 1, size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Pdapl.c:1278:15: note: in expansion of macro ‘HDstrlen’ - 1278 | len = HDstrlen(my_prefix); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c: In function ‘jas_image_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:824:45: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘jas_image_cmpttype_t’ {aka ‘long int’} [-Wformat=] - 824 | fprintf(out, "prec=%d, sgnd=%d, cmpttype=%d\n", cmpt->prec_, - | ~^ - | | - | int - | %ld - 825 | cmpt->sgnd_, cmpt->type_); - | ~~~~~~~~~~~ - | | - | jas_image_cmpttype_t {aka long int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c: In function ‘jas_image_chclrspc’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1289:6: warning: variable ‘numoutchans’ set but not used [-Wunused-but-set-variable] - 1289 | int numoutchans; - | ^~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1282:6: warning: variable ‘numinauxchans’ set but not used [-Wunused-but-set-variable] - 1282 | int numinauxchans; - | ^~~~~~~~~~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c: In function ‘jas_seq2d_output’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:426:17: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 426 | fprintf(out, "%d %d\n", jas_seq2d_xstart(matrix), - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:426:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 426 | fprintf(out, "%d %d\n", jas_seq2d_xstart(matrix), - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:428:17: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 428 | fprintf(out, "%d %d\n", jas_matrix_numcols(matrix), - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:428:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 428 | fprintf(out, "%d %d\n", jas_matrix_numcols(matrix), - | ~^ - | | - | int - | %ld -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c: In function ‘jas_stream_tmpfile’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c:368:2: warning: ignoring return value of ‘tmpnam’, declared with attribute warn_unused_result [-Wunused-result] - 368 | tmpnam(obj->pathname); - | ^~~~~~~~~~~~~~~~~~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pdcpl.obj -c ../H5Pdcpl.c -../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] - 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:84:36: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ - 84 | #define H5D_CRT_LAYOUT_DEF H5D_DEF_LAYOUT_CONTIG - | ^~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:209:46: note: in expansion of macro ‘H5D_CRT_LAYOUT_DEF’ - 209 | static const H5O_layout_t H5D_def_layout_g = H5D_CRT_LAYOUT_DEF; /* Default storage layout */ - | ^~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] - 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:84:36: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ - 84 | #define H5D_CRT_LAYOUT_DEF H5D_DEF_LAYOUT_CONTIG - | ^~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:209:46: note: in expansion of macro ‘H5D_CRT_LAYOUT_DEF’ - 209 | static const H5O_layout_t H5D_def_layout_g = H5D_CRT_LAYOUT_DEF; /* Default storage layout */ - | ^~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] - 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:84:36: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ - 84 | #define H5D_CRT_LAYOUT_DEF H5D_DEF_LAYOUT_CONTIG - | ^~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:209:46: note: in expansion of macro ‘H5D_CRT_LAYOUT_DEF’ - 209 | static const H5O_layout_t H5D_def_layout_g = H5D_CRT_LAYOUT_DEF; /* Default storage layout */ - | ^~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:75:33: warning: missing braces around initializer [-Wmissing-braces] - 75 | #define H5D_DEF_LAYOUT_COMPACT {H5D_COMPACT, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:221:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_COMPACT’ - 221 | static H5O_layout_t H5D_def_layout_compact_g = H5D_DEF_LAYOUT_COMPACT; - | ^~~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:75:33: warning: missing braces around initializer [-Wmissing-braces] - 75 | #define H5D_DEF_LAYOUT_COMPACT {H5D_COMPACT, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:221:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_COMPACT’ - 221 | static H5O_layout_t H5D_def_layout_compact_g = H5D_DEF_LAYOUT_COMPACT; - | ^~~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:75:33: warning: missing braces around initializer [-Wmissing-braces] - 75 | #define H5D_DEF_LAYOUT_COMPACT {H5D_COMPACT, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:221:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_COMPACT’ - 221 | static H5O_layout_t H5D_def_layout_compact_g = H5D_DEF_LAYOUT_COMPACT; - | ^~~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] - 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:222:47: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ - 222 | static H5O_layout_t H5D_def_layout_contig_g = H5D_DEF_LAYOUT_CONTIG; - | ^~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] - 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:222:47: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ - 222 | static H5O_layout_t H5D_def_layout_contig_g = H5D_DEF_LAYOUT_CONTIG; - | ^~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:76:33: warning: missing braces around initializer [-Wmissing-braces] - 76 | #define H5D_DEF_LAYOUT_CONTIG {H5D_CONTIGUOUS, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:222:47: note: in expansion of macro ‘H5D_DEF_LAYOUT_CONTIG’ - 222 | static H5O_layout_t H5D_def_layout_contig_g = H5D_DEF_LAYOUT_CONTIG; - | ^~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:77:33: warning: missing braces around initializer [-Wmissing-braces] - 77 | #define H5D_DEF_LAYOUT_CHUNK {H5D_CHUNKED, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:223:46: note: in expansion of macro ‘H5D_DEF_LAYOUT_CHUNK’ - 223 | static H5O_layout_t H5D_def_layout_chunk_g = H5D_DEF_LAYOUT_CHUNK; - | ^~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:77:33: warning: missing braces around initializer [-Wmissing-braces] - 77 | #define H5D_DEF_LAYOUT_CHUNK {H5D_CHUNKED, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:223:46: note: in expansion of macro ‘H5D_DEF_LAYOUT_CHUNK’ - 223 | static H5O_layout_t H5D_def_layout_chunk_g = H5D_DEF_LAYOUT_CHUNK; - | ^~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:77:33: warning: missing braces around initializer [-Wmissing-braces] - 77 | #define H5D_DEF_LAYOUT_CHUNK {H5D_CHUNKED, H5O_LAYOUT_VERSION_DEFAULT, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:223:46: note: in expansion of macro ‘H5D_DEF_LAYOUT_CHUNK’ - 223 | static H5O_layout_t H5D_def_layout_chunk_g = H5D_DEF_LAYOUT_CHUNK; - | ^~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:78:33: warning: missing braces around initializer [-Wmissing-braces] - 78 | #define H5D_DEF_LAYOUT_VIRTUAL {H5D_VIRTUAL, H5O_LAYOUT_VERSION_4, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:224:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_VIRTUAL’ - 224 | static H5O_layout_t H5D_def_layout_virtual_g = H5D_DEF_LAYOUT_VIRTUAL; - | ^~~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:78:33: warning: missing braces around initializer [-Wmissing-braces] - 78 | #define H5D_DEF_LAYOUT_VIRTUAL {H5D_VIRTUAL, H5O_LAYOUT_VERSION_4, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:224:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_VIRTUAL’ - 224 | static H5O_layout_t H5D_def_layout_virtual_g = H5D_DEF_LAYOUT_VIRTUAL; - | ^~~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c:78:33: warning: missing braces around initializer [-Wmissing-braces] - 78 | #define H5D_DEF_LAYOUT_VIRTUAL {H5D_VIRTUAL, H5O_LAYOUT_VERSION_4, NULL, {H5D_DEF_LAYOUT_CHUNK_INIT}, {H5D_CONTIGUOUS, H5D_DEF_STORAGE_CONTIG_INIT}} - | ^ -../H5Pdcpl.c:224:48: note: in expansion of macro ‘H5D_DEF_LAYOUT_VIRTUAL’ - 224 | static H5O_layout_t H5D_def_layout_virtual_g = H5D_DEF_LAYOUT_VIRTUAL; - | ^~~~~~~~~~~~~~~~~~~~~~ -../H5Pdcpl.c: In function ‘H5P_get_fill_value’: -../H5Pdcpl.c:3329:54: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 3329 | if((dst_id = H5I_register(H5I_DATATYPE, H5T_copy(type, H5T_COPY_TRANSIENT), FALSE)) < 0) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Dpkg.h:30, - from ../H5Pdcpl.c:37: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c: In function ‘jp2_box_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:323:34: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 323 | fprintf(out, "type=%c%s%c (0x%08x); length=%d\n", '"', boxinfo->name, - | ~~~^ - | | - | unsigned int - | %08lx - 324 | '"', box->type, box->len); - | ~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:323:46: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 323 | fprintf(out, "type=%c%s%c (0x%08x); length=%d\n", '"', boxinfo->name, - | ~^ - | | - | int - | %ld - 324 | '"', box->type, box->len); - | ~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c: In function ‘jp2_cdef_dumpdata’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:435:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 435 | fprintf(out, "channo=%d; type=%d; assoc=%d\n", - | ~^ - | | - | int - | %ld - 436 | cdef->ents[i].channo, cdef->ents[i].type, cdef->ents[i].assoc); - | ~~~~~~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:435:34: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 435 | fprintf(out, "channo=%d; type=%d; assoc=%d\n", - | ~^ - | | - | int - | %ld - 436 | cdef->ents[i].channo, cdef->ents[i].type, cdef->ents[i].assoc); - | ~~~~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:435:44: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 435 | fprintf(out, "channo=%d; type=%d; assoc=%d\n", - | ~^ - | | - | int - | %ld - 436 | cdef->ents[i].channo, cdef->ents[i].type, cdef->ents[i].assoc); - | ~~~~~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c: In function ‘jp2_pclr_dumpdata’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:874:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 874 | fprintf(out, "LUT[%d][%d]=%d\n", i, j, pclr->lutdata[i * pclr->numchans + j]); - | ~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - | | | - | int int_fast32_t {aka long int} - | %ld -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c: In function ‘jp2_decode’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c:107:14: warning: variable ‘cdefd’ set but not used [-Wunused-but-set-variable] - 107 | jp2_cdef_t *cdefd; - | ^~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pdeprec.obj -c ../H5Pdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_ms_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:407:28: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 407 | fprintf(out, "type = 0x%04x (%s);", ms->id, mstabent->name); - | ~~~^ ~~~~~~ - | | | - | | uint_fast16_t {aka long unsigned int} - | unsigned int - | %04lx -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:409:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 409 | fprintf(out, " len = %d;", ms->len + 2); - | ~^ ~~~~~~~~~~~ - | | | - | int uint_fast16_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_sot_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:462:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 462 | fprintf(out, "tileno = %d; len = %d; partno = %d; numparts = %d\n", - | ~^ - | | - | int - | %ld - 463 | sot->tileno, sot->len, sot->partno, sot->numparts); - | ~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:462:36: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 462 | fprintf(out, "tileno = %d; len = %d; partno = %d; numparts = %d\n", - | ~^ - | | - | int - | %ld - 463 | sot->tileno, sot->len, sot->partno, sot->numparts); - | ~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_siz_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:562:28: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 562 | fprintf(out, "caps = 0x%02x;\n", siz->caps); - | ~~~^ ~~~~~~~~~ - | | | - | | uint_fast16_t {aka long unsigned int} - | unsigned int - | %02lx -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", - | ~^ - | | - | int - | %ld - 564 | siz->width, siz->height, siz->xoff, siz->yoff); - | ~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", - | ~^ - | | - | int - | %ld - 564 | siz->width, siz->height, siz->xoff, siz->yoff); - | ~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:49: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", - | ~^ - | | - | int - | %ld - 564 | siz->width, siz->height, siz->xoff, siz->yoff); - | ~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:563:60: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 563 | fprintf(out, "width = %d; height = %d; xoff = %d; yoff = %d;\n", - | ~^ - | | - | int - | %ld - 564 | siz->width, siz->height, siz->xoff, siz->yoff); - | ~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " - | ~^ - | | - | int - | %ld - 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, - | ~~~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:46: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " - | ~^ - | | - | int - | %ld - 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, - | ~~~~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:61: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " - | ~^ - | | - | int - | %ld - 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, - | ~~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:565:15: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 565 | fprintf(out, "tilewidth = %d; tileheight = %d; tilexoff = %d; " - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, - 567 | siz->tileyoff); - | ~~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:566:17: note: format string is defined here - 566 | "tileyoff = %d;\n", siz->tilewidth, siz->tileheight, siz->tilexoff, - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_cod_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:634:37: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 634 | fprintf(out, "prg = %d; numlyrs = %d;\n", - | ~^ - | | - | int - | %ld - 635 | cod->prg, cod->numlyrs); - | ~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_coc_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:712:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 712 | fprintf(out, "compno = %d; csty = 0x%02x; numdlvls = %d;\n", - | ~^ - | | - | int - | %ld - 713 | coc->compno, coc->compparms.csty, coc->compparms.numdlvls); - | ~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_rgn_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:843:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 843 | fprintf(out, "compno = %d; roisty = %d; roishift = %d\n", - | ~^ - | | - | int - | %ld - 844 | rgn->compno, rgn->roisty, rgn->roishift); - | ~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_qcc_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:936:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 936 | fprintf(out, "compno = %d; qntsty = %d; numguard = %d; " - | ~^ - | | - | int - | %ld - 937 | "numstepsizes = %d\n", qcc->compno, qcc->compparms.qntsty, qcc->compparms.numguard, - | ~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_sop_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1060:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1060 | fprintf(out, "seqno = %d;\n", sop->seqno); - | ~^ ~~~~~~~~~~ - | | | - | int uint_fast16_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_ppm_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1126:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1126 | fprintf(out, "ind=%d; len = %d;\n", ppm->ind, ppm->len); - | ~^ ~~~~~~~~ - | | | - | int uint_fast16_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_ppt_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1198:31: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 1198 | fprintf(out, "ind=%d; len = %d;\n", ppt->ind, ppt->len); - | ~^ ~~~~~~~~ - | | | - | int uint_fast32_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_poc_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1304:27: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1304 | fprintf(out, "cs[%d] = %d; ce[%d] = %d; ", - | ~^ - | | - | int - | %ld - 1305 | pchgno, pchg->compnostart, pchgno, pchg->compnoend); - | ~~~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1304:40: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1304 | fprintf(out, "cs[%d] = %d; ce[%d] = %d; ", - | ~^ - | | - | int - | %ld - 1305 | pchgno, pchg->compnostart, pchgno, pchg->compnoend); - | ~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1308:27: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1308 | fprintf(out, "le[%d] = %d\n", pchgno, pchg->lyrnoend); - | ~^ ~~~~~~~~~~~~~~ - | | | - | int uint_fast16_t {aka long unsigned int} - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_crg_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1371:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1371 | fprintf(out, "hoff[%d] = %d; voff[%d] = %d\n", compno, - | ~^ - | | - | int - | %ld - 1372 | comp->hoff, compno, comp->voff); - | ~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1371:44: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1371 | fprintf(out, "hoff[%d] = %d; voff[%d] = %d\n", compno, - | ~^ - | | - | int - | %ld - 1372 | comp->hoff, compno, comp->voff); - | ~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_com_dumpparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:1434:25: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 1434 | fprintf(out, "regid = %d;\n", com->regid); - | ~^ ~~~~~~~~~~ - | | | - | int uint_fast16_t {aka long unsigned int} - | %ld -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pdxpl.obj -c ../H5Pdxpl.c -In file included from ../H5Pdxpl.c:35: -../H5Pdxpl.c: In function ‘H5Pget_data_transform’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Pdxpl.c:1129:2: note: in expansion of macro ‘HDstrncpy’ - 1129 | HDstrncpy(expression, pexp, MIN(len + 1, size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Pdxpl.c:1127:11: note: in expansion of macro ‘HDstrlen’ - 1127 | len = HDstrlen(pexp); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_process_crg’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:414:13: warning: variable ‘crg’ set but not used [-Wunused-but-set-variable] - 414 | jpc_crg_t *crg; - | ^~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_tileinit’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:659:16: warning: variable ‘brcbgyend’ set but not used [-Wunused-but-set-variable] - 659 | uint_fast32_t brcbgyend; - | ^~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - - | ~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - - | ~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - - | ~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - - | ~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - - | ~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} - 2007 | rlvl->xstart, rlvl->yend - rlvl->ystart); - | ~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2005:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2005 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2006 | rlvl->xstart, rlvl->ystart, rlvl->xend, rlvl->yend, rlvl->xend - - 2007 | rlvl->xstart, rlvl->yend - rlvl->ystart); - | ~~~~~~~~~~~~~~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2011:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2011 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - - | ~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - - | ~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - - | ~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - - | ~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - - | ~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} - 2021 | prc->xstart, prc->yend - prc->ystart); - | ~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2019:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 2019 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld - 2020 | prc->xstart, prc->ystart, prc->xend, prc->yend, prc->xend - - 2021 | prc->xstart, prc->yend - prc->ystart); - | ~~~~~~~~~~~~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:29: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:38: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:47: warning: format ‘%d’ expects argument of type ‘int’, but argument 6 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:55: warning: format ‘%d’ expects argument of type ‘int’, but argument 7 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:2027:63: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘int_fast32_t’ {aka ‘long int’} [-Wformat=] - 2027 | fprintf(out, "xs =%d, ys = %d, xe = %d, ye = %d, w = %d, h = %d\n", - | ~^ - | | - | int - | %ld -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pencdec.obj -c ../H5Pencdec.c -In file included from ../H5Pencdec.c:29: -In function ‘H5P__encode_cb’, - inlined from ‘H5P__encode_cb’ at ../H5Pencdec.c:332:1: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Pencdec.c:351:13: note: in expansion of macro ‘HDstrncpy’ - 351 | HDstrncpy((char *)*(udata->pp), prop->name, prop_name_len); - | ^~~~~~~~~ -../H5Pencdec.c: In function ‘H5P__encode_cb’: -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Pencdec.c:349:25: note: in expansion of macro ‘HDstrlen’ - 349 | prop_name_len = HDstrlen(prop->name) + 1; - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_calcssmant’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:870:6: warning: variable ‘e’ set but not used [-Wunused-but-set-variable] - 870 | int e; - | ^ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainhdr’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:901:12: warning: variable ‘mctsynweight’ set but not used [-Wunused-but-set-variable] - 901 | jpc_fix_t mctsynweight; - | ^~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainbody’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1115:7: warning: variable ‘numbytes’ set but not used [-Wunused-but-set-variable] - 1115 | long numbytes; - | ^~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1101:6: warning: variable ‘tiley’ set but not used [-Wunused-but-set-variable] - 1101 | int tiley; - | ^~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1100:6: warning: variable ‘tilex’ set but not used [-Wunused-but-set-variable] - 1100 | int tilex; - | ^~~~~ -At top level: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:883:12: warning: ‘jpc_calcssexp’ defined but not used [-Wunused-function] - 883 | static int jpc_calcssexp(jpc_fix_t stepsize) - | ^~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:867:12: warning: ‘jpc_calcssmant’ defined but not used [-Wunused-function] - 867 | static int jpc_calcssmant(jpc_fix_t stepsize) - | ^~~~~~~~~~~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c: In function ‘jpc_mqdec_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c:304:39: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 304 | fprintf(out, "IND %d, MPS %d, QEVAL %x\n", (int) (*mqdec->curctx - - | ~^ - | | - | unsigned int - | %lx - 305 | jpc_mqstates), (*mqdec->curctx)->mps, (*mqdec->curctx)->qeval); - | ~~~~~~~~~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c: In function ‘jpc_mqenc_dump’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:386:26: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 3 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 386 | fprintf(out, "AREG = %08x, CREG = %08x, CTREG = %d\n", - | ~~~^ - | | - | unsigned int - | %08lx - 387 | mqenc->areg, mqenc->creg, mqenc->ctreg); - | ~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:386:39: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 4 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 386 | fprintf(out, "AREG = %08x, CREG = %08x, CTREG = %d\n", - | ~~~^ - | | - | unsigned int - | %08lx - 387 | mqenc->areg, mqenc->creg, mqenc->ctreg); - | ~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:386:51: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘uint_fast32_t’ {aka ‘long unsigned int’} [-Wformat=] - 386 | fprintf(out, "AREG = %08x, CREG = %08x, CTREG = %d\n", - | ~^ - | | - | int - | %ld - 387 | mqenc->areg, mqenc->creg, mqenc->ctreg); - | ~~~~~~~~~~~~ - | | - | uint_fast32_t {aka long unsigned int} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:388:49: warning: format ‘%x’ expects argument of type ‘unsigned int’, but argument 5 has type ‘uint_fast16_t’ {aka ‘long unsigned int’} [-Wformat=] - 388 | fprintf(out, "IND = %02d, MPS = %d, QEVAL = %04x\n", - | ~~~^ - | | - | unsigned int - | %04lx - 389 | (int) (*mqenc->curctx - jpc_mqstates), (*mqenc->curctx)->mps, - 390 | (*mqenc->curctx)->qeval); - | ~~~~~~~~~~~~~~~~~~~~~~~ - | | - | uint_fast16_t {aka long unsigned int} -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pfapl.obj -c ../H5Pfapl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pfcpl.obj -c ../H5Pfcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pfmpl.obj -c ../H5Pfmpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:288:2: warning: initialization of ‘int (*)(int *, int, int, int, int, int)’ from incompatible pointer type ‘int (*)(jpc_fix_t *, int, int, int, int, int)’ {aka ‘int (*)(long int *, int, int, int, int, int)’} [-Wincompatible-pointer-types] - 288 | jpc_ft_analyze, - | ^~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:288:2: note: (near initialization for ‘jpc_ft_qmfb2d.analyze’) -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:295:2: warning: initialization of ‘int (*)(int *, int, int, int, int, int)’ from incompatible pointer type ‘int (*)(jpc_fix_t *, int, int, int, int, int)’ {aka ‘int (*)(long int *, int, int, int, int, int)’} [-Wincompatible-pointer-types] - 295 | jpc_ns_analyze, - | ^~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:295:2: note: (near initialization for ‘jpc_ns_qmfb2d.analyze’) -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:296:2: warning: initialization of ‘int (*)(int *, int, int, int, int, int)’ from incompatible pointer type ‘int (*)(jpc_fix_t *, int, int, int, int, int)’ {aka ‘int (*)(long int *, int, int, int, int, int)’} [-Wincompatible-pointer-types] - 296 | jpc_ns_synthesize, - | ^~~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:296:2: note: (near initialization for ‘jpc_ns_qmfb2d.synthesize’) -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c: In function ‘jpc_ft_synthesize’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:1607:11: warning: assignment to ‘jpc_fix_t *’ {aka ‘long int *’} from incompatible pointer type ‘int *’ [-Wincompatible-pointer-types] - 1607 | startptr = &a[0]; - | ^ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:1615:11: warning: assignment to ‘jpc_fix_t *’ {aka ‘long int *’} from incompatible pointer type ‘int *’ [-Wincompatible-pointer-types] - 1615 | startptr = &a[0]; - | ^ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pgcpl.obj -c ../H5Pgcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pint.obj -c ../H5Pint.c -../H5Pint.c: In function ‘H5P__iterate_pclass_cb’: -../H5Pint.c:4066:11: warning: unused variable ‘key’ [-Wunused-variable] - 4066 | char *key = (char *)_key; /* Pointer to the property's name */ - | ^~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c: In function ‘jpc_enc_enccblk’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:205:18: warning: variable ‘rlvl’ set but not used [-Wunused-but-set-variable] - 205 | jpc_enc_rlvl_t *rlvl; - | ^~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:200:6: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] - 200 | int ret; - | ^~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Plapl.obj -c ../H5Plapl.c -../H5Plapl.c: In function ‘H5P__lacc_elink_fapl_cmp’: -../H5Plapl.c:570:16: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] - 570 | herr_t status; - | ^~~~~~ -In file included from ../H5Plapl.c:35: -../H5Plapl.c: In function ‘H5Pget_elink_prefix’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5Plapl.c:1062:13: note: in expansion of macro ‘HDstrncpy’ - 1062 | HDstrncpy(prefix, my_prefix, MIN(len + 1, size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5Plapl.c:1060:15: note: in expansion of macro ‘HDstrlen’ - 1060 | len = HDstrlen(my_prefix); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Plcpl.obj -c ../H5Plcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:77: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c: In function ‘jpc_tsfb_analyze’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:177:3: warning: passing argument 2 of ‘jpc_tsfb_analyze2’ from incompatible pointer type [-Wincompatible-pointer-types] - 177 | (&(matrix)->rows_[i][j]) - | ^ - | | - | jas_seqent_t * {aka long int *} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:259:3: note: in expansion of macro ‘jas_matrix_getref’ - 259 | (jas_matrix_getref(s, (y) - (s)->ystart_, (x) - (s)->xstart_)) - | ^~~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:130:55: note: in expansion of macro ‘jas_seq2d_getref’ - 130 | return (tsfb->numlvls > 0) ? jpc_tsfb_analyze2(tsfb, jas_seq2d_getref(a, - | ^~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:85:46: note: expected ‘int *’ but argument is of type ‘jas_seqent_t *’ {aka ‘long int *’} - 85 | int jpc_tsfb_analyze2(jpc_tsfb_t *tsfb, int *a, int xstart, int ystart, - | ~~~~~^ -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:77: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c: In function ‘jpc_tsfb_synthesize’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:177:3: warning: passing argument 2 of ‘jpc_tsfb_synthesize2’ from incompatible pointer type [-Wincompatible-pointer-types] - 177 | (&(matrix)->rows_[i][j]) - | ^ - | | - | jas_seqent_t * {aka long int *} -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:259:3: note: in expansion of macro ‘jas_matrix_getref’ - 259 | (jas_matrix_getref(s, (y) - (s)->ystart_, (x) - (s)->xstart_)) - | ^~~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:158:4: note: in expansion of macro ‘jas_seq2d_getref’ - 158 | jas_seq2d_getref(a, jas_seq2d_xstart(a), jas_seq2d_ystart(a)), - | ^~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:88:49: note: expected ‘int *’ but argument is of type ‘jas_seqent_t *’ {aka ‘long int *’} - 88 | int jpc_tsfb_synthesize2(jpc_tsfb_t *tsfb, int *a, int xstart, int ystart, - | ~~~~~^ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/Linux -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c: In function ‘jpc_atoaf’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:11: warning: comparison between pointer and zero character constant [-Wpointer-compare] - 105 | if (cp != '\0') { - | ^~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:8: note: did you mean to dereference the pointer? - 105 | if (cp != '\0') { - | ^ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:12: warning: comparison between pointer and zero character constant [-Wpointer-compare] - 123 | if (cp != '\0') { - | ^~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:9: note: did you mean to dereference the pointer? - 123 | if (cp != '\0') { - | ^ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -/usr/bin/ar -rc libjp2.a jas_cm.o jas_debug.o jas_getopt.o jas_icc.o jas_iccdata.o jas_image.o jas_init.o jas_malloc.o jas_seq.o jas_stream.o jas_string.o jas_tmr.o jas_tvp.o jas_version.o jp2_cod.o jp2_dec.o jp2_enc.o jpc_bs.o jpc_cs.o jpc_dec.o jpc_enc.o jpc_math.o jpc_mct.o jpc_mqcod.o jpc_mqdec.o jpc_mqenc.o jpc_qmfb.o jpc_t1cod.o jpc_t1dec.o jpc_t1enc.o jpc_t2cod.o jpc_t2dec.o jpc_t2enc.o jpc_tagtree.o jpc_tsfb.o jpc_util.o -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -/usr/bin/ranlib libjp2.a -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -g++ -o libjp2.so -shared -fPIC -Wl,-hlibjp2.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jas_cm.o jas_debug.o jas_getopt.o jas_icc.o jas_iccdata.o jas_image.o jas_init.o jas_malloc.o jas_seq.o jas_stream.o jas_string.o jas_tmr.o jas_tvp.o jas_version.o jp2_cod.o jp2_dec.o jp2_enc.o jpc_bs.o jpc_cs.o jpc_dec.o jpc_enc.o jpc_math.o jpc_mct.o jpc_mqcod.o jpc_mqdec.o jpc_mqenc.o jpc_qmfb.o jpc_t1cod.o jpc_t1dec.o jpc_t1enc.o jpc_t2cod.o jpc_t2dec.o jpc_t2enc.o jpc_tagtree.o jpc_tsfb.o jpc_util.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -/usr/bin/ld: jas_stream.o: in function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7e9): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pocpl.obj -c ../H5Pocpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_util.d -MT jpc_util.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pocpypl.obj -c ../H5Pocpypl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tsfb.d -MT jpc_tsfb.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_tagtree.d -MT jpc_tagtree.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Pstrcpl.obj -c ../H5Pstrcpl.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2enc.d -MT jpc_t2enc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ptest.obj -c ../H5Ptest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2dec.d -MT jpc_t2dec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t2cod.d -MT jpc_t2cod.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5PB.obj -c ../H5PB.c -../H5PB.c: In function ‘H5PB_dest’: -../H5PB.c:487:7: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 487 | f = fio_info->f; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1enc.d -MT jpc_t1enc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1dec.d -MT jpc_t1dec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5PL.obj -c ../H5PL.c -In file included from ../H5PL.c:23: -../H5PL.c: In function ‘H5PLget’: -../H5private.h:1364:31: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 1364 | #define HDstrncpy(X,Y,Z) strncpy(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5PL.c:623:9: note: in expansion of macro ‘HDstrncpy’ - 623 | HDstrncpy(pathname, dl_path, MIN((size_t)(len + 1), size)); - | ^~~~~~~~~ -../H5private.h:1355:28: note: length computed here - 1355 | #define HDstrlen(S) strlen(S) - | ^~~~~~~~~ -../H5PL.c:621:11: note: in expansion of macro ‘HDstrlen’ - 621 | len = HDstrlen(dl_path); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_t1cod.d -MT jpc_t1cod.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_qmfb.d -MT jpc_qmfb.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5R.obj -c ../H5R.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqenc.d -MT jpc_mqenc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Rdeprec.obj -c ../H5Rdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqdec.d -MT jpc_mqdec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5UC.obj -c ../H5UC.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mqcod.d -MT jpc_mqcod.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_mct.d -MT jpc_mct.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_math.d -MT jpc_math.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5RS.obj -c ../H5RS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_enc.d -MT jpc_enc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_dec.d -MT jpc_dec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5S.obj -c ../H5S.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_cs.d -MT jpc_cs.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jpc_bs.d -MT jpc_bs.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Sall.obj -c ../H5Sall.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_enc.d -MT jp2_enc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Sdbg.obj -c ../H5Sdbg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_dec.d -MT jp2_dec.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jp2_cod.d -MT jp2_cod.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_version.d -MT jas_version.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tvp.d -MT jas_tvp.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_tmr.d -MT jas_tmr.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_string.d -MT jas_string.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_stream.d -MT jas_stream.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_seq.d -MT jas_seq.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_malloc.d -MT jas_malloc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_init.d -MT jas_init.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_image.d -MT jas_image.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_iccdata.d -MT jas_iccdata.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_icc.d -MT jas_icc.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_getopt.d -MT jas_getopt.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_debug.d -MT jas_debug.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -MM -MF jas_cm.d -MT jas_cm.obj ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Shyper.obj -c ../H5Shyper.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Snone.obj -c ../H5Snone.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Spoint.obj -c ../H5Spoint.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_cm.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_cm.c:68: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_debug.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_debug.c:69: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Sselect.obj -c ../H5Sselect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Stest.obj -c ../H5Stest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_getopt.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_getopt.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_getopt.c:77: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_icc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:63: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icctxtdesc_copy’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1072:20: warning: variable ‘txtdesc’ set but not used [-Wunused-but-set-variable] - 1072 | jas_icctxtdesc_t *txtdesc = &attrval->data.txtdesc; - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c: In function ‘jas_icclut8_copy’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_icc.c:1259:17: warning: variable ‘lut8’ set but not used [-Wunused-but-set-variable] - 1259 | jas_icclut8_t *lut8 = &attrval->data.lut8; - | ^~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SL.obj -c ../H5SL.c -../H5SL.c: In function ‘H5SL_term_package’: -../H5SL.c:655:21: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] - 655 | herr_t ret; - | ^~~ -In file included from ../H5SL.c:64: -../H5SL.c: In function ‘H5SL_search’: -../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 2267 | return(ret_value); \ - | ^ -../H5SL.c:1397:11: note: ‘ret_value’ was declared here - 1397 | void *ret_value; /* Return value */ - | ^~~~~~~~~ -In file included from ../H5SL.c:64: -../H5SL.c: In function ‘H5SL_find’: -../H5private.h:2267:11: warning: ‘ret_value’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 2267 | return(ret_value); \ - | ^ -../H5SL.c:1698:18: note: ‘ret_value’ was declared here - 1698 | H5SL_node_t *ret_value; /* Return value */ - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_iccdata.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_iccdata.c:62: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SM.obj -c ../H5SM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_image.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_math.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:80: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c: In function ‘jas_image_chclrspc’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1289:6: warning: variable ‘numoutchans’ set but not used [-Wunused-but-set-variable] - 1289 | int numoutchans; - | ^~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_image.c:1282:6: warning: variable ‘numinauxchans’ set but not used [-Wunused-but-set-variable] - 1282 | int numinauxchans; - | ^~~~~~~~~~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SMbtree2.obj -c ../H5SMbtree2.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_init.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_init.c:66: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_malloc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_malloc.c:80: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SMcache.obj -c ../H5SMcache.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SMmessage.obj -c ../H5SMmessage.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_seq.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_seq.c:78: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5SMtest.obj -c ../H5SMtest.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5ST.obj -c ../H5ST.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_stream.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_stream.c:89: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_string.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_string.c:76: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_tmr.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_tmr.h:66, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tmr.c:76: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_tvp.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_tvp.c:77: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jas_version.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_version.h:71, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jas_version.c:62: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jp2_cod.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_stream.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_cod.c:77: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5T.obj -c ../H5T.c -../H5T.c: In function ‘H5T_path_find’: -../H5T.c:4499:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 4499 | if(NULL == (path->src = H5T_copy(src, H5T_COPY_ALL))) - | ^~~ -../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) - | ~~~~~~~^~~~~~ -../H5T.c:4501:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 4501 | if(NULL == (path->dst = H5T_copy(dst, H5T_COPY_ALL))) - | ^~~ -../H5T.c:3124:17: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 3124 | H5T_copy(H5T_t *old_dt, H5T_copy_t method) - | ~~~~~~~^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jp2_dec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_image.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c:74: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c: In function ‘jp2_decode’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_dec.c:107:14: warning: variable ‘cdefd’ set but not used [-Wunused-but-set-variable] - 107 | jp2_cdef_t *cdefd; - | ^~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tarray.obj -c ../H5Tarray.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jp2_enc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2/jp2_enc.c:75: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tbit.obj -c ../H5Tbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_bs.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_bs.c:78: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tcommit.obj -c ../H5Tcommit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tcompound.obj -c ../H5Tcompound.c -../H5Tcompound.c: In function ‘H5T__insert’: -../H5Tcompound.c:459:56: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 459 | parent->shared->u.compnd.memb[idx].type = H5T_copy(member, H5T_COPY_ALL); - | ^~~~~~ -In file included from ../H5Tpkg.h:37, - from ../H5Tcompound.c:33: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_cs.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:78: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_qcd_getparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:972:22: warning: ‘tmp’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 972 | compparms->numguard = (tmp >> 5) & 7; - | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:961:15: note: ‘tmp’ was declared here - 961 | uint_fast8_t tmp; - | ^~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c: In function ‘jpc_qcc_getparms’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:972:22: warning: ‘tmp’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 972 | compparms->numguard = (tmp >> 5) & 7; - | ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:961:15: note: ‘tmp’ was declared here - 961 | uint_fast8_t tmp; - | ^~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_cs.c:902:15: warning: ‘tmp’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 902 | qcc->compno = tmp; - | ~~~~~~~~~~~~^~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_dec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:76: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_process_crg’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:414:13: warning: variable ‘crg’ set but not used [-Wunused-but-set-variable] - 414 | jpc_crg_t *crg; - | ^~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c: In function ‘jpc_dec_tileinit’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_dec.c:659:16: warning: variable ‘brcbgyend’ set but not used [-Wunused-but-set-variable] - 659 | uint_fast32_t brcbgyend; - | ^~~~~~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_enc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:78: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_calcssmant’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:870:6: warning: variable ‘e’ set but not used [-Wunused-but-set-variable] - 870 | int e; - | ^ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainhdr’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:901:12: warning: variable ‘mctsynweight’ set but not used [-Wunused-but-set-variable] - 901 | jpc_fix_t mctsynweight; - | ^~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c: In function ‘jpc_enc_encodemainbody’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1115:7: warning: variable ‘numbytes’ set but not used [-Wunused-but-set-variable] - 1115 | long numbytes; - | ^~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1101:6: warning: variable ‘tiley’ set but not used [-Wunused-but-set-variable] - 1101 | int tiley; - | ^~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:1100:6: warning: variable ‘tilex’ set but not used [-Wunused-but-set-variable] - 1100 | int tilex; - | ^~~~~ -At top level: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:883:12: warning: ‘jpc_calcssexp’ defined but not used [-Wunused-function] - 883 | static int jpc_calcssexp(jpc_fix_t stepsize) - | ^~~~~~~~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_enc.c:867:12: warning: ‘jpc_calcssmant’ defined but not used [-Wunused-function] - 867 | static int jpc_calcssmant(jpc_fix_t stepsize) - | ^~~~~~~~~~~~~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_math.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_math.c -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_mct.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_seq.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mct.c:76: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_mqcod.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqcod.c:74: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_mqdec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqdec.c:78: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_mqenc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_stream.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_mqenc.c:77: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_qmfb.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_fix.h:81, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_qmfb.c:82: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t1cod.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1cod.c:77: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t1dec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_fix.h:81, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1dec.c:78: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t1enc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_fix.h:81, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:78: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c: In function ‘jpc_enc_enccblk’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:205:18: warning: variable ‘rlvl’ set but not used [-Wunused-but-set-variable] - 205 | jpc_enc_rlvl_t *rlvl; - | ^~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t1enc.c:200:6: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable] - 200 | int ret; - | ^~~ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t2cod.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_math.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2cod.c:70: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t2dec.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_types.h:73, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2dec.c:78: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tconv.obj -c ../H5Tconv.c -../H5Tconv.c: In function ‘H5T_conv_struct_free’: -../H5Tconv.c:1876:17: warning: variable ‘status’ set but not used [-Wunused-but-set-variable] - 1876 | int status; - | ^~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_t2enc.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_fix.h:81, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_t2enc.c:78: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tcset.obj -c ../H5Tcset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tdbg.obj -c ../H5Tdbg.c -../H5Tdbg.c: In function ‘H5T_debug’: -../H5Tdbg.c:428:4: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 428 | (unsigned long)(dt->shared->u.enumer.value + (i * base_size) + k)); - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_tagtree.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tagtree.c:79: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tdeprec.obj -c ../H5Tdeprec.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tenum.obj -c ../H5Tenum.c -../H5Tenum.c: In function ‘H5T__enum_create’: -../H5Tenum.c:110:42: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 110 | ret_value->shared->parent = H5T_copy(parent, H5T_COPY_ALL); - | ^~~~~~ -In file included from ../H5Tpkg.h:37, - from ../H5Tenum.c:26: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Tenum.c: In function ‘H5T_enum_nameof’: -../H5Tenum.c:411:38: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 411 | if(NULL == (copied_dt = H5T_copy(dt, H5T_COPY_ALL))) - | ^~ -In file included from ../H5Tpkg.h:37, - from ../H5Tenum.c:26: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -../H5Tenum.c: In function ‘H5T_enum_valueof’: -../H5Tenum.c:550:35: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 550 | if (NULL==(copied_dt=H5T_copy(dt, H5T_COPY_ALL))) - | ^~ -In file included from ../H5Tpkg.h:37, - from ../H5Tenum.c:26: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_tsfb.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_malloc.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_tsfb.c:76: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tfields.obj -c ../H5Tfields.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DEXCLUDE_MIF_SUPPORT -DEXCLUDE_PNM_SUPPORT -DEXCLUDE_BMP_SUPPORT -DEXCLUDE_RAS_SUPPORT -DEXCLUDE_JPG_SUPPORT -DEXCLUDE_PGX_SUPPORT -D_EXPORT -DWIN64 -D_VISUALC_ -DJAS_WIN_MSVC_BUILD -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -o jpc_util.obj -c ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c -In file included from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_math.h:77, - from ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:79: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:20:14: note: #pragma message: JAS compiling as DLL export - 20 | # pragma message( "JAS compiling as DLL export" ) - | ^~~~~~~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c: In function ‘jpc_atoaf’: -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:11: warning: comparison between pointer and zero character constant [-Wpointer-compare] - 105 | if (cp != '\0') { - | ^~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:105:8: note: did you mean to dereference the pointer? - 105 | if (cp != '\0') { - | ^ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:12: warning: comparison between pointer and zero character constant [-Wpointer-compare] - 123 | if (cp != '\0') { - | ^~ -../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc/jpc_util.c:123:9: note: did you mean to dereference the pointer? - 123 | if (cp != '\0') { - | ^ -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-windres -I. -I../O.Common -I. -I. -I.. -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jp2 -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/jpc -I../../../../../../include/compiler/gcc -I../../../../../../include/os/WIN32 -I../../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../../supportApp/GraphicsMagickSrc -I../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include ../../../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/base/jp2.rc jp2.coff -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make[7]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o jp2.dll -shared -Wl,--out-implib,libjp2.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ jas_cm.obj jas_debug.obj jas_getopt.obj jas_icc.obj jas_iccdata.obj jas_image.obj jas_init.obj jas_malloc.obj jas_seq.obj jas_stream.obj jas_string.obj jas_tmr.obj jas_tvp.obj jas_version.obj jp2_cod.obj jp2_dec.obj jp2_enc.obj jpc_bs.obj jpc_cs.obj jpc_dec.obj jpc_enc.obj jpc_math.obj jpc_mct.obj jpc_mqcod.obj jpc_mqdec.obj jpc_mqenc.obj jpc_qmfb.obj jpc_t1cod.obj jpc_t1dec.obj jpc_t1enc.obj jpc_t2cod.obj jpc_t2dec.obj jpc_t2enc.obj jpc_tagtree.obj jpc_tsfb.obj jpc_util.obj jp2.coff -lws2_32 -make[7]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jp2/src/libjasper/O.windows-x64-mingw' -make -C ./jbig install -make -C ./libjbig install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tfixed.obj -c ../H5Tfixed.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' -mkdir -p O.Common -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig_tab.d ../jbig_tab.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig.d ../jbig.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tfloat.obj -c ../H5Tfloat.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tnative.obj -c ../H5Tnative.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Toffset.obj -c ../H5Toffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../jbig.c -../jbig.c: In function ‘jbg_dec_merge_planes’: -../jbig.c:3041:7: warning: variable ‘bpp’ set but not used [-Wunused-but-set-variable] - 3041 | int bpp; - | ^~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -c ../jbig_tab.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -/usr/bin/ar -rc libjbig.a jbig.o jbig_tab.o -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -/usr/bin/ranlib libjbig.a -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -g++ -o libjbig.so -shared -fPIC -Wl,-hlibjbig.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jbig.o jbig_tab.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ - T_A=windows-x64-mingw install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig_tab.d -MT jbig_tab.obj ../jbig_tab.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Toh.obj -c ../H5Toh.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -MM -MF jbig.d -MT jbig.obj ../jbig.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Topaque.obj -c ../H5Topaque.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Torder.obj -c ../H5Torder.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tpad.obj -c ../H5Tpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o jbig.obj -c ../jbig.c -In file included from ../jbig.c:52: -../jbig.h:255: warning: ignoring #pragma warning [-Wunknown-pragmas] - 255 | # pragma warning( disable : 4273 ) - | -../jbig.h:267: warning: ignoring #pragma warning [-Wunknown-pragmas] - 267 | # pragma warning( disable : 4018 ) - | -../jbig.h:268: warning: ignoring #pragma warning [-Wunknown-pragmas] - 268 | # pragma warning( disable : 4244 ) - | -../jbig.h:269: warning: ignoring #pragma warning [-Wunknown-pragmas] - 269 | # pragma warning( disable : 4142 ) - | -../jbig.c:704:15: warning: ‘jbg_ceil_half’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 704 | unsigned long jbg_ceil_half(unsigned long x, int n) - | ^~~~~~~~~~~~~ -../jbig.c:744:6: warning: ‘jbg_enc_init’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 744 | void jbg_enc_init(struct jbg_enc_state *s, unsigned long x, unsigned long y, - | ^~~~~~~~~~~~ -../jbig.c:810:5: warning: ‘jbg_enc_lrlmax’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 810 | int jbg_enc_lrlmax(struct jbg_enc_state *s, unsigned long x, - | ^~~~~~~~~~~~~~ -../jbig.c:828:6: warning: ‘jbg_enc_layers’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 828 | void jbg_enc_layers(struct jbg_enc_state *s, int d) - | ^~~~~~~~~~~~~~ -../jbig.c:847:5: warning: ‘jbg_enc_lrange’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 847 | int jbg_enc_lrange(struct jbg_enc_state *s, int dl, int dh) - | ^~~~~~~~~~~~~~ -../jbig.c:861:6: warning: ‘jbg_enc_options’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 861 | void jbg_enc_options(struct jbg_enc_state *s, int order, int options, - | ^~~~~~~~~~~~~~~ -../jbig.c:1682:6: warning: ‘jbg_int2dppriv’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 1682 | void jbg_int2dppriv(unsigned char *dptable, const char *internal) - | ^~~~~~~~~~~~~~ -../jbig.c:1715:6: warning: ‘jbg_dppriv2int’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 1715 | void jbg_dppriv2int(char *internal, const unsigned char *dptable) - | ^~~~~~~~~~~~~~ -../jbig.c:1745:6: warning: ‘jbg_enc_out’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 1745 | void jbg_enc_out(struct jbg_enc_state *s) - | ^~~~~~~~~~~ -../jbig.c:1923:6: warning: ‘jbg_enc_free’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 1923 | void jbg_enc_free(struct jbg_enc_state *s) - | ^~~~~~~~~~~~ -../jbig.c:1977:13: warning: ‘jbg_strerror’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 1977 | const char *jbg_strerror(int errnum, int language) - | ^~~~~~~~~~~~ -../jbig.c:1991:6: warning: ‘jbg_dec_init’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 1991 | void jbg_dec_init(struct jbg_dec_state *s) - | ^~~~~~~~~~~~ -../jbig.c:2014:6: warning: ‘jbg_dec_maxsize’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 2014 | void jbg_dec_maxsize(struct jbg_dec_state *s, unsigned long xmax, - | ^~~~~~~~~~~~~~~ -../jbig.c:2503:5: warning: ‘jbg_dec_in’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 2503 | int jbg_dec_in(struct jbg_dec_state *s, unsigned char *data, size_t len, - | ^~~~~~~~~~ -../jbig.c:2830:6: warning: ‘jbg_dec_getwidth’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 2830 | long jbg_dec_getwidth(const struct jbg_dec_state *s) - | ^~~~~~~~~~~~~~~~ -../jbig.c:2849:6: warning: ‘jbg_dec_getheight’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 2849 | long jbg_dec_getheight(const struct jbg_dec_state *s) - | ^~~~~~~~~~~~~~~~~ -../jbig.c:2868:16: warning: ‘jbg_dec_getimage’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 2868 | unsigned char *jbg_dec_getimage(const struct jbg_dec_state *s, int plane) - | ^~~~~~~~~~~~~~~~ -../jbig.c:2888:6: warning: ‘jbg_dec_getsize’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 2888 | long jbg_dec_getsize(const struct jbg_dec_state *s) - | ^~~~~~~~~~~~~~~ -../jbig.c:2910:6: warning: ‘jbg_dec_getsize_merged’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 2910 | long jbg_dec_getsize_merged(const struct jbg_dec_state *s) - | ^~~~~~~~~~~~~~~~~~~~~~ -../jbig.c:2932:6: warning: ‘jbg_dec_free’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 2932 | void jbg_dec_free(struct jbg_dec_state *s) - | ^~~~~~~~~~~~ -../jbig.c:2975:6: warning: ‘jbg_split_planes’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 2975 | void jbg_split_planes(unsigned long x, unsigned long y, int has_planes, - | ^~~~~~~~~~~~~~~~ -../jbig.c:3036:6: warning: ‘jbg_dec_merge_planes’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 3036 | void jbg_dec_merge_planes(const struct jbg_dec_state *s, int use_graycode, - | ^~~~~~~~~~~~~~~~~~~~ -../jbig.c: In function ‘jbg_dec_merge_planes’: -../jbig.c:3041:7: warning: variable ‘bpp’ set but not used [-Wunused-but-set-variable] - 3041 | int bpp; - | ^~~ -../jbig.c: At top level: -../jbig.c:3165:5: warning: ‘jbg_newlen’ redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] - 3165 | int jbg_newlen(unsigned char *bie, size_t len) - | ^~~~~~~~~~ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -o jbig_tab.obj -c ../jbig_tab.c -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-windres -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc ../jbig.rc jbig.coff -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tprecis.obj -c ../H5Tprecis.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o jbig.dll -shared -Wl,--out-implib,libjbig.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ jbig.obj jbig_tab.obj jbig.coff -lws2_32 -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/jbig/libjbig/O.windows-x64-mingw' -make -C ./magick install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' -mkdir -p O.Common -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF analyze_Linux.d ../analyze_Linux.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF xwindow.d ../xwindow.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF widget.d ../widget.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tstrpad.obj -c ../H5Tstrpad.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF version.d ../version.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF utility.d ../utility.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF unix_port.d ../unix_port.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type.d ../type.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tsd.d ../tsd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF transform.d ../transform.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF timer.d ../timer.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF texture.d ../texture.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tempfile.d ../tempfile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF statistics.d ../statistics.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tvisit.obj -c ../H5Tvisit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF signature.d ../signature.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF shear.d ../shear.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF semaphore.d ../semaphore.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF segment.d ../segment.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resource.d ../resource.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resize.d ../resize.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF render.d ../render.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF registry.d ../registry.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF random.d ../random.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF quantize.d ../quantize.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF profile.d ../profile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF PreRvIcccm.d ../PreRvIcccm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF plasma.d ../plasma.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_iterator.d ../pixel_iterator.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_cache.d ../pixel_cache.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tvlen.obj -c ../H5Tvlen.c -../H5Tvlen.c: In function ‘H5T__vlen_create’: -../H5Tvlen.c:142:47: warning: passing argument 1 of ‘H5T_copy’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] - 142 | if(NULL == (dt->shared->parent = H5T_copy(base, H5T_COPY_ALL))) - | ^~~~ -In file included from ../H5Oprivate.h:41, - from ../H5Dprivate.h:25, - from ../H5Tvlen.c:23: -../H5Tprivate.h:106:15: note: expected ‘H5T_t *’ {aka ‘struct H5T_t *’} but argument is of type ‘const H5T_t *’ {aka ‘const struct H5T_t *’} - 106 | H5_DLL H5T_t *H5T_copy(H5T_t *old_dt, H5T_copy_t method); - | ^~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF paint.d ../paint.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF operator.d ../operator.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF omp_data_view.d ../omp_data_view.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_feature.d ../nt_feature.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_base.d ../nt_base.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF montage.d ../montage.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF monitor.d ../monitor.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF module.d ../module.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF memory.d ../memory.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5TS.obj -c ../H5TS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF map.d ../map.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick_endian.d ../magick_endian.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick.d ../magick.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magic.d ../magic.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF log.d ../log.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF locale.d ../locale.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF list.d ../list.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF import.d ../import.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF image.d ../image.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF hclut.d ../hclut.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gradient.d ../gradient.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gem.d ../gem.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fx.d ../fx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF floats.d ../floats.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF export.d ../export.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF error.d ../error.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enum_strings.d ../enum_strings.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5VM.obj -c ../H5VM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enhance.d ../enhance.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF effect.d ../effect.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF draw.d ../draw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF display.d ../display.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF describe.d ../describe.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF deprecate.d ../deprecate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF delegate.d ../delegate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF decorate.d ../decorate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF constitute.d ../constitute.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5WB.obj -c ../H5WB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF confirm_access.d ../confirm_access.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compress.d ../compress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF composite.d ../composite.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compare.d ../compare.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF command.d ../command.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color_lookup.d ../color_lookup.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colorspace.d ../colorspace.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colormap.d ../colormap.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color.d ../color.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF channel.d ../channel.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cdl.d ../cdl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF blob.d ../blob.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bit_stream.d ../bit_stream.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF average.d ../average.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF attribute.d ../attribute.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF annotate.d ../annotate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF animate.d ../animate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Z.obj -c ../H5Z.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -mkdir ../../../../include/magick -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zdeflate.obj -c ../H5Zdeflate.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zfletcher32.obj -c ../H5Zfletcher32.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Znbit.obj -c ../H5Znbit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../animate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../annotate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../attribute.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../average.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../bit_stream.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zscaleoffset.obj -c ../H5Zscaleoffset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zshuffle.obj -c ../H5Zshuffle.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../blob.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../cdl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Zszip.obj -c ../H5Zszip.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../channel.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../color.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../colormap.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../colorspace.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../color_lookup.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Ztrans.obj -c ../H5Ztrans.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5Tinit.obj -c ../os/WIN32/H5Tinit.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5lib_settings.obj -c ../H5lib_settings.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosc_filter.obj -c ../blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jpeg_h5filter.obj -c ../jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o H5detect.obj -c ../H5detect.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o hdf5.dll -shared -Wl,--out-implib,libhdf5.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ H5.obj H5checksum.obj H5dbg.obj H5system.obj H5timer.obj H5trace.obj H5A.obj H5Abtree2.obj H5Adense.obj H5Adeprec.obj H5Aint.obj H5Atest.obj H5AC.obj H5AClog.obj H5ACdbg.obj H5ACproxy_entry.obj H5B.obj H5Bcache.obj H5Bdbg.obj H5B2.obj H5B2cache.obj H5B2dbg.obj H5B2hdr.obj H5B2int.obj H5B2internal.obj H5B2leaf.obj H5B2stat.obj H5B2test.obj H5C.obj H5Cdbg.obj H5Cepoch.obj H5Cimage.obj H5Clog.obj H5Cprefetched.obj H5Cquery.obj H5Ctag.obj H5Ctest.obj H5CS.obj H5D.obj H5Dbtree.obj H5Dbtree2.obj H5Dchunk.obj H5Dcompact.obj H5Dcontig.obj H5Ddbg.obj H5Ddeprec.obj H5Dearray.obj H5Defl.obj H5Dfarray.obj H5Dfill.obj H5Dint.obj H5Dio.obj H5Dlayout.obj H5Dnone.obj H5Doh.obj H5Dscatgath.obj H5Dselect.obj H5Dsingle.obj H5Dtest.obj H5Dvirtual.obj H5E.obj H5Edeprec.obj H5Eint.obj H5EA.obj H5EAcache.obj H5EAdbg.obj H5EAdblkpage.obj H5EAdblock.obj H5EAhdr.obj H5EAiblock.obj H5EAint.obj H5EAsblock.obj H5EAstat.obj H5EAtest.obj H5F.obj H5Faccum.obj H5Fcwfs.obj H5Fdbg.obj H5Fdeprec.obj H5Fefc.obj H5Ffake.obj H5Fint.obj H5Fio.obj H5Fmount.obj H5Fquery.obj H5Fsfile.obj H5Fspace.obj H5Fsuper.obj H5Fsuper_cache.obj H5Ftest.obj H5FA.obj H5FAcache.obj H5FAdbg.obj H5FAdblock.obj H5FAdblkpage.obj H5FAhdr.obj H5FAint.obj H5FAstat.obj H5FAtest.obj H5FD.obj H5FDcore.obj H5FDfamily.obj H5FDint.obj H5FDlog.obj H5FDmulti.obj H5FDsec2.obj H5FDspace.obj H5FDstdio.obj H5FDtest.obj H5FL.obj H5FO.obj H5FS.obj H5FScache.obj H5FSdbg.obj H5FSint.obj H5FSsection.obj H5FSstat.obj H5FStest.obj H5G.obj H5Gbtree2.obj H5Gcache.obj H5Gcompact.obj H5Gdense.obj H5Gdeprec.obj H5Gent.obj H5Gint.obj H5Glink.obj H5Gloc.obj H5Gname.obj H5Gnode.obj H5Gobj.obj H5Goh.obj H5Groot.obj H5Gstab.obj H5Gtest.obj H5Gtraverse.obj H5HF.obj H5HFbtree2.obj H5HFcache.obj H5HFdbg.obj H5HFdblock.obj H5HFdtable.obj H5HFhdr.obj H5HFhuge.obj H5HFiblock.obj H5HFiter.obj H5HFman.obj H5HFsection.obj H5HFspace.obj H5HFstat.obj H5HFtest.obj H5HFtiny.obj H5HG.obj H5HGcache.obj H5HGdbg.obj H5HGquery.obj H5HL.obj H5HLcache.obj H5HLdbg.obj H5HLint.obj H5HLprfx.obj H5HLdblk.obj H5HP.obj H5I.obj H5Itest.obj H5L.obj H5Lexternal.obj H5MF.obj H5MFaggr.obj H5MFdbg.obj H5MFsection.obj H5MM.obj H5MP.obj H5MPtest.obj H5O.obj H5Oainfo.obj H5Oalloc.obj H5Oattr.obj H5Oattribute.obj H5Obogus.obj H5Obtreek.obj H5Ocache.obj H5Ocache_image.obj H5Ochunk.obj H5Ocont.obj H5Ocopy.obj H5Odbg.obj H5Odrvinfo.obj H5Odtype.obj H5Oefl.obj H5Ofill.obj H5Oflush.obj H5Ofsinfo.obj H5Oginfo.obj H5Olayout.obj H5Olinfo.obj H5Olink.obj H5Omessage.obj H5Omtime.obj H5Oname.obj H5Onull.obj H5Opline.obj H5Orefcount.obj H5Osdspace.obj H5Oshared.obj H5Oshmesg.obj H5Ostab.obj H5Otest.obj H5Ounknown.obj H5P.obj H5Pacpl.obj H5Pdapl.obj H5Pdcpl.obj H5Pdeprec.obj H5Pdxpl.obj H5Pencdec.obj H5Pfapl.obj H5Pfcpl.obj H5Pfmpl.obj H5Pgcpl.obj H5Pint.obj H5Plapl.obj H5Plcpl.obj H5Pocpl.obj H5Pocpypl.obj H5Pstrcpl.obj H5Ptest.obj H5PB.obj H5PL.obj H5R.obj H5Rdeprec.obj H5UC.obj H5RS.obj H5S.obj H5Sall.obj H5Sdbg.obj H5Shyper.obj H5Snone.obj H5Spoint.obj H5Sselect.obj H5Stest.obj H5SL.obj H5SM.obj H5SMbtree2.obj H5SMcache.obj H5SMmessage.obj H5SMtest.obj H5ST.obj H5T.obj H5Tarray.obj H5Tbit.obj H5Tcommit.obj H5Tcompound.obj H5Tconv.obj H5Tcset.obj H5Tdbg.obj H5Tdeprec.obj H5Tenum.obj H5Tfields.obj H5Tfixed.obj H5Tfloat.obj H5Tnative.obj H5Toffset.obj H5Toh.obj H5Topaque.obj H5Torder.obj H5Tpad.obj H5Tprecis.obj H5Tstrpad.obj H5Tvisit.obj H5Tvlen.obj H5TS.obj H5VM.obj H5WB.obj H5Z.obj H5Zdeflate.obj H5Zfletcher32.obj H5Znbit.obj H5Zscaleoffset.obj H5Zshuffle.obj H5Zszip.obj H5Ztrans.obj H5Tinit.obj H5lib_settings.obj blosc_filter.obj jpeg_h5filter.obj -lszip -lzlib -lblosc -ljpeg -lws2_32 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o H5detect.exe -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ H5detect.obj -lnetapi32 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5Src/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../compare.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../command.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../compress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../confirm_access.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../composite.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../constitute.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../decorate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../deprecate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../delegate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../describe.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../draw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../effect.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../enhance.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make -C ./hdf5_hlSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5TB.d ../H5TB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../display.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5PT.d ../H5PT.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTparse.d ../H5LTparse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTanalyze.d ../H5LTanalyze.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LT.d ../H5LT.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LD.d ../H5LD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5IM.d ../H5IM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DS.d ../H5DS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DO.d ../H5DO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../enum_strings.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../error.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5DO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5DS.c -../H5DS.c: In function ‘H5DSset_label’: -../H5DS.c:1436:7: warning: ‘u.buf’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1436 | } u; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5IM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LT.c -In file included from /usr/include/string.h:495, - from ../H5LT.c:17: -In function ‘strncat’, - inlined from ‘realloc_and_append’ at ../H5LT.c:2296:4, - inlined from ‘indentation’ at ../H5LT.c:2337:16: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:136:10: warning: ‘__builtin_strncat’ output may be truncated copying between 0 and 255 bytes from a string of length 255 [-Wstringop-truncation] - 136 | return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LTanalyze.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5LTparse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5PT.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -c ../H5TB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -/usr/bin/ar -rc libhdf5_hl.a H5DO.o H5DS.o H5IM.o H5LD.o H5LT.o H5LTanalyze.o H5LTparse.o H5PT.o H5TB.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -/usr/bin/ranlib libhdf5_hl.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -g++ -o libhdf5_hl.so -shared -fPIC -Wl,-hlibhdf5_hl.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 H5DO.o H5DS.o H5IM.o H5LD.o H5LT.o H5LTanalyze.o H5LTparse.o H5PT.o H5TB.o -lhdf5 -lszip -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5TB.d -MT H5TB.obj ../H5TB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5PT.d -MT H5PT.obj ../H5PT.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTparse.d -MT H5LTparse.obj ../H5LTparse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LTanalyze.d -MT H5LTanalyze.obj ../H5LTanalyze.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LT.d -MT H5LT.obj ../H5LT.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5LD.d -MT H5LD.obj ../H5LD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5IM.d -MT H5IM.obj ../H5IM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DS.d -MT H5DS.obj ../H5DS.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -MM -MF H5DO.d -MT H5DO.obj ../H5DO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5DO.obj -c ../H5DO.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5DS.obj -c ../H5DS.c -../H5DS.c: In function ‘H5DSset_label’: -../H5DS.c:1436:7: warning: ‘u.buf’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1436 | } u; - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5IM.obj -c ../H5IM.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5LD.obj -c ../H5LD.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5LT.obj -c ../H5LT.c -In file included from ../H5HLprivate2.h:24, - from ../H5LTprivate.h:18, - from ../H5LT.c:19: -In function ‘realloc_and_append’, - inlined from ‘indentation’ at ../H5LT.c:2337:16: -../../hdf5Src/H5private.h:1358:31: warning: ‘strncat’ output may be truncated copying between 0 and 255 bytes from a string of length 255 [-Wstringop-truncation] - 1358 | #define HDstrncat(X,Y,Z) strncat(X,Y,Z) - | ^~~~~~~~~~~~~~ -../H5LT.c:2296:4: note: in expansion of macro ‘HDstrncat’ - 2296 | HDstrncat(buf, str_to_add, size_str_to_add); - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5LTanalyze.obj -c ../H5LTanalyze.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5LTparse.obj -c ../H5LTparse.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5PT.obj -c ../H5PT.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_hl_shared_EXPORTS -D__MSVCRT_VERSION__=0x800 -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../hdf5Src -o H5TB.obj -c ../H5TB.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o hdf5_hl.dll -shared -Wl,--out-implib,libhdf5_hl.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ H5DO.obj H5DS.obj H5IM.obj H5LD.obj H5LT.obj H5LTanalyze.obj H5LTparse.obj H5PT.obj H5TB.obj -lhdf5 -lszip -lzlib -lws2_32 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5_hlSrc/O.windows-x64-mingw' -make -C ./hdf5PluginSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5plugin.d ../jpeg_h5plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d ../../../supportApp/hdf5Src/jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_plugin.d ../blosc_plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../export.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d ../../../supportApp/hdf5Src/blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../floats.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/hdf5Src/blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../blosc_plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/hdf5Src/jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -std=c99 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/Linux -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../jpeg_h5plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -g++ -o libHDF5_blosc_plugin.so -shared -fPIC -Wl,-hlibHDF5_blosc_plugin.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 blosc_filter.o blosc_plugin.o -lhdf5 -lblosc -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -g++ -o libHDF5_jpeg_plugin.so -shared -fPIC -Wl,-hlibHDF5_jpeg_plugin.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 jpeg_h5filter.o jpeg_h5plugin.o -lhdf5 -ljpeg -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5plugin.d -MT jpeg_h5plugin.obj ../jpeg_h5plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../fx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF jpeg_h5filter.d -MT jpeg_h5filter.obj ../../../supportApp/hdf5Src/jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_plugin.d -MT blosc_plugin.obj ../blosc_plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF blosc_filter.d -MT blosc_filter.obj ../../../supportApp/hdf5Src/blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosc_filter.obj -c ../../../supportApp/hdf5Src/blosc_filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../gem.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o blosc_plugin.obj -c ../blosc_plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jpeg_h5filter.obj -c ../../../supportApp/hdf5Src/jpeg_h5filter.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../gradient.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D NDEBUG -DH5_HAVE_FILTER_BLOSC -DH5_HAVE_FILTER_JPEG -D H5_BUILT_AS_DYNAMIC_LIB -D hdf5_shared_IMPORTS -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../../../supportApp/hdf5Src/os/WIN32 -I../../../supportApp/hdf5Src/os/default -I.. -I../../../supportApp/hdf5Src -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o jpeg_h5plugin.obj -c ../jpeg_h5plugin.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o HDF5_blosc_plugin.dll -shared -Wl,--out-implib,libHDF5_blosc_plugin.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ blosc_filter.obj blosc_plugin.obj -lhdf5 -lblosc -lws2_32 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../hclut.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o HDF5_jpeg_plugin.dll -shared -Wl,--out-implib,libHDF5_jpeg_plugin.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ jpeg_h5filter.obj jpeg_h5plugin.obj -lhdf5 -ljpeg -lws2_32 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/hdf5PluginSrc/O.windows-x64-mingw' -make -C ./netCDFSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_initialize.d ../../../supportApp/netCDFSrc/liblib/nc_initialize.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF utf8proc.d ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutil.d ../../../supportApp/netCDFSrc/libdispatch/dutil.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dwinpath.d ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF doffsets.d ../../../supportApp/netCDFSrc/libdispatch/doffsets.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dauth.d ../../../supportApp/netCDFSrc/libdispatch/dauth.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF drc.d ../../../supportApp/netCDFSrc/libdispatch/drc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclistmgr.d ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc.d ../../../supportApp/netCDFSrc/libdispatch/nc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nctime.d ../../../supportApp/netCDFSrc/libdispatch/nctime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nchashmap.d ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncbytes.d ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclist.d ../../../supportApp/netCDFSrc/libdispatch/nclist.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncuri.d ../../../supportApp/netCDFSrc/libdispatch/ncuri.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dstring.d ../../../supportApp/netCDFSrc/libdispatch/dstring.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclog.d ../../../supportApp/netCDFSrc/libdispatch/nclog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutf8.d ../../../supportApp/netCDFSrc/libdispatch/dutf8.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddispatch.d ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dinternal.d ../../../supportApp/netCDFSrc/libdispatch/dinternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarinq.d ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarput.d ../../../supportApp/netCDFSrc/libdispatch/dvarput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarget.d ../../../supportApp/netCDFSrc/libdispatch/dvarget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvar.d ../../../supportApp/netCDFSrc/libdispatch/dvar.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF derror.d ../../../supportApp/netCDFSrc/libdispatch/derror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../image.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattget.d ../../../supportApp/netCDFSrc/libdispatch/dattget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattput.d ../../../supportApp/netCDFSrc/libdispatch/dattput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattinq.d ../../../supportApp/netCDFSrc/libdispatch/dattinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF datt.d ../../../supportApp/netCDFSrc/libdispatch/datt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddim.d ../../../supportApp/netCDFSrc/libdispatch/ddim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dfile.d ../../../supportApp/netCDFSrc/libdispatch/dfile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dcopy.d ../../../supportApp/netCDFSrc/libdispatch/dcopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dparallel.d ../../../supportApp/netCDFSrc/libdispatch/dparallel.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF posixio.d ../../../supportApp/netCDFSrc/libsrc/posixio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF memio.d ../../../supportApp/netCDFSrc/libsrc/memio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncio.d ../../../supportApp/netCDFSrc/libsrc/ncio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lookup3.d ../../../supportApp/netCDFSrc/libsrc/lookup3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_hashmap.d ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncx.d ../../../supportApp/netCDFSrc/libsrc/ncx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dim.d ../../../supportApp/netCDFSrc/libsrc/dim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF var.d ../../../supportApp/netCDFSrc/libsrc/var.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3internal.d ../../../supportApp/netCDFSrc/libsrc/nc3internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3dispatch.d ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF attr.d ../../../supportApp/netCDFSrc/libsrc/attr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF putget.d ../../../supportApp/netCDFSrc/libsrc/putget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF v1hpg.d ../../../supportApp/netCDFSrc/libsrc/v1hpg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/v1hpg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../import.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/putget.c -putget.m4: In function ‘putNCvx_char_char’: -putget.m4:754:15: warning: unused variable ‘fillp’ [-Wunused-variable] -At top level: -putget.m4:912:1: warning: ‘getNCvx_char_char’ defined but not used [-Wunused-function] -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../list.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../locale.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/attr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../log.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../magic.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/nc3internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../magick.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/var.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../magick_endian.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/dim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../map.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../memory.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../module.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../monitor.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../montage.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../nt_base.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../nt_feature.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../omp_data_view.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../operator.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../paint.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/ncx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../pixel_cache.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/lookup3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../pixel_iterator.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/ncio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/memio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../plasma.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../PreRvIcccm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libsrc/posixio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../profile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dparallel.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dcopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dfile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ddim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/datt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dattinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dattput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../quantize.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dattget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/derror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../random.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvar.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../registry.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvarget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvarput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dinternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dutf8.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nclog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dstring.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ncuri.c -In file included from /usr/include/string.h:495, - from ../../../supportApp/netCDFSrc/libdispatch/ncuri.c:8: -In function ‘strncpy’, - inlined from ‘ncuriparse’ at ../../../supportApp/netCDFSrc/libdispatch/ncuri.c:153:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/ncuri.c: In function ‘ncuriparse’: -../../../supportApp/netCDFSrc/libdispatch/ncuri.c:137:12: note: length computed here - 137 | len0 = strlen(uri0); - | ^~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nclist.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nctime.c -../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdParseRelunits’: -../../../supportApp/netCDFSrc/libdispatch/nctime.c:384:25: warning: ‘%s’ directive writing up to 47 bytes into a region of size between 0 and 47 [-Wformat-overflow=] - 384 | sprintf(basetime,"%s %s",basetime_1,basetime_2); - | ^~ ~~~~~~~~~~ -In file included from /usr/include/stdio.h:867, - from ../../../supportApp/netCDFSrc/libdispatch/nctime.c:20: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output between 2 and 96 bytes into a destination of size 48 - 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 37 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdComp2Rel.constprop’: -../../../supportApp/netCDFSrc/libdispatch/nctime.c:877:15: warning: ‘ndel’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 877 | *reltime = (double)ndel; - | ^~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c:871:19: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 871 | *reltime = delta/168.0; - | ~~~~~^~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdRel2Comp’: -../../../supportApp/netCDFSrc/libdispatch/nctime.c:1073:3: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1073 | Cde2h(base_etm+delta, old_timetype, 1970, &humantime); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdRel2Iso’: -../../../supportApp/netCDFSrc/libdispatch/nctime.c:1073:3: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1073 | Cde2h(base_etm+delta, old_timetype, 1970, &humantime); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c:983:9: note: ‘delta’ was declared here - 983 | double delta; - | ^~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/drc.c -In file included from /usr/include/string.h:495, - from ../../../supportApp/netCDFSrc/libdispatch/drc.c:15: -In function ‘strncpy’, - inlined from ‘rcsearch’ at ../../../supportApp/netCDFSrc/libdispatch/drc.c:403:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/drc.c: In function ‘rcsearch’: -../../../supportApp/netCDFSrc/libdispatch/drc.c:396:16: note: length computed here - 396 | int plen = strlen(prefix); - | ^~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dauth.c -In file included from /usr/include/string.h:495, - from ../../../supportApp/netCDFSrc/libdispatch/dauth.c:10: -In function ‘strncpy’, - inlined from ‘NC_combinehostport’ at ../../../supportApp/netCDFSrc/libdispatch/dauth.c:82:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/doffsets.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/dutil.c -In file included from /usr/include/string.h:495, - from ../../../supportApp/netCDFSrc/libdispatch/dutil.c:8: -In function ‘strncpy’, - inlined from ‘NC_mktmp’ at ../../../supportApp/netCDFSrc/libdispatch/dutil.c:210:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 4096 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../render.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../../../supportApp/netCDFSrc/liblib/nc_initialize.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_CONFIG_H -mtune=generic -m64 -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../test_big_classic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../resize.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -/usr/bin/ar -rc libnetCDF.a v1hpg.o putget.o attr.o nc3dispatch.o nc3internal.o var.o dim.o ncx.o nc_hashmap.o lookup3.o ncio.o memio.o posixio.o dparallel.o dcopy.o dfile.o ddim.o datt.o dattinq.o dattput.o dattget.o derror.o dvar.o dvarget.o dvarput.o dvarinq.o dinternal.o ddispatch.o dutf8.o nclog.o dstring.o ncuri.o nclist.o ncbytes.o nchashmap.o nctime.o nc.o nclistmgr.o drc.o dauth.o doffsets.o dwinpath.o dutil.o utf8proc.o nc_initialize.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -/usr/bin/ranlib libnetCDF.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -g++ -o libnetCDF.so -shared -fPIC -Wl,-hlibnetCDF.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 v1hpg.o putget.o attr.o nc3dispatch.o nc3internal.o var.o dim.o ncx.o nc_hashmap.o lookup3.o ncio.o memio.o posixio.o dparallel.o dcopy.o dfile.o ddim.o datt.o dattinq.o dattput.o dattget.o derror.o dvar.o dvarget.o dvarput.o dvarinq.o dinternal.o ddispatch.o dutf8.o nclog.o dstring.o ncuri.o nclist.o ncbytes.o nchashmap.o nctime.o nc.o nclistmgr.o drc.o dauth.o doffsets.o dwinpath.o dutil.o utf8proc.o nc_initialize.o -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../resource.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -g++ -o test_big_classic -Wl,-Bstatic -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 test_big_classic.o -lnetCDF -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_initialize.d -MT nc_initialize.obj ../../../supportApp/netCDFSrc/liblib/nc_initialize.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF utf8proc.d -MT utf8proc.obj ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutil.d -MT dutil.obj ../../../supportApp/netCDFSrc/libdispatch/dutil.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dwinpath.d -MT dwinpath.obj ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF doffsets.d -MT doffsets.obj ../../../supportApp/netCDFSrc/libdispatch/doffsets.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dauth.d -MT dauth.obj ../../../supportApp/netCDFSrc/libdispatch/dauth.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF drc.d -MT drc.obj ../../../supportApp/netCDFSrc/libdispatch/drc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclistmgr.d -MT nclistmgr.obj ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc.d -MT nc.obj ../../../supportApp/netCDFSrc/libdispatch/nc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nctime.d -MT nctime.obj ../../../supportApp/netCDFSrc/libdispatch/nctime.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nchashmap.d -MT nchashmap.obj ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncbytes.d -MT ncbytes.obj ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclist.d -MT nclist.obj ../../../supportApp/netCDFSrc/libdispatch/nclist.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncuri.d -MT ncuri.obj ../../../supportApp/netCDFSrc/libdispatch/ncuri.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dstring.d -MT dstring.obj ../../../supportApp/netCDFSrc/libdispatch/dstring.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nclog.d -MT nclog.obj ../../../supportApp/netCDFSrc/libdispatch/nclog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dutf8.d -MT dutf8.obj ../../../supportApp/netCDFSrc/libdispatch/dutf8.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddispatch.d -MT ddispatch.obj ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dinternal.d -MT dinternal.obj ../../../supportApp/netCDFSrc/libdispatch/dinternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarinq.d -MT dvarinq.obj ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarput.d -MT dvarput.obj ../../../supportApp/netCDFSrc/libdispatch/dvarput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvarget.d -MT dvarget.obj ../../../supportApp/netCDFSrc/libdispatch/dvarget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dvar.d -MT dvar.obj ../../../supportApp/netCDFSrc/libdispatch/dvar.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../segment.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF derror.d -MT derror.obj ../../../supportApp/netCDFSrc/libdispatch/derror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattget.d -MT dattget.obj ../../../supportApp/netCDFSrc/libdispatch/dattget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattput.d -MT dattput.obj ../../../supportApp/netCDFSrc/libdispatch/dattput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dattinq.d -MT dattinq.obj ../../../supportApp/netCDFSrc/libdispatch/dattinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF datt.d -MT datt.obj ../../../supportApp/netCDFSrc/libdispatch/datt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ddim.d -MT ddim.obj ../../../supportApp/netCDFSrc/libdispatch/ddim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dfile.d -MT dfile.obj ../../../supportApp/netCDFSrc/libdispatch/dfile.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../semaphore.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dcopy.d -MT dcopy.obj ../../../supportApp/netCDFSrc/libdispatch/dcopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dparallel.d -MT dparallel.obj ../../../supportApp/netCDFSrc/libdispatch/dparallel.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF posixio.d -MT posixio.obj ../../../supportApp/netCDFSrc/libsrc/posixio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../shear.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF memio.d -MT memio.obj ../../../supportApp/netCDFSrc/libsrc/memio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncio.d -MT ncio.obj ../../../supportApp/netCDFSrc/libsrc/ncio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF lookup3.d -MT lookup3.obj ../../../supportApp/netCDFSrc/libsrc/lookup3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc_hashmap.d -MT nc_hashmap.obj ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../signature.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ncx.d -MT ncx.obj ../../../supportApp/netCDFSrc/libsrc/ncx.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF dim.d -MT dim.obj ../../../supportApp/netCDFSrc/libsrc/dim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF var.d -MT var.obj ../../../supportApp/netCDFSrc/libsrc/var.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3internal.d -MT nc3internal.obj ../../../supportApp/netCDFSrc/libsrc/nc3internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nc3dispatch.d -MT nc3dispatch.obj ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF attr.d -MT attr.obj ../../../supportApp/netCDFSrc/libsrc/attr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF putget.d -MT putget.obj ../../../supportApp/netCDFSrc/libsrc/putget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../statistics.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF v1hpg.d -MT v1hpg.obj ../../../supportApp/netCDFSrc/libsrc/v1hpg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../tempfile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../texture.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../timer.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o v1hpg.obj -c ../../../supportApp/netCDFSrc/libsrc/v1hpg.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../transform.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../tsd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../type.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../unix_port.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../utility.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o putget.obj -c ../../../supportApp/netCDFSrc/libsrc/putget.c -putget.m4: In function ‘putNCvx_char_char’: -putget.m4:754:15: warning: unused variable ‘fillp’ [-Wunused-variable] -At top level: -putget.m4:912:1: warning: ‘getNCvx_char_char’ defined but not used [-Wunused-function] -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../version.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o attr.obj -c ../../../supportApp/netCDFSrc/libsrc/attr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc3dispatch.obj -c ../../../supportApp/netCDFSrc/libsrc/nc3dispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc3internal.obj -c ../../../supportApp/netCDFSrc/libsrc/nc3internal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o var.obj -c ../../../supportApp/netCDFSrc/libsrc/var.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dim.obj -c ../../../supportApp/netCDFSrc/libsrc/dim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../widget.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ncx.obj -c ../../../supportApp/netCDFSrc/libsrc/ncx.c -ncx.m4: In function ‘ncx_put_off_t’: -ncx.m4:2299:51: warning: right shift count >= width of type [-Wshift-count-overflow] -ncx.m4: In function ‘ncx_get_off_t’: -ncx.m4:2356:26: warning: left shift count >= width of type [-Wshift-count-overflow] -ncx.m4:2357:26: warning: left shift count >= width of type [-Wshift-count-overflow] -ncx.m4:2358:26: warning: left shift count >= width of type [-Wshift-count-overflow] -ncx.m4:2359:26: warning: left shift count >= width of type [-Wshift-count-overflow] -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc_hashmap.obj -c ../../../supportApp/netCDFSrc/libsrc/nc_hashmap.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o lookup3.obj -c ../../../supportApp/netCDFSrc/libsrc/lookup3.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ncio.obj -c ../../../supportApp/netCDFSrc/libsrc/ncio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o memio.obj -c ../../../supportApp/netCDFSrc/libsrc/memio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../xwindow.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o posixio.obj -c ../../../supportApp/netCDFSrc/libsrc/posixio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dparallel.obj -c ../../../supportApp/netCDFSrc/libdispatch/dparallel.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/Linux -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -c ../analyze_Linux.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dcopy.obj -c ../../../supportApp/netCDFSrc/libdispatch/dcopy.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -/usr/bin/ar -rc libMagick.a animate.o annotate.o attribute.o average.o bit_stream.o blob.o cdl.o channel.o color.o colormap.o colorspace.o color_lookup.o command.o compare.o composite.o compress.o confirm_access.o constitute.o decorate.o delegate.o deprecate.o describe.o display.o draw.o effect.o enhance.o enum_strings.o error.o export.o floats.o fx.o gem.o gradient.o hclut.o image.o import.o list.o locale.o log.o magic.o magick.o magick_endian.o map.o memory.o module.o monitor.o montage.o nt_base.o nt_feature.o omp_data_view.o operator.o paint.o pixel_cache.o pixel_iterator.o plasma.o PreRvIcccm.o profile.o quantize.o random.o registry.o render.o resize.o resource.o segment.o semaphore.o shear.o signature.o statistics.o tempfile.o texture.o timer.o transform.o tsd.o type.o unix_port.o utility.o version.o widget.o xwindow.o analyze_Linux.o -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -/usr/bin/ranlib libMagick.a -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -g++ -o libMagick.so -shared -fPIC -Wl,-hlibMagick.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 animate.o annotate.o attribute.o average.o bit_stream.o blob.o cdl.o channel.o color.o colormap.o colorspace.o color_lookup.o command.o compare.o composite.o compress.o confirm_access.o constitute.o decorate.o delegate.o deprecate.o describe.o display.o draw.o effect.o enhance.o enum_strings.o error.o export.o floats.o fx.o gem.o gradient.o hclut.o image.o import.o list.o locale.o log.o magic.o magick.o magick_endian.o map.o memory.o module.o monitor.o montage.o nt_base.o nt_feature.o omp_data_view.o operator.o paint.o pixel_cache.o pixel_iterator.o plasma.o PreRvIcccm.o profile.o quantize.o random.o registry.o render.o resize.o resource.o segment.o semaphore.o shear.o signature.o statistics.o tempfile.o texture.o timer.o transform.o tsd.o type.o unix_port.o utility.o version.o widget.o xwindow.o analyze_Linux.o -lbzlib -llcms -lttf -lzlib -Wl,-Bdynamic -lXext -lpthread -lm -lrt -ldl -lgcc -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dfile.obj -c ../../../supportApp/netCDFSrc/libdispatch/dfile.c -../../../supportApp/netCDFSrc/libdispatch/dfile.c: In function ‘nc__pseudofd’: -../../../supportApp/netCDFSrc/libdispatch/dfile.c:2172:13: warning: unused variable ‘maxfd’ [-Wunused-variable] - 2172 | int maxfd = 32767; /* default */ - | ^~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ddim.obj -c ../../../supportApp/netCDFSrc/libdispatch/ddim.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF analyze_Win32.d -MT analyze_Win32.obj ../analyze_Win32.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o datt.obj -c ../../../supportApp/netCDFSrc/libdispatch/datt.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dattinq.obj -c ../../../supportApp/netCDFSrc/libdispatch/dattinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF xwindow.d -MT xwindow.obj ../xwindow.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dattput.obj -c ../../../supportApp/netCDFSrc/libdispatch/dattput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF widget.d -MT widget.obj ../widget.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dattget.obj -c ../../../supportApp/netCDFSrc/libdispatch/dattget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o derror.obj -c ../../../supportApp/netCDFSrc/libdispatch/derror.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF version.d -MT version.obj ../version.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dvar.obj -c ../../../supportApp/netCDFSrc/libdispatch/dvar.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF utility.d -MT utility.obj ../utility.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF unix_port.d -MT unix_port.obj ../unix_port.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF type.d -MT type.obj ../type.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dvarget.obj -c ../../../supportApp/netCDFSrc/libdispatch/dvarget.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tsd.d -MT tsd.obj ../tsd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF transform.d -MT transform.obj ../transform.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF timer.d -MT timer.obj ../timer.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF texture.d -MT texture.obj ../texture.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF tempfile.d -MT tempfile.obj ../tempfile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dvarput.obj -c ../../../supportApp/netCDFSrc/libdispatch/dvarput.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF statistics.d -MT statistics.obj ../statistics.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dvarinq.obj -c ../../../supportApp/netCDFSrc/libdispatch/dvarinq.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dinternal.obj -c ../../../supportApp/netCDFSrc/libdispatch/dinternal.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF signature.d -MT signature.obj ../signature.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ddispatch.obj -c ../../../supportApp/netCDFSrc/libdispatch/ddispatch.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dutf8.obj -c ../../../supportApp/netCDFSrc/libdispatch/dutf8.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF shear.d -MT shear.obj ../shear.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nclog.obj -c ../../../supportApp/netCDFSrc/libdispatch/nclog.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF semaphore.d -MT semaphore.obj ../semaphore.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dstring.obj -c ../../../supportApp/netCDFSrc/libdispatch/dstring.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF segment.d -MT segment.obj ../segment.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resource.d -MT resource.obj ../resource.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ncuri.obj -c ../../../supportApp/netCDFSrc/libdispatch/ncuri.c -../../../supportApp/netCDFSrc/libdispatch/ncuri.c: In function ‘ncuriparse’: -../../../supportApp/netCDFSrc/libdispatch/ncuri.c:153:5: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 153 | strncpy(uri,uri0,len0+1); - | ^~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/ncuri.c:137:12: note: length computed here - 137 | len0 = strlen(uri0); - | ^~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF resize.d -MT resize.obj ../resize.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nclist.obj -c ../../../supportApp/netCDFSrc/libdispatch/nclist.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF render.d -MT render.obj ../render.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ncbytes.obj -c ../../../supportApp/netCDFSrc/libdispatch/ncbytes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF registry.d -MT registry.obj ../registry.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nchashmap.obj -c ../../../supportApp/netCDFSrc/libdispatch/nchashmap.c -../../../supportApp/netCDFSrc/libdispatch/nchashmap.c: In function ‘printhstring’: -../../../supportApp/netCDFSrc/libdispatch/nchashmap.c:1948:37: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] - 1948 | fprintf(stderr,"%lx %ld |%s|\n",(unsigned long)s,(unsigned long)n,ss); - | ^ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF random.d -MT random.obj ../random.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF quantize.d -MT quantize.obj ../quantize.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF profile.d -MT profile.obj ../profile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nctime.obj -c ../../../supportApp/netCDFSrc/libdispatch/nctime.c -../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdParseRelunits’: -../../../supportApp/netCDFSrc/libdispatch/nctime.c:384:25: warning: ‘%s’ directive writing up to 47 bytes into a region of size between 0 and 47 [-Wformat-overflow=] - 384 | sprintf(basetime,"%s %s",basetime_1,basetime_2); - | ^~ ~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c:384:4: note: ‘sprintf’ output between 2 and 96 bytes into a destination of size 48 - 384 | sprintf(basetime,"%s %s",basetime_1,basetime_2); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdComp2Rel.constprop’: -../../../supportApp/netCDFSrc/libdispatch/nctime.c:877:15: warning: ‘ndel’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 877 | *reltime = (double)ndel; - | ^~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c:871:19: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 871 | *reltime = delta/168.0; - | ~~~~~^~~~~~ -../../../supportApp/netCDFSrc/libdispatch/nctime.c: In function ‘cdRel2Comp’: -../../../supportApp/netCDFSrc/libdispatch/nctime.c:1073:3: warning: ‘delta’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 1073 | Cde2h(base_etm+delta, old_timetype, 1970, &humantime); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc.obj -c ../../../supportApp/netCDFSrc/libdispatch/nc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF PreRvIcccm.d -MT PreRvIcccm.obj ../PreRvIcccm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nclistmgr.obj -c ../../../supportApp/netCDFSrc/libdispatch/nclistmgr.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF plasma.d -MT plasma.obj ../plasma.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o drc.obj -c ../../../supportApp/netCDFSrc/libdispatch/drc.c -../../../supportApp/netCDFSrc/libdispatch/drc.c: In function ‘rcsearch’: -../../../supportApp/netCDFSrc/libdispatch/drc.c:403:5: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 403 | strncpy(path,prefix,pathlen); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../../../supportApp/netCDFSrc/libdispatch/drc.c:396:16: note: length computed here - 396 | int plen = strlen(prefix); - | ^~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_iterator.d -MT pixel_iterator.obj ../pixel_iterator.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dauth.obj -c ../../../supportApp/netCDFSrc/libdispatch/dauth.c -../../../supportApp/netCDFSrc/libdispatch/dauth.c: In function ‘NC_combinehostport’: -../../../supportApp/netCDFSrc/libdispatch/dauth.c:82:5: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 82 | strncpy(hp,host,len); - | ^~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF pixel_cache.d -MT pixel_cache.obj ../pixel_cache.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o doffsets.obj -c ../../../supportApp/netCDFSrc/libdispatch/doffsets.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dwinpath.obj -c ../../../supportApp/netCDFSrc/libdispatch/dwinpath.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF paint.d -MT paint.obj ../paint.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o dutil.obj -c ../../../supportApp/netCDFSrc/libdispatch/dutil.c -../../../supportApp/netCDFSrc/libdispatch/dutil.c: In function ‘NC_mktmp’: -../../../supportApp/netCDFSrc/libdispatch/dutil.c:210:5: warning: ‘strncpy’ specified bound 4096 equals destination size [-Wstringop-truncation] - 210 | strncpy(tmp,cvtpath,sizeof(tmp)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF operator.d -MT operator.obj ../operator.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF omp_data_view.d -MT omp_data_view.obj ../omp_data_view.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_feature.d -MT nt_feature.obj ../nt_feature.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF nt_base.d -MT nt_base.obj ../nt_base.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF montage.d -MT montage.obj ../montage.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF monitor.d -MT monitor.obj ../monitor.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF module.d -MT module.obj ../module.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o utf8proc.obj -c ../../../supportApp/netCDFSrc/libdispatch/utf8proc.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nc_initialize.obj -c ../../../supportApp/netCDFSrc/liblib/nc_initialize.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF memory.d -MT memory.obj ../memory.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_CONFIG_H -DDLL_NETCDF -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../supportApp/netCDFSrc/inc -I../../../supportApp/netCDFSrc/libsrc -I../../../supportApp/netCDFSrc/libdispatch -I../../../supportApp/netCDFSrc/liblib -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o test_big_classic.obj -c ../test_big_classic.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF map.d -MT map.obj ../map.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o netCDF.dll -shared -Wl,--out-implib,libnetCDF.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ v1hpg.obj putget.obj attr.obj nc3dispatch.obj nc3internal.obj var.obj dim.obj ncx.obj nc_hashmap.obj lookup3.obj ncio.obj memio.obj posixio.obj dparallel.obj dcopy.obj dfile.obj ddim.obj datt.obj dattinq.obj dattput.obj dattget.obj derror.obj dvar.obj dvarget.obj dvarput.obj dvarinq.obj dinternal.obj ddispatch.obj dutf8.obj nclog.obj dstring.obj ncuri.obj nclist.obj ncbytes.obj nchashmap.obj nctime.obj nc.obj nclistmgr.obj drc.obj dauth.obj doffsets.obj dwinpath.obj dutil.obj utf8proc.obj nc_initialize.obj -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick_endian.d -MT magick_endian.obj ../magick_endian.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o test_big_classic.exe -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ test_big_classic.obj -lnetCDF -lnetapi32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/netCDFSrc/O.windows-x64-mingw' -make -C ./nexusSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magick.d -MT magick.obj ../magick.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF stptok.d ../stptok.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxxml.d ../nxxml.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxstack.d ../nxstack.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxio.d ../nxio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxdataset.d ../nxdataset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napiu.d ../napiu.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi5.d ../napi5.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF magic.d -MT magic.obj ../magic.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi.d ../napi.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF log.d -MT log.obj ../log.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF locale.d -MT locale.obj ../locale.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF list.d -MT list.obj ../list.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF import.d -MT import.obj ../import.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF image.d -MT image.obj ../image.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../napi.c -In file included from /usr/include/string.h:495, - from ../napi.c:29: -In function ‘strncpy’, - inlined from ‘nxigetdata_’ at ../napi.c:1252:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi.c: In function ‘nxigetdata_’: -../napi.c:1252:3: note: length computed here - 1252 | strncpy((char *)data, pPtr2, strlen(pPtr2)); /* not NULL terminated by default */ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF hclut.d -MT hclut.obj ../hclut.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gradient.d -MT gradient.obj ../gradient.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF gem.d -MT gem.obj ../gem.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF fx.d -MT fx.obj ../fx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF floats.d -MT floats.obj ../floats.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../napi5.c -../napi5.c: In function ‘NX5makegroup’: -../napi5.c:506:8: warning: variable ‘iRet’ set but not used [-Wunused-but-set-variable] - 506 | hid_t iRet; - | ^~~~ -../napi5.c: In function ‘NX5getinfo64’: -../napi5.c:1919:31: warning: unused variable ‘vlen_bytes’ [-Wunused-variable] - 1919 | hsize_t myDim[H5S_MAX_RANK], vlen_bytes = 0, total_dims_size = 1; - | ^~~~~~~~~~ -../napi5.c: In function ‘NX5compmakedata64’: -../napi5.c:879:5: warning: ‘dID’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 879 | if (dID < 0) { - | ^ -In file included from /usr/include/string.h:495, - from ../napi5.c:34: -In function ‘strncpy’, - inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, - inlined from ‘NX5getgroupinfo’ at ../napi5.c:1555:4: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5makegroup’: -../napi5.c:516:29: warning: ‘%s’ directive output may be truncated writing up to 1023 bytes into a region of size 1022 [-Wformat-truncation=] - 516 | snprintf(pBuffer, 1023, "/%s/%s", pFile->name_ref, name); - | ^~ -In file included from /usr/include/stdio.h:867, - from ../../../include/os/Linux/H5Epublic.h:20, - from ../../../include/os/Linux/hdf5.h:26, - from ../napi5.h:9, - from ../napi5.c:39: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: ‘__builtin___snprintf_chk’ output 3 or more bytes (assuming 1026) into a destination of size 1023 - 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 68 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5opengroup’: -../napi5.c:571:26: warning: ‘__builtin___sprintf_chk’ may write a terminating nul past the end of the destination [-Wformat-overflow=] - 571 | sprintf(pBuffer, "%s/%s", pFile->name_tmp, name); - | ^ -In file included from /usr/include/stdio.h:867, - from ../../../include/os/Linux/H5Epublic.h:20, - from ../../../include/os/Linux/hdf5.h:26, - from ../napi5.h:9, - from ../napi5.c:39: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output 2 or more bytes (assuming 1025) into a destination of size 1024 - 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 37 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c:575:34: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 1011 [-Wformat-overflow=] - 575 | sprintf(pBuffer, "ERROR: group %s does not exist", - | ^~ -In file included from /usr/include/stdio.h:867, - from ../../../include/os/Linux/H5Epublic.h:20, - from ../../../include/os/Linux/hdf5.h:26, - from ../napi5.h:9, - from ../napi5.c:39: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output between 29 and 1052 bytes into a destination of size 1024 - 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 37 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from ../napi5.c:34: -In function ‘strncpy’, - inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, - inlined from ‘NX5opengroup’ at ../napi5.c:611:10: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘NX5getattra’ at ../napi5.c:2540:4: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5getattra’: -../napi5.c:2540:4: note: length computed here - 2540 | strncpy(data, strdata, strlen(strdata)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from ../napi5.c:34: -In function ‘strncpy’, - inlined from ‘NX5getdata’ at ../napi5.c:1859:5: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5getdata’: -../napi5.c:1859:5: note: length computed here - 1859 | strncpy(data, strdata, strlen(strdata)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5getnextentry’: -../napi5.c:1766:20: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 243 [-Wformat-overflow=] - 1766 | "ERROR: group %s does not exist", - | ^~ - 1767 | ph_name); - | ~~~~~~~ -In file included from /usr/include/stdio.h:867, - from ../../../include/os/Linux/H5Epublic.h:20, - from ../../../include/os/Linux/hdf5.h:26, - from ../napi5.h:9, - from ../napi5.c:39: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: ‘__builtin___sprintf_chk’ output between 29 and 1052 bytes into a destination of size 256 - 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 37 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from /usr/include/string.h:495, - from ../napi5.c:34: -In function ‘strncpy’, - inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, - inlined from ‘NX5getnextentry’ at ../napi5.c:1781:9: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘readStringAttributeN’ at ../napi5.c:171:3, - inlined from ‘NX5getgroupinfo_recurse’ at ../napi5.c:1496:4: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF export.d -MT export.obj ../export.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../napiu.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF error.d -MT error.obj ../error.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxdataset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxstack.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../nxxml.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enum_strings.d -MT enum_strings.obj ../enum_strings.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I../os/Linux -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../stptok.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -/usr/bin/ar -rc libNeXus.a napi.o napi5.o napiu.o nxdataset.o nxio.o nxstack.o nxxml.o stptok.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -/usr/bin/ranlib libNeXus.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF enhance.d -MT enhance.obj ../enhance.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -g++ -o libNeXus.so -shared -fPIC -Wl,-hlibNeXus.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 napi.o napi5.o napiu.o nxdataset.o nxio.o nxstack.o nxxml.o stptok.o -lhdf5 -lszip -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF stptok.d -MT stptok.obj ../stptok.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxxml.d -MT nxxml.obj ../nxxml.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxstack.d -MT nxstack.obj ../nxstack.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxio.d -MT nxio.obj ../nxio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF effect.d -MT effect.obj ../effect.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF draw.d -MT draw.obj ../draw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF display.d -MT display.obj ../display.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF nxdataset.d -MT nxdataset.obj ../nxdataset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF describe.d -MT describe.obj ../describe.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napiu.d -MT napiu.obj ../napiu.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi5.d -MT napi5.obj ../napi5.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF deprecate.d -MT deprecate.obj ../deprecate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF delegate.d -MT delegate.obj ../delegate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF decorate.d -MT decorate.obj ../decorate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF napi.d -MT napi.obj ../napi.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF constitute.d -MT constitute.obj ../constitute.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF confirm_access.d -MT confirm_access.obj ../confirm_access.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compress.d -MT compress.obj ../compress.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF composite.d -MT composite.obj ../composite.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF compare.d -MT compare.obj ../compare.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF command.d -MT command.obj ../command.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color_lookup.d -MT color_lookup.obj ../color_lookup.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colorspace.d -MT colorspace.obj ../colorspace.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF colormap.d -MT colormap.obj ../colormap.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF color.d -MT color.obj ../color.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF channel.d -MT channel.obj ../channel.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF cdl.d -MT cdl.obj ../cdl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o napi.obj -c ../napi.c -../napi.c: In function ‘nxigetdata_’: -../napi.c:1252:3: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1252 | strncpy((char *)data, pPtr2, strlen(pPtr2)); /* not NULL terminated by default */ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF blob.d -MT blob.obj ../blob.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF bit_stream.d -MT bit_stream.obj ../bit_stream.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF average.d -MT average.obj ../average.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF attribute.d -MT attribute.obj ../attribute.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF annotate.d -MT annotate.obj ../annotate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o napi5.obj -c ../napi5.c -../napi5.c: In function ‘NX5makegroup’: -../napi5.c:506:8: warning: variable ‘iRet’ set but not used [-Wunused-but-set-variable] - 506 | hid_t iRet; - | ^~~~ -../napi5.c: In function ‘NX5getinfo64’: -../napi5.c:1919:31: warning: unused variable ‘vlen_bytes’ [-Wunused-variable] - 1919 | hsize_t myDim[H5S_MAX_RANK], vlen_bytes = 0, total_dims_size = 1; - | ^~~~~~~~~~ -../napi5.c: In function ‘NX5compmakedata64’: -../napi5.c:879:5: warning: ‘dID’ may be used uninitialized in this function [-Wmaybe-uninitialized] - 879 | if (dID < 0) { - | ^ -In function ‘readStringAttributeN’, - inlined from ‘NX5getgroupinfo’ at ../napi5.c:1555:4: -../napi5.c:171:3: warning: ‘strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] - 171 | strncpy(data, vdat, maxlen); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5opengroup’: -../napi5.c:571:26: warning: ‘sprintf’ may write a terminating nul past the end of the destination [-Wformat-overflow=] - 571 | sprintf(pBuffer, "%s/%s", pFile->name_tmp, name); - | ^ -../napi5.c:571:3: note: ‘sprintf’ output 2 or more bytes (assuming 1025) into a destination of size 1024 - 571 | sprintf(pBuffer, "%s/%s", pFile->name_tmp, name); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c:575:34: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 1011 [-Wformat-overflow=] - 575 | sprintf(pBuffer, "ERROR: group %s does not exist", - | ^~ -../napi5.c:575:3: note: ‘sprintf’ output between 29 and 1052 bytes into a destination of size 1024 - 575 | sprintf(pBuffer, "ERROR: group %s does not exist", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 576 | pFile->name_tmp); - | ~~~~~~~~~~~~~~~~ -In function ‘readStringAttributeN’, - inlined from ‘NX5opengroup’ at ../napi5.c:611:10: -../napi5.c:171:3: warning: ‘strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] - 171 | strncpy(data, vdat, maxlen); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5getattra’: -../napi5.c:2540:4: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 2540 | strncpy(data, strdata, strlen(strdata)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5getdata’: -../napi5.c:1859:5: warning: ‘strncpy’ output truncated before terminating nul copying as many bytes from a string as its length [-Wstringop-truncation] - 1859 | strncpy(data, strdata, strlen(strdata)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../napi5.c: In function ‘NX5getnextentry’: -../napi5.c:1766:20: warning: ‘%s’ directive writing up to 1023 bytes into a region of size 243 [-Wformat-overflow=] - 1766 | "ERROR: group %s does not exist", - | ^~ - 1767 | ph_name); - | ~~~~~~~ -../napi5.c:1765:5: note: ‘sprintf’ output between 29 and 1052 bytes into a destination of size 256 - 1765 | sprintf(pBuffer, - | ^~~~~~~~~~~~~~~~ - 1766 | "ERROR: group %s does not exist", - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 1767 | ph_name); - | ~~~~~~~~ -In function ‘readStringAttributeN’, - inlined from ‘NX5getnextentry’ at ../napi5.c:1781:9: -../napi5.c:171:3: warning: ‘strncpy’ specified bound 128 equals destination size [-Wstringop-truncation] - 171 | strncpy(data, vdat, maxlen); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘readStringAttributeN’, - inlined from ‘NX5getgroupinfo_recurse’ at ../napi5.c:1496:4: -../napi5.c:171:3: warning: ‘strncpy’ specified bound 64 equals destination size [-Wstringop-truncation] - 171 | strncpy(data, vdat, maxlen); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -MM -MF animate.d -MT animate.obj ../animate.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o napiu.obj -c ../napiu.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o animate.obj -c ../animate.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../animate.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nxdataset.obj -c ../nxdataset.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nxio.obj -c ../nxio.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nxstack.obj -c ../nxstack.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o nxxml.obj -c ../nxxml.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHDF5 -D_FILE_OFFSET_BITS=64 -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -DDLL_NEXUS -DH5_BUILT_AS_DYNAMIC_LIB -DH5_BUILT_AS_DYNAMIC_LIB -DDLL_EXPORT -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I../os/WIN32 -I../os/default -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o stptok.obj -c ../stptok.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o NeXus.dll -shared -Wl,--out-implib,libNeXus.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ napi.obj napi5.obj napiu.obj nxdataset.obj nxio.obj nxstack.obj nxxml.obj stptok.obj -lhdf5 -lszip -lzlib -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/nexusSrc/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o annotate.obj -c ../annotate.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../annotate.c:41: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, - from ../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, - from ../annotate.c:64: -../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] - 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ - | -../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] - 310 | # pragma warning( disable : 4018 ) - | -../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] - 311 | # pragma warning( disable : 4244 ) - | -../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] - 312 | # pragma warning( disable : 4142 ) - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o average.obj -c ../average.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../average.c:17: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o attribute.obj -c ../attribute.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../attribute.c:40: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o bit_stream.obj -c ../bit_stream.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../bit_stream.c:13: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o cdl.obj -c ../cdl.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../cdl.c:14: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o blob.obj -c ../blob.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../blob.c:40: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../blob.c:64: -/builds/DATAnet/adurl/.cache/adsupport-master/include/bzlib.h:81:14: note: #pragma message: BZIP compiling as DLL import - 81 | # pragma message( "BZIP compiling as DLL import" ) - | ^~~~~~~ -../blob.c: In function ‘GmBlobReserveSize’: -../blob.c:502:27: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 502 | "Request to reserve %" MAGICK_OFF_F "u output bytes %s", - | ^~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../blob.c:40: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../blob.c:502:27: warning: format ‘%s’ expects argument of type ‘char *’, but argument 6 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] - 502 | "Request to reserve %" MAGICK_OFF_F "u output bytes %s", - | ^~~~~~~~~~~~~~~~~~~~~~ - 503 | size, - | ~~~~ - | | - | magick_off_t {aka long long int} -../blob.c:502:80: note: format string is defined here - 502 | "Request to reserve %" MAGICK_OFF_F "u output bytes %s", - | ~^ - | | - | char * - | %I64d -../blob.c:502:27: warning: too many arguments for format [-Wformat-extra-args] - 502 | "Request to reserve %" MAGICK_OFF_F "u output bytes %s", - | ^~~~~~~~~~~~~~~~~~~~~~ -../blob.c: In function ‘GmMapBlob’: -../blob.c:2337:8: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2337 | "Failed to mmap fd %d using %s mode at offset %" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../blob.c:40: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../blob.c:2337:8: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2337 | "Failed to mmap fd %d using %s mode at offset %" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../blob.c:40: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../blob.c:2337:8: warning: format ‘%d’ expects argument of type ‘int’, but argument 8 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] - 2337 | "Failed to mmap fd %d using %s mode at offset %" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 2338 | MAGICK_OFF_F "u and length %" MAGICK_OFF_F - 2339 | "u (%d=\"%s\").",file,MapModeToString(mode),offset, - | ~~~~~~ - | | - | magick_off_t {aka long long int} -../blob.c:2339:13: note: format string is defined here - 2339 | "u (%d=\"%s\").",file,MapModeToString(mode),offset, - | ~^ - | | - | int - | %I64d -../blob.c:2337:8: warning: format ‘%s’ expects argument of type ‘char *’, but argument 9 has type ‘long long int’ [-Wformat=] - 2337 | "Failed to mmap fd %d using %s mode at offset %" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -...... - 2340 | (magick_off_t) length,errno,strerror(errno)); - | ~~~~~~~~~~~~~~~~~~~~~ - | | - | long long int -../blob.c:2339:18: note: format string is defined here - 2339 | "u (%d=\"%s\").",file,MapModeToString(mode),offset, - | ~^ - | | - | char * - | %I64d -../blob.c:2337:8: warning: too many arguments for format [-Wformat-extra-args] - 2337 | "Failed to mmap fd %d using %s mode at offset %" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../blob.c:2344:4: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2344 | "Mmapped fd %d using %s mode at offset %" MAGICK_OFF_F - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../blob.c:40: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../blob.c:2344:4: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2344 | "Mmapped fd %d using %s mode at offset %" MAGICK_OFF_F - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../blob.c:40: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../blob.c:2344:4: warning: format ‘%p’ expects argument of type ‘void *’, but argument 8 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] - 2344 | "Mmapped fd %d using %s mode at offset %" MAGICK_OFF_F - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 2345 | "u and length %" MAGICK_OFF_F "u to address %p", - 2346 | file,MapModeToString(mode),offset,(magick_off_t) length, - | ~~~~~~ - | | - | magick_off_t {aka long long int} -../blob.c:2345:49: note: format string is defined here - 2345 | "u and length %" MAGICK_OFF_F "u to address %p", - | ~^ - | | - | void * - | %I64d -../blob.c:2344:4: warning: too many arguments for format [-Wformat-extra-args] - 2344 | "Mmapped fd %d using %s mode at offset %" MAGICK_OFF_F - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o channel.obj -c ../channel.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../channel.c:37: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o color.obj -c ../color.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../color.c:36: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o colormap.obj -c ../colormap.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../colormap.c:17: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o colorspace.obj -c ../colorspace.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../colorspace.c:32: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o color_lookup.obj -c ../color_lookup.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../color_lookup.c:16: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o compare.obj -c ../compare.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../compare.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o composite.obj -c ../composite.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../composite.c:41: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o compress.obj -c ../compress.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../compress.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o confirm_access.obj -c ../confirm_access.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../confirm_access.c:13: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o command.obj -c ../command.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../command.c:40: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o constitute.obj -c ../constitute.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../constitute.c:45: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o delegate.obj -c ../delegate.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../delegate.c:43: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o decorate.obj -c ../decorate.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../decorate.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o deprecate.obj -c ../deprecate.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../deprecate.c:37: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o describe.obj -c ../describe.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../describe.c:17: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o display.obj -c ../display.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../display.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o draw.obj -c ../draw.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../draw.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../draw.c: In function ‘GmDrawComposite’: -../draw.c:2411:27: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 3 has type ‘size_t’ {aka ‘long long unsigned int’} [-Wformat=] - 2411 | FormatString(buffer,"%" MAGICK_SIZE_T_F "d bytes", (4L*blob_length/3L+4L)); - | ^~~ ~~~~~~~~~~~~~~~~~~~~~~ - | | - | size_t {aka long long unsigned int} -../draw.c:2411:48: note: format string is defined here - 2411 | FormatString(buffer,"%" MAGICK_SIZE_T_F "d bytes", (4L*blob_length/3L+4L)); - | ~~~~~~~~~~~~~~~~~~~~^ - | | - | long int -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o enhance.obj -c ../enhance.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../enhance.c:42: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o effect.obj -c ../effect.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../effect.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o enum_strings.obj -c ../enum_strings.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../enum_strings.c:14: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o error.obj -c ../error.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../error.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o floats.obj -c ../floats.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../floats.c:17: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o fx.obj -c ../fx.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../fx.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o gem.obj -c ../gem.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../gem.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o gradient.obj -c ../gradient.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../gradient.c:17: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o hclut.obj -c ../hclut.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../hclut.c:14: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o image.obj -c ../image.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../image.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o import.obj -c ../import.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../import.c:16: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o list.obj -c ../list.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../list.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o locale.obj -c ../locale.c -In file included from ../studio.h:196, - from ../locale.c:35: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o log.obj -c ../log.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../log.c:37: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o magic.obj -c ../magic.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../magic.c:36: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o magick.obj -c ../magick.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../magick.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o magick_endian.obj -c ../magick_endian.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../magick_endian.c:25: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o map.obj -c ../map.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../map.c:13: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o memory.obj -c ../memory.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../memory.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o module.obj -c ../module.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../module.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o export.obj -c ../export.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../export.c:16: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o monitor.obj -c ../monitor.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../monitor.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o montage.obj -c ../montage.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../montage.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o nt_base.obj -c ../nt_base.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../nt_base.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../nt_base.c: In function ‘NTdlopen’: -../nt_base.c:817:10: warning: unused variable ‘Err’ [-Wunused-variable] - 817 | DWORD Err = GetLastError(); - | ^~~ -../nt_base.c:805:8: warning: variable ‘Err’ set but not used [-Wunused-but-set-variable] - 805 | DWORD Err = GetLastError(); - | ^~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o nt_feature.obj -c ../nt_feature.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../nt_feature.c:35: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o omp_data_view.obj -c ../omp_data_view.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../omp_data_view.c:31: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o paint.obj -c ../paint.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../paint.c:37: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o operator.obj -c ../operator.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../operator.c:16: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o pixel_iterator.obj -c ../pixel_iterator.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pixel_iterator.c:15: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o pixel_cache.obj -c ../pixel_cache.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pixel_cache.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../pixel_cache.c: In function ‘GmCheckImagePixelLimits’: -../pixel_cache.c:1331:28: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 1331 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../pixel_cache.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../pixel_cache.c:1331:28: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘magick_int64_t’ {aka ‘long long int’} [-Wformat=] - 1331 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~~~~~~~ -../pixel_cache.c:1331:64: note: format string is defined here - 1331 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", - | ~~~~~~^ - | | - | char * - | %.1024I64d -../pixel_cache.c:1331:28: warning: too many arguments for format [-Wformat-extra-args] - 1331 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~~~~~~~ -../pixel_cache.c:1347:28: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 1347 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../pixel_cache.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../pixel_cache.c:1347:28: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘magick_int64_t’ {aka ‘long long int’} [-Wformat=] - 1347 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~~~~~~~ -../pixel_cache.c:1347:64: note: format string is defined here - 1347 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", - | ~~~~~~^ - | | - | char * - | %.1024I64d -../pixel_cache.c:1347:28: warning: too many arguments for format [-Wformat-extra-args] - 1347 | FormatString(message,"%lu > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~~~~~~~ -../pixel_cache.c:1368:22: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../pixel_cache.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../pixel_cache.c:1368:22: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../pixel_cache.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../pixel_cache.c:1368:22: warning: format ‘%s’ expects argument of type ‘char *’, but argument 3 has type ‘magick_int64_t’ {aka ‘long long int’} [-Wformat=] - 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~ - 1369 | total_pixels, - | ~~~~~~~~~~~~ - | | - | magick_int64_t {aka long long int} -../pixel_cache.c:1368:75: note: format string is defined here - 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", - | ~~~~~~^ - | | - | char * - | %.1024I64d -../pixel_cache.c:1368:22: warning: too many arguments for format [-Wformat-extra-args] - 1368 | "%" MAGICK_INT64_F "d > %" MAGICK_INT64_F "u \"%.1024s\"", - | ^~~ -../pixel_cache.c: In function ‘SetNexus’: -../pixel_cache.c:4240:8: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 4240 | "Failed to allocate %" MAGICK_SIZE_T_F - | ^~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../pixel_cache.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../pixel_cache.c:4240:8: warning: format ‘%lu’ expects argument of type ‘long unsigned int’, but argument 7 has type ‘magick_uint64_t’ {aka ‘long long unsigned int’} [-Wformat=] - 4240 | "Failed to allocate %" MAGICK_SIZE_T_F - | ^~~~~~~~~~~~~~~~~~~~~~ -...... - 4245 | number_pixels, - | ~~~~~~~~~~~~~ - | | - | magick_uint64_t {aka long long unsigned int} -../pixel_cache.c:4242:59: note: format string is defined here - 4242 | "(number pixels=%" MAGICK_OFF_F "u, region width=%lu, " - | ~~^ - | | - | long unsigned int - | %I64u -../pixel_cache.c:4240:8: warning: too many arguments for format [-Wformat-extra-args] - 4240 | "Failed to allocate %" MAGICK_SIZE_T_F - | ^~~~~~~~~~~~~~~~~~~~~~ -../pixel_cache.c: In function ‘WriteCacheIndexes’: -../pixel_cache.c:4591:11: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 4591 | "Failed to write row %ld at file offset %" MAGICK_OFF_F - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../pixel_cache.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../pixel_cache.c:4591:11: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 7 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] - 4591 | "Failed to write row %ld at file offset %" MAGICK_OFF_F - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -...... - 4595 | row_offset, - | ~~~~~~~~~~ - | | - | magick_off_t {aka long long int} -../pixel_cache.c:4592:43: note: format string is defined here - 4592 | "d. Wrote %" MAGICK_SSIZE_T_F "d rather than %" - | ~~~~~~~~~~~~~~~~~~~~~^ - | | - | long int -../pixel_cache.c:4591:11: warning: format ‘%s’ expects argument of type ‘char *’, but argument 9 has type ‘long unsigned int’ [-Wformat=] - 4591 | "Failed to write row %ld at file offset %" MAGICK_OFF_F - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -...... - 4597 | (MAGICK_SIZE_T) length, - | ~~~~~~~~~~~~~~~~~~~~~~ - | | - | long unsigned int -../pixel_cache.c:4593:66: note: format string is defined here - 4593 | MAGICK_SIZE_T_F "u bytes (%s).", - | ~^ - | | - | char * - | %ld -../pixel_cache.c:4591:11: warning: too many arguments for format [-Wformat-extra-args] - 4591 | "Failed to write row %ld at file offset %" MAGICK_OFF_F - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../pixel_cache.c: In function ‘WriteCachePixels’: -../pixel_cache.c:4754:11: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 4754 | "Failed to write row %ld at file offset %" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../pixel_cache.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../pixel_cache.c:4754:11: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 7 has type ‘magick_off_t’ {aka ‘long long int’} [-Wformat=] - 4754 | "Failed to write row %ld at file offset %" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -...... - 4759 | row_offset, - | ~~~~~~~~~~ - | | - | magick_off_t {aka long long int} -../pixel_cache.c:4756:57: note: format string is defined here - 4755 | MAGICK_OFF_F "d. Wrote %" - | ~~ - 4756 | MAGICK_SSIZE_T_F "d rather than %" - | ~~~~~~~~~~~~~~~~~~^ - | | - | long int -../pixel_cache.c:4754:11: warning: format ‘%s’ expects argument of type ‘char *’, but argument 9 has type ‘long unsigned int’ [-Wformat=] - 4754 | "Failed to write row %ld at file offset %" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -...... - 4761 | (MAGICK_SIZE_T) length, - | ~~~~~~~~~~~~~~~~~~~~~~ - | | - | long unsigned int -../pixel_cache.c:4757:66: note: format string is defined here - 4757 | MAGICK_SIZE_T_F "u bytes (%s).", - | ~^ - | | - | char * - | %ld -../pixel_cache.c:4754:11: warning: too many arguments for format [-Wformat-extra-args] - 4754 | "Failed to write row %ld at file offset %" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o plasma.obj -c ../plasma.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../plasma.c:17: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o PreRvIcccm.obj -c ../PreRvIcccm.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../PreRvIcccm.c:35: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o profile.obj -c ../profile.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../profile.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o random.obj -c ../random.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../random.c:15: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o quantize.obj -c ../quantize.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../quantize.c:174: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o registry.obj -c ../registry.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../registry.c:37: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o resize.obj -c ../resize.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../resize.c:35: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o resource.obj -c ../resource.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../resource.c:41: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o segment.obj -c ../segment.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../segment.c:80: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o render.obj -c ../render.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../render.c:43: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../render.c: In function ‘GmDrawImage’: -../render.c:2462:49: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2462 | FormatString(resource_str,"%" MAGICK_INT64_F "d", width_resource_limit); - | ^~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../render.c:43: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../render.c:2462:49: warning: too many arguments for format [-Wformat-extra-args] - 2462 | FormatString(resource_str,"%" MAGICK_INT64_F "d", width_resource_limit); - | ^~~ -../render.c:2470:49: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2470 | FormatString(resource_str,"%" MAGICK_INT64_F "d", hight_resource_limit); - | ^~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../render.c:43: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../render.c:2470:49: warning: too many arguments for format [-Wformat-extra-args] - 2470 | FormatString(resource_str,"%" MAGICK_INT64_F "d", hight_resource_limit); - | ^~~ -../render.c:2478:49: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2478 | FormatString(resource_str,"%" MAGICK_INT64_F "d", pixels_resource_limit); - | ^~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../render.c:43: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../render.c:2478:49: warning: too many arguments for format [-Wformat-extra-args] - 2478 | FormatString(resource_str,"%" MAGICK_INT64_F "d", pixels_resource_limit); - | ^~~ -../render.c:2494:52: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2494 | FormatString(gradient_size_str,"%" MAGICK_INT64_F "dx%" MAGICK_INT64_F "d", - | ^~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../render.c:43: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../render.c:2494:52: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 2494 | FormatString(gradient_size_str,"%" MAGICK_INT64_F "dx%" MAGICK_INT64_F "d", - | ^~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../render.c:43: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../render.c:2494:52: warning: too many arguments for format [-Wformat-extra-args] - 2494 | FormatString(gradient_size_str,"%" MAGICK_INT64_F "dx%" MAGICK_INT64_F "d", - | ^~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o semaphore.obj -c ../semaphore.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../semaphore.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o signature.obj -c ../signature.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../signature.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o shear.obj -c ../shear.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../shear.c:44: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o statistics.obj -c ../statistics.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../statistics.c:17: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o tempfile.obj -c ../tempfile.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../tempfile.c:12: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o texture.obj -c ../texture.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../texture.c:16: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o timer.obj -c ../timer.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../timer.c:38: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o tsd.obj -c ../tsd.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../tsd.c:15: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o transform.obj -c ../transform.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../transform.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o type.obj -c ../type.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../type.c:37: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o unix_port.obj -c ../unix_port.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../unix_port.c:36: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o version.obj -c ../version.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../version.c:34: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o widget.obj -c ../widget.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../widget.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o xwindow.obj -c ../xwindow.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../xwindow.c:37: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o utility.obj -c ../utility.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../utility.c:39: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../utility.c: In function ‘GmMagickSpawnVP’: -../utility.c:4046:37: warning: passing argument 3 of ‘spawnvp’ from incompatible pointer type [-Wincompatible-pointer-types] - 4046 | status = spawnvp(_P_WAIT, file, (const char * const *) argv); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ - | | - | const char * const* -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/nt_base.h:26, - from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:222, - from ../utility.c:39: -/usr/share/mingw-w64/include/process.h:198:74: note: expected ‘char * const*’ but argument is of type ‘const char * const*’ - 198 | _CRTIMP intptr_t __cdecl spawnvp(int,const char *_Filename,char *const _ArgList[]) __MINGW_ATTRIB_DEPRECATED_MSVC2005; - | ~~~~~~~~~~~~^~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/magick/compiler/gcc -I../../../../include/magick/os/WIN32 -I../../../../include/magick -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../supportApp/GraphicsMagickSrc/ttf/include -o analyze_Win32.obj -c ../analyze_Win32.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../analyze_Win32.c:17: -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -/builds/DATAnet/adurl/.cache/adsupport-master/include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o Magick.dll -shared -Wl,--out-implib,libMagick.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ animate.obj annotate.obj attribute.obj average.obj bit_stream.obj blob.obj cdl.obj channel.obj color.obj colormap.obj colorspace.obj color_lookup.obj command.obj compare.obj composite.obj compress.obj confirm_access.obj constitute.obj decorate.obj delegate.obj deprecate.obj describe.obj display.obj draw.obj effect.obj enhance.obj enum_strings.obj error.obj export.obj floats.obj fx.obj gem.obj gradient.obj hclut.obj image.obj import.obj list.obj locale.obj log.obj magic.obj magick.obj magick_endian.obj map.obj memory.obj module.obj monitor.obj montage.obj nt_base.obj nt_feature.obj omp_data_view.obj operator.obj paint.obj pixel_cache.obj pixel_iterator.obj plasma.obj PreRvIcccm.obj profile.obj quantize.obj random.obj registry.obj render.obj resize.obj resource.obj segment.obj semaphore.obj shear.obj signature.obj statistics.obj tempfile.obj texture.obj timer.obj transform.obj tsd.obj type.obj unix_port.obj utility.obj version.obj widget.obj xwindow.obj analyze_Win32.obj -lbzlib -llcms -lttf -lzlib -ladvapi32 -luser32 -lgdi32 -lws2_32 -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/magick/O.windows-x64-mingw' -make -C ./filters install -make -C ./coders install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../.. -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' -mkdir -p O.Common -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' -mkdir -p O.Common -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../.. \ - T_A=linux-x86_64 install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF static.d ../static.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -MM -MF analyze.d ../analyze.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF yuv.d ../yuv.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xwd.d ../xwd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xtrn.d ../xtrn.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xpm.d ../xpm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xcf.d ../xcf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -c ../analyze.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xc.d ../xc.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xbm.d ../xbm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -/usr/bin/ar -rc libfilters.a analyze.o -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -/usr/bin/ranlib libfilters.a -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF x.d ../x.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -g++ -o libfilters.so -shared -fPIC -Wl,-hlibfilters.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 analyze.o -lMagick -lttf -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wpg.d ../wpg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ - T_A=windows-x64-mingw install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wmf.d ../wmf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF webp.d ../webp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wbmp.d ../wbmp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF viff.d ../viff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -MM -MF analyze.d -MT analyze.obj ../analyze.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vid.d ../vid.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vicar.d ../vicar.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uyvy.d ../uyvy.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF url.d ../url.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uil.d ../uil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF txt.d ../txt.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ttf.d ../ttf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF topol.d ../topol.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tim.d ../tim.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tile.d ../tile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tiff.d ../tiff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tga.d ../tga.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -D_MAGICKLIB_ -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/lcms/inc -o analyze.obj -c ../analyze.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../analyze.c:30: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF svg.d ../svg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sun.d ../sun.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o filters.dll -shared -Wl,--out-implib,libfilters.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ analyze.obj -lMagick -lttf -lws2_32 -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/filters/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF stegano.d ../stegano.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sgi.d ../sgi.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sfw.d ../sfw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sct.d ../sct.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rle.d ../rle.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rla.d ../rla.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rgb.d ../rgb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pwp.d ../pwp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF psd.d ../psd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps3.d ../ps3.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps2.d ../ps2.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps.d ../ps.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF preview.d ../preview.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pnm.d ../pnm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF png.d ../png.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF plasma.d ../plasma.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pix.d ../pix.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pict.d ../pict.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdf.d ../pdf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdb.d ../pdb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcx.d ../pcx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcl.d ../pcl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcd.d ../pcd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF palm.d ../palm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF otb.d ../otb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF null.d ../null.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mvg.d ../mvg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mtv.d ../mtv.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF msl.d ../msl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpr.d ../mpr.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpeg.d ../mpeg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpc.d ../mpc.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mono.d ../mono.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF miff.d ../miff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF meta.d ../meta.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF matte.d ../matte.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mat.d ../mat.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF map.d ../map.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mac.d ../mac.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF logo.d ../logo.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF locale.d ../locale.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF label.d ../label.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jpeg.d ../jpeg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jp2.d ../jp2.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jnx.d ../jnx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jbig.d ../jbig.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF info.d ../info.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF identity.d ../identity.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF icon.d ../icon.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF html.d ../html.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hrz.d ../hrz.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF histogram.d ../histogram.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hdf.d ../hdf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gray.d ../gray.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gradient.d ../gradient.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gif.d ../gif.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fpx.d ../fpx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fits.d ../fits.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fax.d ../fax.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ept.d ../ept.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF emf.d ../emf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dpx.d ../dpx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dps.d ../dps.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dib.d ../dib.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcraw.d ../dcraw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcm.d ../dcm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cut.d ../cut.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cmyk.d ../cmyk.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF clipboard.d ../clipboard.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cineon.d ../cineon.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF caption.d ../caption.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cals.d ../cals.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF bmp.d ../bmp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avs.d ../avs.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avi.d ../avi.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF art.d ../art.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../art.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../avs.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../avi.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cals.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../caption.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cineon.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../clipboard.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cmyk.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../bmp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../cut.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dcraw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dcm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dib.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dps.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../emf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ept.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../fax.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../fits.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../fpx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../gif.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../gradient.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../dpx.c -In file included from /usr/include/string.h:495, - from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:126, - from ../dpx.c:123: -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3865:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3865:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3866:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3866:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3891:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3891:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3895:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3895:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3896:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3896:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3897:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3897:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3910:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3910:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3911:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3911:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3912:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3912:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3913:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3913:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3914:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3914:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3915:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3915:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3921:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3921:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3922:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘strncpy’, - inlined from ‘WriteDPXImage’ at ../dpx.c:3922:3: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin_strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../hdf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../gray.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../hrz.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../histogram.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../html.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../icon.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../identity.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../info.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jbig.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jnx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jp2.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../label.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../jpeg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../locale.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mac.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../logo.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../map.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../matte.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mat.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../meta.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mono.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mpc.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../miff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mpr.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mpeg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mtv.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../mvg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../null.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../otb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../palm.c -../palm.c:395:3: warning: ‘PalmPalette’ defined but not used [-Wunused-const-variable=] - 395 | PalmPalette[256][3] = - | ^~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../msl.c -In file included from /usr/include/string.h:495, - from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:126, - from ../msl.c:39: -In function ‘strncpy’, - inlined from ‘MSLStartElement’ at ../msl.c:3262:36: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:10: warning: ‘__builtin___strncpy_chk’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../msl.c: In function ‘MSLStartElement’: -../msl.c:3258:41: note: length computed here - 3258 | len = (int) strlen( value ); - | ^~~~~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pcl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pcd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pdb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pcx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pdf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pix.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pict.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:67, - from ../pict.c:38: -../pict.c: In function ‘WritePICTImage’: -../../../../include/magick/symbols.h:552:22: warning: argument 1 value ‘18446744073709551488’ exceeds maximum object size 9223372036854775807 [-Walloc-size-larger-than=] - 552 | #define MagickMalloc GmMagickMalloc -../../../../include/magick/memory.h:47:12: note: in expansion of macro ‘MagickMalloc’ - 47 | ((type) MagickMalloc((size_t) (size)))) - | ^~~~~~~~~~~~ -../pict.c:1654:12: note: in expansion of macro ‘MagickAllocateMemory’ - 1654 | scanline=MagickAllocateMemory(unsigned char *,row_bytes); - | ^~~~~~~~~~~~~~~~~~~~ -../../../../include/magick/symbols.h:552:22: note: in a call to allocation function ‘GmMagickMalloc’ declared here - 552 | #define MagickMalloc GmMagickMalloc - | ^~~~~~~~~~~~~~ -../../../../include/magick/memory.h:24:4: note: in expansion of macro ‘MagickMalloc’ - 24 | *MagickMalloc(const size_t size) MAGICK_FUNC_MALLOC MAGICK_FUNC_ALLOC_SIZE_1ARG(1), - | ^~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../plasma.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pnm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../preview.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ps.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ps2.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ps3.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../psd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../pwp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../png.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../rla.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../rgb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sct.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sfw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../rle.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../stegano.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sgi.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../sun.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tga.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../svg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tim.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../topol.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../ttf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../txt.c -../txt.c: In function ‘ReadTXTImage’: -../txt.c:940:25: warning: comparison between pointer and zero character constant [-Wpointer-compare] - 940 | if (draw_info->text != '\0') - | ^~ -../txt.c:940:9: note: did you mean to dereference the pointer? - 940 | if (draw_info->text != '\0') - | ^ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../tiff.c -In file included from ../../../../include/os/Linux/jpeglib.h:27, - from ../tiff.c:78: -../../../../include/os/Linux/jmorecfg.h:248: warning: "EXTERN" redefined - 248 | #define EXTERN(type) extern type - | -In file included from ../tiff.c:64: -../../../../include/os/Linux/tiffio.h:91: note: this is the location of the previous definition - 91 | # define EXTERN extern - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../url.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../uil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../uyvy.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../vicar.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../vid.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../wbmp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../viff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../wmf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../webp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../x.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../wpg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xbm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xc.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xcf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xtrn.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xpm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../xwd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../yuv.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/Linux -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -c ../static.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -/usr/bin/ar -rc libcoders.a art.o avi.o avs.o bmp.o cals.o caption.o cineon.o clipboard.o cmyk.o cut.o dcm.o dcraw.o dib.o dps.o dpx.o emf.o ept.o fax.o fits.o fpx.o gif.o gradient.o gray.o hdf.o histogram.o hrz.o html.o icon.o identity.o info.o jbig.o jnx.o jp2.o jpeg.o label.o locale.o logo.o mac.o map.o mat.o matte.o meta.o miff.o mono.o mpc.o mpeg.o mpr.o msl.o mtv.o mvg.o null.o otb.o palm.o pcd.o pcl.o pcx.o pdb.o pdf.o pict.o pix.o plasma.o png.o pnm.o preview.o ps.o ps2.o ps3.o psd.o pwp.o rgb.o rla.o rle.o sct.o sfw.o sgi.o stegano.o sun.o svg.o tga.o tiff.o tile.o tim.o topol.o ttf.o txt.o uil.o url.o uyvy.o vicar.o vid.o viff.o wbmp.o webp.o wmf.o wpg.o x.o xbm.o xc.o xcf.o xpm.o xtrn.o xwd.o yuv.o static.o -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -/usr/bin/ranlib libcoders.a -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -g++ -o libcoders.so -shared -fPIC -Wl,-hlibcoders.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 art.o avi.o avs.o bmp.o cals.o caption.o cineon.o clipboard.o cmyk.o cut.o dcm.o dcraw.o dib.o dps.o dpx.o emf.o ept.o fax.o fits.o fpx.o gif.o gradient.o gray.o hdf.o histogram.o hrz.o html.o icon.o identity.o info.o jbig.o jnx.o jp2.o jpeg.o label.o locale.o logo.o mac.o map.o mat.o matte.o meta.o miff.o mono.o mpc.o mpeg.o mpr.o msl.o mtv.o mvg.o null.o otb.o palm.o pcd.o pcl.o pcx.o pdb.o pdf.o pict.o pix.o plasma.o png.o pnm.o preview.o ps.o ps2.o ps3.o psd.o pwp.o rgb.o rla.o rle.o sct.o sfw.o sgi.o stegano.o sun.o svg.o tga.o tiff.o tile.o tim.o topol.o ttf.o txt.o uil.o url.o uyvy.o vicar.o vid.o viff.o wbmp.o webp.o wmf.o wpg.o x.o xbm.o xc.o xcf.o xpm.o xtrn.o xwd.o yuv.o static.o -lbzlib -ljbig -ljp2 -lMagick -lpng -lttf -lwebp -lwmf -ltiff -ljpeg -lxml2 -lnanohttp_stream -lzlib -Wl,-Bdynamic -lpthread -lm -lrt -ldl -lgcc -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../.. \ - T_A=windows-x64-mingw install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF static.d -MT static.obj ../static.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF yuv.d -MT yuv.obj ../yuv.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xwd.d -MT xwd.obj ../xwd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xpm.d -MT xpm.obj ../xpm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xtrn.d -MT xtrn.obj ../xtrn.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xcf.d -MT xcf.obj ../xcf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xc.d -MT xc.obj ../xc.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF xbm.d -MT xbm.obj ../xbm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF x.d -MT x.obj ../x.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wpg.d -MT wpg.obj ../wpg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wmf.d -MT wmf.obj ../wmf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF webp.d -MT webp.obj ../webp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF wbmp.d -MT wbmp.obj ../wbmp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF viff.d -MT viff.obj ../viff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vid.d -MT vid.obj ../vid.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF vicar.d -MT vicar.obj ../vicar.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uyvy.d -MT uyvy.obj ../uyvy.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF uil.d -MT uil.obj ../uil.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF url.d -MT url.obj ../url.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF txt.d -MT txt.obj ../txt.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ttf.d -MT ttf.obj ../ttf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF topol.d -MT topol.obj ../topol.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tim.d -MT tim.obj ../tim.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tile.d -MT tile.obj ../tile.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tiff.d -MT tiff.obj ../tiff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF tga.d -MT tga.obj ../tga.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF svg.d -MT svg.obj ../svg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sun.d -MT sun.obj ../sun.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF stegano.d -MT stegano.obj ../stegano.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sgi.d -MT sgi.obj ../sgi.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sfw.d -MT sfw.obj ../sfw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF sct.d -MT sct.obj ../sct.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rle.d -MT rle.obj ../rle.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rla.d -MT rla.obj ../rla.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF rgb.d -MT rgb.obj ../rgb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pwp.d -MT pwp.obj ../pwp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF psd.d -MT psd.obj ../psd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps3.d -MT ps3.obj ../ps3.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps2.d -MT ps2.obj ../ps2.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ps.d -MT ps.obj ../ps.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF preview.d -MT preview.obj ../preview.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pnm.d -MT pnm.obj ../pnm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF png.d -MT png.obj ../png.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF plasma.d -MT plasma.obj ../plasma.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pix.d -MT pix.obj ../pix.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pict.d -MT pict.obj ../pict.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdf.d -MT pdf.obj ../pdf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pdb.d -MT pdb.obj ../pdb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcx.d -MT pcx.obj ../pcx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcl.d -MT pcl.obj ../pcl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF pcd.d -MT pcd.obj ../pcd.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF palm.d -MT palm.obj ../palm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF otb.d -MT otb.obj ../otb.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF null.d -MT null.obj ../null.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mvg.d -MT mvg.obj ../mvg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mtv.d -MT mtv.obj ../mtv.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF msl.d -MT msl.obj ../msl.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpr.d -MT mpr.obj ../mpr.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpeg.d -MT mpeg.obj ../mpeg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mpc.d -MT mpc.obj ../mpc.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mono.d -MT mono.obj ../mono.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF miff.d -MT miff.obj ../miff.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF meta.d -MT meta.obj ../meta.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF matte.d -MT matte.obj ../matte.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mat.d -MT mat.obj ../mat.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF map.d -MT map.obj ../map.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF mac.d -MT mac.obj ../mac.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF logo.d -MT logo.obj ../logo.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF locale.d -MT locale.obj ../locale.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF label.d -MT label.obj ../label.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jpeg.d -MT jpeg.obj ../jpeg.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jp2.d -MT jp2.obj ../jp2.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jnx.d -MT jnx.obj ../jnx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF jbig.d -MT jbig.obj ../jbig.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF info.d -MT info.obj ../info.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF identity.d -MT identity.obj ../identity.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF icon.d -MT icon.obj ../icon.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF html.d -MT html.obj ../html.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hrz.d -MT hrz.obj ../hrz.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF histogram.d -MT histogram.obj ../histogram.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF hdf.d -MT hdf.obj ../hdf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gray.d -MT gray.obj ../gray.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gradient.d -MT gradient.obj ../gradient.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF gif.d -MT gif.obj ../gif.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fpx.d -MT fpx.obj ../fpx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fits.d -MT fits.obj ../fits.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF fax.d -MT fax.obj ../fax.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF ept.d -MT ept.obj ../ept.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF emf.d -MT emf.obj ../emf.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dpx.d -MT dpx.obj ../dpx.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dps.d -MT dps.obj ../dps.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dib.d -MT dib.obj ../dib.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcraw.d -MT dcraw.obj ../dcraw.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF dcm.d -MT dcm.obj ../dcm.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cut.d -MT cut.obj ../cut.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cmyk.d -MT cmyk.obj ../cmyk.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF clipboard.d -MT clipboard.obj ../clipboard.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cineon.d -MT cineon.obj ../cineon.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF caption.d -MT caption.obj ../caption.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF cals.d -MT cals.obj ../cals.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF bmp.d -MT bmp.obj ../bmp.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avs.d -MT avs.obj ../avs.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF avi.d -MT avi.obj ../avi.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -MM -MF art.d -MT art.obj ../art.c -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o art.obj -c ../art.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../art.c:36: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o avi.obj -c ../avi.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../avi.c:37: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o avs.obj -c ../avs.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../avs.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o cals.obj -c ../cals.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../cals.c:35: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o caption.obj -c ../caption.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../caption.c:37: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o cineon.obj -c ../cineon.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../cineon.c:40: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o clipboard.obj -c ../clipboard.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../clipboard.c:33: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o cmyk.obj -c ../cmyk.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../cmyk.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o bmp.obj -c ../bmp.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../bmp.c:39: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../bmp.c: In function ‘ReadBMPImage’: -../bmp.c:610:9: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 610 | " BMP size: %lu, File size: %" MAGICK_OFF_F "u", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../bmp.c:39: -../../../../include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../bmp.c:610:9: warning: too many arguments for format [-Wformat-extra-args] - 610 | " BMP size: %lu, File size: %" MAGICK_OFF_F "u", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../bmp.c:843:29: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 843 | "File size: Claimed=%lu, Actual=%" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../bmp.c:39: -../../../../include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../bmp.c:843:29: warning: too many arguments for format [-Wformat-extra-args] - 843 | "File size: Claimed=%lu, Actual=%" - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o cut.obj -c ../cut.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../cut.c:36: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dcraw.obj -c ../dcraw.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../dcraw.c:27: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dcm.obj -c ../dcm.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../dcm.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dps.obj -c ../dps.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../dps.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dib.obj -c ../dib.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../dib.c:37: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o emf.obj -c ../emf.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../emf.c:35: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ept.obj -c ../ept.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../ept.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o fax.obj -c ../fax.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../fax.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o dpx.obj -c ../dpx.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../dpx.c:123: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../dpx.c: In function ‘WriteDPXImage’: -../dpx.c:4067:28: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 4067 | (void) fprintf(stderr,"### Descriptor %u offset %u, TellBlob says %" MAGICK_OFF_F "d\n", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../dpx.c:123: -../../../../include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../dpx.c:4067:28: warning: too many arguments for format [-Wformat-extra-args] - 4067 | (void) fprintf(stderr,"### Descriptor %u offset %u, TellBlob says %" MAGICK_OFF_F "d\n", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:4067:28: warning: unknown conversion type character ‘l’ in format [-Wformat=] -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../dpx.c:123: -../../../../include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../dpx.c:4067:28: warning: too many arguments for format [-Wformat-extra-args] - 4067 | (void) fprintf(stderr,"### Descriptor %u offset %u, TellBlob says %" MAGICK_OFF_F "d\n", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:4391:24: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 4391 | (void) fprintf(stderr,"### File length %u, TellBlob says %" MAGICK_OFF_F "d\n", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../dpx.c:123: -../../../../include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../dpx.c:4391:24: warning: too many arguments for format [-Wformat-extra-args] - 4391 | (void) fprintf(stderr,"### File length %u, TellBlob says %" MAGICK_OFF_F "d\n", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:4391:24: warning: unknown conversion type character ‘l’ in format [-Wformat=] -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:205, - from ../dpx.c:123: -../../../../include/magick/magick_types.h:116:28: note: format string is defined here - 116 | # define MAGICK_INT64_F "ll" - | ^ -../dpx.c:4391:24: warning: too many arguments for format [-Wformat-extra-args] - 4391 | (void) fprintf(stderr,"### File length %u, TellBlob says %" MAGICK_OFF_F "d\n", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3865:3: note: in expansion of macro ‘AttributeToString’ - 3865 | AttributeToString(image_info,image,"DPX:file.project.name",dpx_file_info.project_name); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3865:3: note: in expansion of macro ‘AttributeToString’ - 3865 | AttributeToString(image_info,image,"DPX:file.project.name",dpx_file_info.project_name); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3866:3: note: in expansion of macro ‘AttributeToString’ - 3866 | AttributeToString(image_info,image,"DPX:file.copyright",dpx_file_info.copyright); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 200 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3866:3: note: in expansion of macro ‘AttributeToString’ - 3866 | AttributeToString(image_info,image,"DPX:file.copyright",dpx_file_info.copyright); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3891:3: note: in expansion of macro ‘AttributeToString’ - 3891 | AttributeToString(image_info,image,"DPX:source.filename",dpx_source_info.source_image_filename); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3891:3: note: in expansion of macro ‘AttributeToString’ - 3891 | AttributeToString(image_info,image,"DPX:source.filename",dpx_source_info.source_image_filename); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3895:3: note: in expansion of macro ‘AttributeToString’ - 3895 | AttributeToString(image_info,image,"DPX:source.creation.datetime",dpx_source_info.source_image_datetime); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 24 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3895:3: note: in expansion of macro ‘AttributeToString’ - 3895 | AttributeToString(image_info,image,"DPX:source.creation.datetime",dpx_source_info.source_image_datetime); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3896:3: note: in expansion of macro ‘AttributeToString’ - 3896 | AttributeToString(image_info,image,"DPX:source.device.name",dpx_source_info.input_device_name); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3896:3: note: in expansion of macro ‘AttributeToString’ - 3896 | AttributeToString(image_info,image,"DPX:source.device.name",dpx_source_info.input_device_name); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3897:3: note: in expansion of macro ‘AttributeToString’ - 3897 | AttributeToString(image_info,image,"DPX:source.device.serialnumber",dpx_source_info.input_device_serialnumber); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3897:3: note: in expansion of macro ‘AttributeToString’ - 3897 | AttributeToString(image_info,image,"DPX:source.device.serialnumber",dpx_source_info.input_device_serialnumber); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3910:3: note: in expansion of macro ‘AttributeToString’ - 3910 | AttributeToString(image_info,image,"DPX:mp.film.manufacturer.id",dpx_mp_info.film_mfg_id_code); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3910:3: note: in expansion of macro ‘AttributeToString’ - 3910 | AttributeToString(image_info,image,"DPX:mp.film.manufacturer.id",dpx_mp_info.film_mfg_id_code); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3911:3: note: in expansion of macro ‘AttributeToString’ - 3911 | AttributeToString(image_info,image,"DPX:mp.film.type",dpx_mp_info.film_type); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3911:3: note: in expansion of macro ‘AttributeToString’ - 3911 | AttributeToString(image_info,image,"DPX:mp.film.type",dpx_mp_info.film_type); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3912:3: note: in expansion of macro ‘AttributeToString’ - 3912 | AttributeToString(image_info,image,"DPX:mp.perfs.offset",dpx_mp_info.perfs_offset); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 2 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3912:3: note: in expansion of macro ‘AttributeToString’ - 3912 | AttributeToString(image_info,image,"DPX:mp.perfs.offset",dpx_mp_info.perfs_offset); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3913:3: note: in expansion of macro ‘AttributeToString’ - 3913 | AttributeToString(image_info,image,"DPX:mp.prefix",dpx_mp_info.prefix); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 6 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3913:3: note: in expansion of macro ‘AttributeToString’ - 3913 | AttributeToString(image_info,image,"DPX:mp.prefix",dpx_mp_info.prefix); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3914:3: note: in expansion of macro ‘AttributeToString’ - 3914 | AttributeToString(image_info,image,"DPX:mp.count",dpx_mp_info.count); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 4 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3914:3: note: in expansion of macro ‘AttributeToString’ - 3914 | AttributeToString(image_info,image,"DPX:mp.count",dpx_mp_info.count); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3915:3: note: in expansion of macro ‘AttributeToString’ - 3915 | AttributeToString(image_info,image,"DPX:mp.format",dpx_mp_info.format); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3915:3: note: in expansion of macro ‘AttributeToString’ - 3915 | AttributeToString(image_info,image,"DPX:mp.format",dpx_mp_info.format); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3921:3: note: in expansion of macro ‘AttributeToString’ - 3921 | AttributeToString(image_info,image,"DPX:mp.frame.id",dpx_mp_info.frame_id); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 32 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3921:3: note: in expansion of macro ‘AttributeToString’ - 3921 | AttributeToString(image_info,image,"DPX:mp.frame.id",dpx_mp_info.frame_id); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3265:12: warning: ‘strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 3265 | (void) strncpy(member,attribute_->value,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3922:3: note: in expansion of macro ‘AttributeToString’ - 3922 | AttributeToString(image_info,image,"DPX:mp.slate.info",dpx_mp_info.slate_info); - | ^~~~~~~~~~~~~~~~~ -../dpx.c:3263:12: warning: ‘strncpy’ specified bound 100 equals destination size [-Wstringop-truncation] - 3263 | (void) strncpy(member,definition_value_,sizeof(member)); \ - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../dpx.c:3922:3: note: in expansion of macro ‘AttributeToString’ - 3922 | AttributeToString(image_info,image,"DPX:mp.slate.info",dpx_mp_info.slate_info); - | ^~~~~~~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o fits.obj -c ../fits.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../fits.c:40: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ output truncated before terminating nul copying 30 bytes from a string of the same length [-Wstringop-truncation] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ output truncated before terminating nul copying 30 bytes from a string of the same length [-Wstringop-truncation] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ output truncated before terminating nul copying 3 bytes from a string of the same length [-Wstringop-truncation] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../fits.c: In function ‘WriteFITSImage’: -../fits.c:670:9: note: length computed here - 670 | len = strlen(data); - | ^~~~~~~~~~~~ -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../fits.c: In function ‘WriteFITSImage’: -../fits.c:670:9: note: length computed here - 670 | len = strlen(data); - | ^~~~~~~~~~~~ -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../fits.c: In function ‘WriteFITSImage’: -../fits.c:670:9: note: length computed here - 670 | len = strlen(data); - | ^~~~~~~~~~~~ -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../fits.c: In function ‘WriteFITSImage’: -../fits.c:670:9: note: length computed here - 670 | len = strlen(data); - | ^~~~~~~~~~~~ -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../fits.c: In function ‘WriteFITSImage’: -../fits.c:670:9: note: length computed here - 670 | len = strlen(data); - | ^~~~~~~~~~~~ -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../fits.c: In function ‘WriteFITSImage’: -../fits.c:670:9: note: length computed here - 670 | len = strlen(data); - | ^~~~~~~~~~~~ -In function ‘GmInsertRowHDU’, - inlined from ‘WriteFITSImage’ at ../fits.c:663:5: -../fits.c:676:10: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 676 | (void) strncpy(buffer+offset,data,len); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../fits.c: In function ‘WriteFITSImage’: -../fits.c:670:9: note: length computed here - 670 | len = strlen(data); - | ^~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o fpx.obj -c ../fpx.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../fpx.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o gradient.obj -c ../gradient.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../gradient.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o gif.obj -c ../gif.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../gif.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o gray.obj -c ../gray.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../gray.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o hdf.obj -c ../hdf.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../hdf.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o histogram.obj -c ../histogram.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../histogram.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o hrz.obj -c ../hrz.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../hrz.c:34: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o html.obj -c ../html.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../html.c:39: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o icon.obj -c ../icon.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../icon.c:42: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o identity.obj -c ../identity.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../identity.c:13: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o info.obj -c ../info.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../info.c:13: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o jbig.obj -c ../jbig.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../jbig.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../jbig.c:56: -../../../../supportApp/GraphicsMagickSrc/jbig/libjbig/jbig.h:255: warning: ignoring #pragma warning [-Wunknown-pragmas] - 255 | # pragma warning( disable : 4273 ) - | -../../../../supportApp/GraphicsMagickSrc/jbig/libjbig/jbig.h:267: warning: ignoring #pragma warning [-Wunknown-pragmas] - 267 | # pragma warning( disable : 4018 ) - | -../../../../supportApp/GraphicsMagickSrc/jbig/libjbig/jbig.h:268: warning: ignoring #pragma warning [-Wunknown-pragmas] - 268 | # pragma warning( disable : 4244 ) - | -../../../../supportApp/GraphicsMagickSrc/jbig/libjbig/jbig.h:269: warning: ignoring #pragma warning [-Wunknown-pragmas] - 269 | # pragma warning( disable : 4142 ) - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o jnx.obj -c ../jnx.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../jnx.c:35: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o jp2.obj -c ../jp2.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../jp2.c:39: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jasper.h:65, - from ../jp2.c:74: -../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:17:14: note: #pragma message: JAS compiling as DLL import - 17 | # pragma message( "JAS compiling as DLL import" ) - | ^~~~~~~ -../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:38: warning: ignoring #pragma warning [-Wunknown-pragmas] - 38 | # pragma warning(disable : 4013) - | -../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:39: warning: ignoring #pragma warning [-Wunknown-pragmas] - 39 | # pragma warning(disable : 4018) - | -../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:40: warning: ignoring #pragma warning [-Wunknown-pragmas] - 40 | # pragma warning(disable : 4244) - | -../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include/jasper/jas_config.h:41: warning: ignoring #pragma warning [-Wunknown-pragmas] - 41 | # pragma warning(disable : 4715) - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o label.obj -c ../label.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../label.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o jpeg.obj -c ../jpeg.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../jpeg.c:42: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o logo.obj -c ../logo.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../logo.c:42: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o locale.obj -c ../locale.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../locale.c:37: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mac.obj -c ../mac.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../mac.c:35: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o map.obj -c ../map.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../map.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o matte.obj -c ../matte.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../matte.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mat.obj -c ../mat.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../mat.c:39: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o meta.obj -c ../meta.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../meta.c:37: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mono.obj -c ../mono.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../mono.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o miff.obj -c ../miff.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../miff.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../miff.c:57: -../../../../include/bzlib.h:81:14: note: #pragma message: BZIP compiling as DLL import - 81 | # pragma message( "BZIP compiling as DLL import" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mpeg.obj -c ../mpeg.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../mpeg.c:36: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mpc.obj -c ../mpc.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../mpc.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mpr.obj -c ../mpr.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../mpr.c:37: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mtv.obj -c ../mtv.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../mtv.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o mvg.obj -c ../mvg.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../mvg.c:36: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o msl.obj -c ../msl.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../msl.c:39: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../msl.c: In function ‘MSLStartElement’: -../msl.c:3262:36: warning: ‘strncpy’ specified bound depends on the length of the source argument [-Wstringop-overflow=] - 3262 | (void) strncpy(tmp, value, (size_t) (len-1)); - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -../msl.c:3258:41: note: length computed here - 3258 | len = (int) strlen( value ); - | ^~~~~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o null.obj -c ../null.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../null.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o otb.obj -c ../otb.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../otb.c:36: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o palm.obj -c ../palm.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../palm.c:51: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../palm.c:395:3: warning: ‘PalmPalette’ defined but not used [-Wunused-const-variable=] - 395 | PalmPalette[256][3] = - | ^~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pcl.obj -c ../pcl.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pcl.c:43: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pcd.obj -c ../pcd.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pcd.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pcx.obj -c ../pcx.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pcx.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pdb.obj -c ../pdb.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pdb.c:37: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pdf.obj -c ../pdf.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pdf.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pix.obj -c ../pix.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pix.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pict.obj -c ../pict.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pict.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o plasma.obj -c ../plasma.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../plasma.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pnm.obj -c ../pnm.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pnm.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o preview.obj -c ../preview.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../preview.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ps.obj -c ../ps.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../ps.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o png.obj -c ../png.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../png.c:58: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ps2.obj -c ../ps2.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../ps2.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o psd.obj -c ../psd.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../psd.c:39: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ps3.obj -c ../ps3.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../ps3.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o pwp.obj -c ../pwp.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../pwp.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o rgb.obj -c ../rgb.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../rgb.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o rla.obj -c ../rla.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../rla.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o sct.obj -c ../sct.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../sct.c:49: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o rle.obj -c ../rle.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../rle.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o sfw.obj -c ../sfw.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../sfw.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o stegano.obj -c ../stegano.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../stegano.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o sgi.obj -c ../sgi.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../sgi.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o sun.obj -c ../sun.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../sun.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o tga.obj -c ../tga.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../tga.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o svg.obj -c ../svg.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../svg.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o tile.obj -c ../tile.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../tile.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o tim.obj -c ../tim.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../tim.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o topol.obj -c ../topol.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../topol.c:35: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o tiff.obj -c ../tiff.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../tiff.c:41: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o ttf.obj -c ../ttf.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../ttf.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o uil.obj -c ../uil.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../uil.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o txt.obj -c ../txt.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../txt.c:45: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../txt.c: In function ‘ReadTXTImage’: -../txt.c:940:25: warning: comparison between pointer and zero character constant [-Wpointer-compare] - 940 | if (draw_info->text != '\0') - | ^~ -../txt.c:940:9: note: did you mean to dereference the pointer? - 940 | if (draw_info->text != '\0') - | ^ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o url.obj -c ../url.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../url.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o uyvy.obj -c ../uyvy.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../uyvy.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o vicar.obj -c ../vicar.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../vicar.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o vid.obj -c ../vid.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../vid.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o wbmp.obj -c ../wbmp.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../wbmp.c:37: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o viff.obj -c ../viff.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../viff.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o webp.obj -c ../webp.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../webp.c:39: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../supportApp/GraphicsMagickSrc/webp/src/webp/decode.h:17, - from ../webp.c:60: -../../../../supportApp/GraphicsMagickSrc/webp/src/webp/./types.h:45: warning: ignoring #pragma warning [-Wunknown-pragmas] - 45 | # pragma warning( disable : 4273 ) - | -../../../../supportApp/GraphicsMagickSrc/webp/src/webp/./types.h:49:16: note: #pragma message: libwebp compiling as DLL import - 49 | # pragma message( "libwebp compiling as DLL import" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o wmf.obj -c ../wmf.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../wmf.c:40: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftconfig.h:43, - from ../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/freetype.h:34, - from ../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/types.h:28, - from ../wmf.c:74: -../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:309: warning: ignoring #pragma warning [-Wunknown-pragmas] - 309 | # pragma warning( disable : 4273 ) /* Disable the stupid dll linkage warnings */ - | -../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:310: warning: ignoring #pragma warning [-Wunknown-pragmas] - 310 | # pragma warning( disable : 4018 ) - | -../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:311: warning: ignoring #pragma warning [-Wunknown-pragmas] - 311 | # pragma warning( disable : 4244 ) - | -../../../../supportApp/GraphicsMagickSrc/ttf/include/freetype/config/ftoption.h:312: warning: ignoring #pragma warning [-Wunknown-pragmas] - 312 | # pragma warning( disable : 4142 ) - | -In file included from ../wmf.c:75: -../../../../supportApp/GraphicsMagickSrc/wmf/include/libwmf/api.h:31:14: note: #pragma message: WMF compiling as DLL import - 31 | # pragma message( "WMF compiling as DLL import" ) - | ^~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o wpg.obj -c ../wpg.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../wpg.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o x.obj -c ../x.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../x.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../x.c:48:3: warning: ‘WriteXImage’ declared ‘static’ but never defined [-Wunused-function] - 48 | WriteXImage(const ImageInfo *,Image *); - | ^~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xc.obj -c ../xc.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../xc.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xbm.obj -c ../xbm.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../xbm.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xpm.obj -c ../xpm.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../xpm.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xcf.obj -c ../xcf.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../xcf.c:37: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xwd.obj -c ../xwd.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../xwd.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../xwd.c:52:3: warning: ‘WriteXWDImage’ declared ‘static’ but never defined [-Wunused-function] - 52 | WriteXWDImage(const ImageInfo *,Image *); - | ^~~~~~~~~~~~~ -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o xtrn.obj -c ../xtrn.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../xtrn.c:53: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -../xtrn.c: In function ‘ReadXTRNImage’: -../xtrn.c:165:42: warning: format ‘%s’ expects argument of type ‘char *’, but argument 5 has type ‘char (*)[2053]’ [-Wformat=] - 165 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); - | ^~~ ~~~~~~~~~ - | | - | char (*)[2053] -../xtrn.c:165:88: note: format string is defined here - 165 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); - | ~^ - | | - | char * -../xtrn.c:165:42: warning: format ‘%s’ expects argument of type ‘char *’, but argument 5 has type ‘char (*)[2053]’ [-Wformat=] - 165 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); - | ^~~ ~~~~~~~~~ - | | - | char (*)[2053] -../xtrn.c:165:88: note: format string is defined here - 165 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); - | ~^ - | | - | char * -../xtrn.c:195:42: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[2053]’ [-Wformat=] - 195 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1,&filename); - | ^~~ ~~~~~~~~~ - | | - | char (*)[2053] -../xtrn.c:195:66: note: format string is defined here - 195 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1,&filename); - | ~^ - | | - | char * -../xtrn.c:195:42: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[2053]’ [-Wformat=] - 195 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1,&filename); - | ^~~ ~~~~~~~~~ - | | - | char (*)[2053] -../xtrn.c:195:66: note: format string is defined here - 195 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", (MAGICK_SIZE_T *)¶m1,&filename); - | ~^ - | | - | char * -../xtrn.c: In function ‘WriteXTRNImage’: -../xtrn.c:460:46: warning: format ‘%s’ expects argument of type ‘char *’, but argument 5 has type ‘char (*)[2053]’ [-Wformat=] - 460 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", - | ^~~ - 461 | (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); - | ~~~~~~~~~ - | | - | char (*)[2053] -../xtrn.c:460:92: note: format string is defined here - 460 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", - | ~^ - | | - | char * -../xtrn.c:460:46: warning: format ‘%s’ expects argument of type ‘char *’, but argument 5 has type ‘char (*)[2053]’ [-Wformat=] - 460 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", - | ^~~ - 461 | (MAGICK_SIZE_T *)¶m1, (MAGICK_SIZE_T *)¶m2,&filename); - | ~~~~~~~~~ - | | - | char (*)[2053] -../xtrn.c:460:92: note: format string is defined here - 460 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%" MAGICK_SIZE_T_F "x,%s", - | ~^ - | | - | char * -../xtrn.c:503:46: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[2053]’ [-Wformat=] - 503 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", - | ^~~ - 504 | (MAGICK_SIZE_T *)¶m1,&filename); - | ~~~~~~~~~ - | | - | char (*)[2053] -../xtrn.c:503:70: note: format string is defined here - 503 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", - | ~^ - | | - | char * -../xtrn.c:503:46: warning: format ‘%s’ expects argument of type ‘char *’, but argument 4 has type ‘char (*)[2053]’ [-Wformat=] - 503 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", - | ^~~ - 504 | (MAGICK_SIZE_T *)¶m1,&filename); - | ~~~~~~~~~ - | | - | char (*)[2053] -../xtrn.c:503:70: note: format string is defined here - 503 | (void) sscanf(clone_info->filename,"%" MAGICK_SIZE_T_F "x,%s", - | ~^ - | | - | char * -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o static.obj -c ../static.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../static.c:39: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:44:18: note: #pragma message: Magick lib DLL export interface - 44 | # pragma message( "Magick lib DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -D_MINGW -O3 -Wall -DHAVE_VSNPRINTF -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../include/compiler/gcc -I../../../../include/os/WIN32 -I../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../supportApp/GraphicsMagickSrc -I../../../../supportApp/GraphicsMagickSrc/jbig/libjbig -I../../../../supportApp/GraphicsMagickSrc/jp2/src/libjasper/include -I../../../../supportApp/GraphicsMagickSrc/bzlib -I../../../../supportApp/GraphicsMagickSrc/png -I../../../../supportApp/GraphicsMagickSrc/webp/src -I../../../../supportApp/GraphicsMagickSrc/ttf/include -I../../../../supportApp/GraphicsMagickSrc/wmf/include -o yuv.obj -c ../yuv.c -In file included from ../../../../supportApp/GraphicsMagickSrc/magick/studio.h:196, - from ../yuv.c:38: -../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../include/magick/common.h:39:17: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:56:15: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^~~~~~~ -../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o coders.dll -shared -Wl,--out-implib,libcoders.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ art.obj avi.obj avs.obj bmp.obj cals.obj caption.obj cineon.obj clipboard.obj cmyk.obj cut.obj dcm.obj dcraw.obj dib.obj dps.obj dpx.obj emf.obj ept.obj fax.obj fits.obj fpx.obj gif.obj gradient.obj gray.obj hdf.obj histogram.obj hrz.obj html.obj icon.obj identity.obj info.obj jbig.obj jnx.obj jp2.obj jpeg.obj label.obj locale.obj logo.obj mac.obj map.obj mat.obj matte.obj meta.obj miff.obj mono.obj mpc.obj mpeg.obj mpr.obj msl.obj mtv.obj mvg.obj null.obj otb.obj palm.obj pcd.obj pcl.obj pcx.obj pdb.obj pdf.obj pict.obj pix.obj plasma.obj png.obj pnm.obj preview.obj ps.obj ps2.obj ps3.obj psd.obj pwp.obj rgb.obj rla.obj rle.obj sct.obj sfw.obj sgi.obj stegano.obj sun.obj svg.obj tga.obj tiff.obj tile.obj tim.obj topol.obj ttf.obj txt.obj uil.obj url.obj uyvy.obj vicar.obj vid.obj viff.obj wbmp.obj webp.obj wmf.obj wpg.obj x.obj xbm.obj xc.obj xcf.obj xpm.obj xtrn.obj xwd.obj yuv.obj static.obj -lbzlib -ljbig -ljp2 -lMagick -lpng -lttf -lwebp -lwmf -ltiff -ljpeg -lxml2 -lnanohttp_stream -lzlib -luser32 -lgdi32 -loleaut32 -lws2_32 -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/coders/O.windows-x64-mingw' -make -C ./Magick++ install -make -C ./lib install -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../../../.. -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' -make[5]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' -mkdir -p O.Common -make[5]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib' -make -C O.linux-x86_64 -f ../Makefile TOP=../../../../.. \ - T_A=linux-x86_64 install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF TypeMetric.d ../TypeMetric.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Thread.d ../Thread.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Pixels.d ../Pixels.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Options.d ../Options.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF STL.d ../STL.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Montage.d ../Montage.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF ImageRef.d ../ImageRef.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Geometry.d ../Geometry.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Image.d ../Image.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Functions.d ../Functions.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Exception.d ../Exception.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Color.d ../Color.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Drawable.d ../Drawable.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF CoderInfo.d ../CoderInfo.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF BlobRef.d ../BlobRef.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Blob.d ../Blob.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -mkdir ../../../../../include/Magick++ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../BlobRef.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Blob.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../CoderInfo.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Color.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Exception.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Functions.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Geometry.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Drawable.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../ImageRef.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Montage.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Options.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Image.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Pixels.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../Thread.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../TypeMetric.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/Linux -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -c ../STL.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -/usr/bin/ar -rc libMagick++.a Blob.o BlobRef.o CoderInfo.o Color.o Drawable.o Exception.o Functions.o Geometry.o Image.o ImageRef.o Montage.o Options.o Pixels.o STL.o Thread.o TypeMetric.o -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -/usr/bin/ranlib libMagick++.a -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -g++ -o libMagick++.so -shared -fPIC -Wl,-hlibMagick++.so -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -rdynamic -m64 Blob.o BlobRef.o CoderInfo.o Color.o Drawable.o Exception.o Functions.o Geometry.o Image.o ImageRef.o Montage.o Options.o Pixels.o STL.o Thread.o TypeMetric.o -lMagick -lcoders -Wl,-Bdynamic -lXext -lpthread -lm -lrt -ldl -lgcc -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../../../.. \ - T_A=windows-x64-mingw install -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF TypeMetric.d -MT TypeMetric.obj ../TypeMetric.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF STL.d -MT STL.obj ../STL.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Thread.d -MT Thread.obj ../Thread.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Options.d -MT Options.obj ../Options.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Pixels.d -MT Pixels.obj ../Pixels.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Montage.d -MT Montage.obj ../Montage.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF ImageRef.d -MT ImageRef.obj ../ImageRef.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Image.d -MT Image.obj ../Image.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Geometry.d -MT Geometry.obj ../Geometry.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Functions.d -MT Functions.obj ../Functions.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Exception.d -MT Exception.obj ../Exception.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Drawable.d -MT Drawable.obj ../Drawable.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Color.d -MT Color.obj ../Color.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF CoderInfo.d -MT CoderInfo.obj ../CoderInfo.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF BlobRef.d -MT BlobRef.obj ../BlobRef.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -MM -MF Blob.d -MT Blob.obj ../Blob.cpp -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o BlobRef.obj -c ../BlobRef.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../BlobRef.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../BlobRef.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../BlobRef.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Blob.obj -c ../Blob.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Blob.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Blob.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Blob.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o CoderInfo.obj -c ../CoderInfo.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../CoderInfo.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../CoderInfo.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../CoderInfo.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Color.obj -c ../Color.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Color.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Color.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Color.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Exception.obj -c ../Exception.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Exception.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Exception.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Exception.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Functions.obj -c ../Functions.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Functions.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Functions.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Functions.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Geometry.obj -c ../Geometry.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Geometry.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Geometry.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Geometry.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Drawable.obj -c ../Drawable.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Drawable.cpp:12: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Drawable.cpp:12: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Drawable.cpp:12: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o ImageRef.obj -c ../ImageRef.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Magick++/ImageRef.h:14, - from ../ImageRef.cpp:13: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Magick++/ImageRef.h:14, - from ../ImageRef.cpp:13: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Magick++/ImageRef.h:14, - from ../ImageRef.cpp:13: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Montage.obj -c ../Montage.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Montage.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Montage.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Montage.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Options.obj -c ../Options.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Options.cpp:13: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Options.cpp:13: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Options.cpp:13: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Image.obj -c ../Image.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Image.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Image.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Image.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Pixels.obj -c ../Pixels.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Pixels.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Pixels.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Pixels.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o STL.obj -c ../STL.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Magick++/Image.h:11, - from ../STL.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Magick++/Image.h:11, - from ../STL.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Magick++/Image.h:11, - from ../STL.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o TypeMetric.obj -c ../TypeMetric.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Magick++/TypeMetric.h:13, - from ../TypeMetric.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Magick++/TypeMetric.h:13, - from ../TypeMetric.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Magick++/TypeMetric.h:13, - from ../TypeMetric.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DWIN64 -D_VISUALC_ -D_DLL -D_MAGICKDLL_ -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../../../include/compiler/gcc -I../../../../../include/os/WIN32 -I../../../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -I../../../../../supportApp/GraphicsMagickSrc -I../../../../../supportApp/GraphicsMagickSrc/lcms/include -I../../../../../supportApp/GraphicsMagickSrc/Magick++/lib -o Thread.obj -c ../Thread.cpp -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Magick++/Thread.h:13, - from ../Thread.cpp:11: -../../../../../include/magick/common.h:34: warning: ignoring #pragma warning [-Wunknown-pragmas] - 34 | # pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */ - | -../../../../../include/magick/common.h:66: warning: ignoring #pragma warning [-Wunknown-pragmas] - 66 | # pragma warning(disable : 4018) - | -../../../../../include/magick/common.h:67: warning: ignoring #pragma warning [-Wunknown-pragmas] - 67 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:68: warning: ignoring #pragma warning [-Wunknown-pragmas] - 68 | # pragma warning(disable : 4244) - | -../../../../../include/magick/common.h:69: warning: ignoring #pragma warning [-Wunknown-pragmas] - 69 | # pragma warning(disable : 4275) /* non dll-interface class 'foo' used as base for dll-interface class 'bar' */ - | -../../../../../include/magick/common.h:70: warning: ignoring #pragma warning [-Wunknown-pragmas] - 70 | # pragma warning(disable : 4800) - | -../../../../../include/magick/common.h:71: warning: ignoring #pragma warning [-Wunknown-pragmas] - 71 | # pragma warning(disable : 4786) - | -../../../../../include/magick/common.h:72: warning: ignoring #pragma warning [-Wunknown-pragmas] - 72 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../Magick++/Thread.h:13, - from ../Thread.cpp:11: -../Magick++/Include.h:203: warning: ignoring #pragma warning [-Wunknown-pragmas] - 203 | # pragma warning(disable : 4996) /* function deprecation warnings */ - | -In file included from ../../../../../include/magick/api.h:53, - from ../Magick++/Include.h:39, - from ../Magick++/Thread.h:13, - from ../Thread.cpp:11: -../../../../../include/magick/common.h:39:60: note: #pragma message: Magick lib DLL import interface - 39 | # pragma message( "Magick lib DLL import interface" ) - | ^ -../../../../../include/magick/common.h:56:61: note: #pragma message: Magick module DLL export interface - 56 | # pragma message( "Magick module DLL export interface" ) - | ^ -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make[6]: Entering directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o Magick++.dll -shared -Wl,--out-implib,libMagick++.dll.a -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ Blob.obj BlobRef.obj CoderInfo.obj Color.obj Drawable.obj Exception.obj Functions.obj Geometry.obj Image.obj ImageRef.obj Montage.obj Options.obj Pixels.obj STL.obj Thread.obj TypeMetric.obj -lMagick -lcoders -lws2_32 -make[6]: Leaving directory '/builds/DATAnet/adurl/.cache/adsupport-master/supportApp/GraphicsMagickSrc/Magick++/lib/O.windows-x64-mingw' -make -C /builds/DATAnet/adurl/.cache/adcore-R3-11 install -make -C ./configure install -make -C ./ADApp install -make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/configure' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../.. -make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/configure' -make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/configure' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../.. -make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/configure' -make[2]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/configure' -mkdir -p O.Common -make[2]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/configure' -make -C O.linux-x86_64 -f ../Makefile TOP=../.. \ - T_A=linux-x86_64 install -make -C ./Db install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/Db' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/Db' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/Db' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/Db' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/Db' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/Db' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease -make -C O.windows-x64-mingw -f ../Makefile TOP=../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/Db/O.linux-x86_64' -mkdir ../../../db -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/Db/O.linux-x86_64' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/convertRelease.pl checkRelease -make -C ./ADSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myAttributeFunctions.d ../myAttributeFunctions.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myTimeStampSource.d ../myTimeStampSource.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DUSE_TYPED_RSET -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parseAreaPrefixes.d ../parseAreaPrefixes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF functAttribute.d ../functAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF PVAttribute.d ../PVAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF CCDMultiTrack.d ../CCDMultiTrack.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF paramAttribute.d ../paramAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ADDriver.d ../ADDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF asynNDArrayDriver.d ../asynNDArrayDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArray.d ../NDArray.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayPool.d ../NDArrayPool.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttributeList.d ../NDAttributeList.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttribute.d ../NDAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -Installing CFG file ../../../cfg/commonLibraryMakefile -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -mkdir ../../../cfg -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -Installing CFG file ../../../cfg/commonDriverMakefile -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -mkdir ../../../dbd -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -mkdir ../../../include -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Nothing to be done for 'install'. -make -C ./op install -make[3]: Nothing to be done for 'install'. -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDAttributeList.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDArray.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../asynNDArrayDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../ADDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../paramAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../CCDMultiTrack.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../PVAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDArrayPool.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../functAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../myTimeStampSource.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DUSE_TYPED_RSET -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../parseAreaPrefixes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ADCore_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../myAttributeFunctions.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -/usr/bin/ar -rc libADBase.a NDAttribute.o NDAttributeList.o NDArrayPool.o NDArray.o asynNDArrayDriver.o ADDriver.o paramAttribute.o CCDMultiTrack.o PVAttribute.o functAttribute.o parseAreaPrefixes.o myTimeStampSource.o myAttributeFunctions.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -/usr/bin/ranlib libADBase.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -g++ -o libADBase.so -shared -fPIC -Wl,-hlibADBase.so -L/builds/DATAnet/adurl/.cache/adcore-R3-11/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-11/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 NDAttribute.o NDAttributeList.o NDArrayPool.o NDArray.o asynNDArrayDriver.o ADDriver.o paramAttribute.o CCDMultiTrack.o PVAttribute.o functAttribute.o parseAreaPrefixes.o myTimeStampSource.o myAttributeFunctions.o -lasyn -ldbRecStd -ldbCore -lca -lCom -lxml2 -Wl,-Bdynamic -lpthread -lreadline -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myTimeStampSource.d -MT myTimeStampSource.obj ../myTimeStampSource.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -DUSE_TYPED_RSET -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF parseAreaPrefixes.d -MT parseAreaPrefixes.obj ../parseAreaPrefixes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF myAttributeFunctions.d -MT myAttributeFunctions.obj ../myAttributeFunctions.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF functAttribute.d -MT functAttribute.obj ../functAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF PVAttribute.d -MT PVAttribute.obj ../PVAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF CCDMultiTrack.d -MT CCDMultiTrack.obj ../CCDMultiTrack.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF paramAttribute.d -MT paramAttribute.obj ../paramAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ADDriver.d -MT ADDriver.obj ../ADDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArray.d -MT NDArray.obj ../NDArray.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF asynNDArrayDriver.d -MT asynNDArrayDriver.obj ../asynNDArrayDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayPool.d -MT NDArrayPool.obj ../NDArrayPool.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttributeList.d -MT NDAttributeList.obj ../NDAttributeList.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDAttribute.d -MT NDAttribute.obj ../NDAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDAttributeList.obj -c ../NDAttributeList.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDAttribute.obj -c ../NDAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDArray.obj -c ../NDArray.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o asynNDArrayDriver.obj -c ../asynNDArrayDriver.cpp -../asynNDArrayDriver.cpp: In member function ‘virtual asynStatus asynNDArrayDriver::createFilePath(const char*, int)’: -../asynNDArrayDriver.cpp:134:11: warning: unused variable ‘saveptr’ [-Wunused-variable] - 134 | char* saveptr; - | ^~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ADDriver.obj -c ../ADDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o paramAttribute.obj -c ../paramAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o CCDMultiTrack.obj -c ../CCDMultiTrack.cpp -../CCDMultiTrack.cpp: In member function ‘void CCDMultiTrack::storeTrackAttributes(NDAttributeList*)’: -../CCDMultiTrack.cpp:44:38: warning: unknown conversion type character ‘z’ in format [-Wformat=] - 44 | epicsSnprintf(Buf, 10, "%zd", TrackNum + 1); - | ^ -../CCDMultiTrack.cpp:44:36: warning: too many arguments for format [-Wformat-extra-args] - 44 | epicsSnprintf(Buf, 10, "%zd", TrackNum + 1); - | ^~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o PVAttribute.obj -c ../PVAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDArrayPool.obj -c ../NDArrayPool.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -DUSE_TYPED_RSET -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o parseAreaPrefixes.obj -c ../parseAreaPrefixes.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o functAttribute.obj -c ../functAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o myTimeStampSource.obj -c ../myTimeStampSource.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ADCore_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o myAttributeFunctions.obj -c ../myAttributeFunctions.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o ADBase.dll -shared -Wl,--out-implib,libADBase.dll.a -L/builds/DATAnet/adurl/.cache/adcore-R3-11/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ NDAttribute.obj NDAttributeList.obj NDArrayPool.obj NDArray.obj asynNDArrayDriver.obj ADDriver.obj paramAttribute.obj CCDMultiTrack.obj PVAttribute.obj functAttribute.obj parseAreaPrefixes.obj myTimeStampSource.obj myAttributeFunctions.obj -lasyn -ldbRecStd -ldbCore -lca -lCom -lxml2 -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -mkdir ../../../bin -mkdir ../../../bin/windows-x64-mingw -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ADSrc/O.windows-x64-mingw' -make -C ./ntndArrayConverterSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ntndArrayConverter_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ntndArrayConverter.d ../ntndArrayConverter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_ntndArrayConverter_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../ntndArrayConverter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -/usr/bin/ar -rc libntndArrayConverter.a ntndArrayConverter.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -/usr/bin/ranlib libntndArrayConverter.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -g++ -o libntndArrayConverter.so -shared -fPIC -Wl,-hlibntndArrayConverter.so -L/builds/DATAnet/adurl/.cache/adcore-R3-11/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-11/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 ntndArrayConverter.o -lADBase -lpvData -lnt -lasyn -ldbRecStd -ldbCore -lca -lCom -Wl,-Bdynamic -lpthread -lreadline -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ntndArrayConverter_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF ntndArrayConverter.d -MT ntndArrayConverter.obj ../ntndArrayConverter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_ntndArrayConverter_API -D_MINGW -O3 -Wall -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o ntndArrayConverter.obj -c ../ntndArrayConverter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o ntndArrayConverter.dll -shared -Wl,--out-implib,libntndArrayConverter.dll.a -L/builds/DATAnet/adurl/.cache/adcore-R3-11/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ ntndArrayConverter.obj -lADBase -lpvData -lnt -lasyn -ldbRecStd -ldbCore -lca -lCom -lws2_32 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/ntndArrayConverterSrc/O.windows-x64-mingw' -make -C ./pluginSrc install -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.linux-x86_64 ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/makeMakefile.pl O.windows-x64-mingw ../../.. -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc' -make[3]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc' -mkdir -p O.Common -make[3]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc' -make -C O.linux-x86_64 -f ../Makefile TOP=../../.. \ - T_A=linux-x86_64 install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileTIFF.d ../NDFileTIFF.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNexus.d ../NDFileNexus.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginPva.d ../NDPluginPva.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNetCDF.d ../NDFileNetCDF.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileJPEG.d ../NDFileJPEG.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Layout.d ../NDFileHDF5Layout.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5LayoutXML.d ../NDFileHDF5LayoutXML.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5AttributeDataset.d ../NDFileHDF5AttributeDataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Dataset.d ../NDFileHDF5Dataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5.d ../NDFileHDF5.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNull.d ../NDFileNull.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileMagick.d ../NDFileMagick.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFile.d ../NDPluginFile.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPluginFileReader.d ../NDPosPluginFileReader.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPlugin.d ../NDPosPlugin.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCodec.d ../NDPluginCodec.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttrPlot.d ../NDPluginAttrPlot.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTransform.d ../NDPluginTransform.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStdArrays.d ../NDPluginStdArrays.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTimeSeries.d ../NDPluginTimeSeries.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginScatter.d ../NDPluginScatter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStats.d ../NDPluginStats.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROIStat.d ../NDPluginROIStat.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROI.d ../NDPluginROI.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlayTextFont.d ../NDPluginOverlayTextFont.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginProcess.d ../NDPluginProcess.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlay.d ../NDPluginOverlay.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fft.d ../fft.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginGather.d ../NDPluginGather.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFFT.d ../NDPluginFFT.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginColorConvert.d ../NDPluginColorConvert.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayRing.d ../NDArrayRing.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCircularBuff.d ../NDPluginCircularBuff.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF throttler.d ../throttler.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttribute.d ../NDPluginAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginDriver.d ../NDPluginDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -perl -CSD /builds/DATAnet/adurl/.cache/base-R7.0.3.1/bin/linux-x86_64/dbdExpand.pl -I. -I.. -I../O.Common -I../../../dbd -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/dbd -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/dbd -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/dbd -I/builds/DATAnet/adurl/.cache/asyn-R4-41/dbd -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/dbd -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/dbd -I/builds/DATAnet/adurl/.cache/adcore-R3-11/dbd -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/dbd -o NDPluginSupport.dbd NDPluginAttribute.dbd NDPluginCircularBuff.dbd NDPluginColorConvert.dbd NDPluginFFT.dbd NDPluginGather.dbd NDPluginOverlay.dbd NDPluginProcess.dbd NDPluginROI.dbd NDPluginROIStat.dbd NDPluginScatter.dbd NDPluginStats.dbd NDPluginStdArrays.dbd NDPluginTimeSeries.dbd NDPluginTransform.dbd NDPluginAttrPlot.dbd NDPluginCodec.dbd -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../throttler.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDArrayRing.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginCircularBuff.cpp -In file included from /usr/include/string.h:495, - from ../NDPluginCircularBuff.cpp:11: -In function ‘char* strncpy(char*, const char*, size_t)’, - inlined from ‘virtual asynStatus NDPluginCircularBuff::writeOctet(asynUser*, const char*, size_t, size_t*)’ at ../NDPluginCircularBuff.cpp:343:14: -/usr/include/x86_64-linux-gnu/bits/string_fortified.h:106:34: warning: ‘char* __builtin_strncpy(char*, const char*, long unsigned int)’ specified bound 100 equals destination size [-Wstringop-truncation] - 106 | return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest)); - | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginFFT.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -gcc -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../fft.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginGather.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginColorConvert.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginOverlayTextFont.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginProcess.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginROI.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginOverlay.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginScatter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginROIStat.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginStdArrays.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginStats.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginTimeSeries.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginAttrPlot.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginCodec.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPosPlugin.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPosPluginFileReader.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginTransform.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileNull.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginFile.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileMagick.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5Dataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5AttributeDataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5LayoutXML.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileJPEG.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileNetCDF.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileHDF5Layout.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileTIFF.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDFileNexus.cpp -../NDFileNexus.cpp: In member function ‘int NDFileNexus::processNode(xmlNode*, NDArray*)’: -../NDFileNexus.cpp:423:36: warning: ‘__builtin___sprintf_chk’ may write a terminating nul past the end of the destination [-Wformat-overflow=] - 423 | sprintf(this->dataPath, "%c%s", '/', dPath); - | ^ -In file included from /usr/include/stdio.h:867, - from ../NDFileNexus.cpp:12: -/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:34: note: ‘__builtin___sprintf_chk’ output between 2 and 129 bytes into a destination of size 128 - 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, - | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - 37 | __bos (__s), __fmt, __va_arg_pack ()); - | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -D_GNU_SOURCE -D_DEFAULT_SOURCE -DBUILDING_NDPlugin_API -D_X86_64_ -DUNIX -Dlinux -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_NO_DEPRECATED_SYMBOLS -DH5Gopen_vers=2 -mtune=generic -m64 -fPIC -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/Linux -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/Linux -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/Linux -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/Linux -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -c ../NDPluginPva.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -/usr/bin/ar -rc libNDPlugin.a NDPluginDriver.o throttler.o NDPluginAttribute.o NDPluginCircularBuff.o NDArrayRing.o NDPluginColorConvert.o NDPluginFFT.o fft.o NDPluginGather.o NDPluginOverlay.o NDPluginOverlayTextFont.o NDPluginProcess.o NDPluginROI.o NDPluginROIStat.o NDPluginScatter.o NDPluginStats.o NDPluginStdArrays.o NDPluginTimeSeries.o NDPluginTransform.o NDPluginAttrPlot.o NDPluginCodec.o NDPosPlugin.o NDPosPluginFileReader.o NDPluginFile.o NDFileNull.o NDFileMagick.o NDFileHDF5.o NDFileHDF5Dataset.o NDFileHDF5AttributeDataset.o NDFileHDF5LayoutXML.o NDFileHDF5Layout.o NDFileJPEG.o NDFileNetCDF.o NDFileNexus.o NDFileTIFF.o NDPluginPva.o -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -/usr/bin/ranlib libNDPlugin.a -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -g++ -o libNDPlugin.so -shared -fPIC -Wl,-hlibNDPlugin.so -L/builds/DATAnet/adurl/.cache/adcore-R3-11/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adcore-R3-11/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/adsupport-master/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/linux-x86_64 -Wl,-rpath,/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/linux-x86_64 -rdynamic -m64 NDPluginDriver.o throttler.o NDPluginAttribute.o NDPluginCircularBuff.o NDArrayRing.o NDPluginColorConvert.o NDPluginFFT.o fft.o NDPluginGather.o NDPluginOverlay.o NDPluginOverlayTextFont.o NDPluginProcess.o NDPluginROI.o NDPluginROIStat.o NDPluginScatter.o NDPluginStats.o NDPluginStdArrays.o NDPluginTimeSeries.o NDPluginTransform.o NDPluginAttrPlot.o NDPluginCodec.o NDPosPlugin.o NDPosPluginFileReader.o NDPluginFile.o NDFileNull.o NDFileMagick.o NDFileHDF5.o NDFileHDF5Dataset.o NDFileHDF5AttributeDataset.o NDFileHDF5LayoutXML.o NDFileHDF5Layout.o NDFileJPEG.o NDFileNetCDF.o NDFileNexus.o NDFileTIFF.o NDPluginPva.o -lADBase -lasyn -lntndArrayConverter -lnt -lpvDatabase -lpvAccess -lpvData -lnetCDF -lnanohttp_stream -lMagick++ -lcoders -lMagick -ljbig -ljp2 -lbzlib -lpng -lwebp -llcms -lttf -lwmf -lfilters -ltiff -lxml2 -lNeXus -lhdf5 -lhdf5_hl -lblosc -lszip -lzlib -ljpeg -ldbRecStd -ldbCore -lca -lCom -Wl,-Bdynamic -lX11 -lXext -lpthread -lreadline -lm -lrt -ldl -lgcc -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.linux-x86_64' -make -C O.windows-x64-mingw -f ../Makefile TOP=../../.. \ - T_A=windows-x64-mingw install -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileTIFF.d -MT NDFileTIFF.obj ../NDFileTIFF.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginPva.d -MT NDPluginPva.obj ../NDPluginPva.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNexus.d -MT NDFileNexus.obj ../NDFileNexus.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNetCDF.d -MT NDFileNetCDF.obj ../NDFileNetCDF.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileJPEG.d -MT NDFileJPEG.obj ../NDFileJPEG.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Layout.d -MT NDFileHDF5Layout.obj ../NDFileHDF5Layout.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5LayoutXML.d -MT NDFileHDF5LayoutXML.obj ../NDFileHDF5LayoutXML.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5AttributeDataset.d -MT NDFileHDF5AttributeDataset.obj ../NDFileHDF5AttributeDataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5Dataset.d -MT NDFileHDF5Dataset.obj ../NDFileHDF5Dataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileHDF5.d -MT NDFileHDF5.obj ../NDFileHDF5.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileMagick.d -MT NDFileMagick.obj ../NDFileMagick.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDFileNull.d -MT NDFileNull.obj ../NDFileNull.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFile.d -MT NDPluginFile.obj ../NDPluginFile.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPluginFileReader.d -MT NDPosPluginFileReader.obj ../NDPosPluginFileReader.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPosPlugin.d -MT NDPosPlugin.obj ../NDPosPlugin.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCodec.d -MT NDPluginCodec.obj ../NDPluginCodec.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttrPlot.d -MT NDPluginAttrPlot.obj ../NDPluginAttrPlot.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTransform.d -MT NDPluginTransform.obj ../NDPluginTransform.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginTimeSeries.d -MT NDPluginTimeSeries.obj ../NDPluginTimeSeries.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStdArrays.d -MT NDPluginStdArrays.obj ../NDPluginStdArrays.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginStats.d -MT NDPluginStats.obj ../NDPluginStats.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginScatter.d -MT NDPluginScatter.obj ../NDPluginScatter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROIStat.d -MT NDPluginROIStat.obj ../NDPluginROIStat.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginROI.d -MT NDPluginROI.obj ../NDPluginROI.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlayTextFont.d -MT NDPluginOverlayTextFont.obj ../NDPluginOverlayTextFont.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginProcess.d -MT NDPluginProcess.obj ../NDPluginProcess.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginOverlay.d -MT NDPluginOverlay.obj ../NDPluginOverlay.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginGather.d -MT NDPluginGather.obj ../NDPluginGather.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF fft.d -MT fft.obj ../fft.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginFFT.d -MT NDPluginFFT.obj ../NDPluginFFT.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginColorConvert.d -MT NDPluginColorConvert.obj ../NDPluginColorConvert.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDArrayRing.d -MT NDArrayRing.obj ../NDArrayRing.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginCircularBuff.d -MT NDPluginCircularBuff.obj ../NDPluginCircularBuff.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF throttler.d -MT throttler.obj ../throttler.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginAttribute.d -MT NDPluginAttribute.obj ../NDPluginAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -MM -MF NDPluginDriver.d -MT NDPluginDriver.obj ../NDPluginDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o throttler.obj -c ../throttler.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginAttribute.obj -c ../NDPluginAttribute.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginDriver.obj -c ../NDPluginDriver.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDArrayRing.obj -c ../NDArrayRing.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginCircularBuff.obj -c ../NDPluginCircularBuff.cpp -../NDPluginCircularBuff.cpp: In member function ‘virtual asynStatus NDPluginCircularBuff::writeOctet(asynUser*, const char*, size_t, size_t*)’: -../NDPluginCircularBuff.cpp:343:14: warning: ‘char* strncpy(char*, const char*, size_t)’ specified bound 100 equals destination size [-Wstringop-truncation] - 343 | strncpy(triggerCalcInfix_, value, sizeof(triggerCalcInfix_)); - | ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginFFT.obj -c ../NDPluginFFT.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-gcc -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o fft.obj -c ../fft.c -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginGather.obj -c ../NDPluginGather.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginColorConvert.obj -c ../NDPluginColorConvert.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginOverlayTextFont.obj -c ../NDPluginOverlayTextFont.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginProcess.obj -c ../NDPluginProcess.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginOverlay.obj -c ../NDPluginOverlay.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginROI.obj -c ../NDPluginROI.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginScatter.obj -c ../NDPluginScatter.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginROIStat.obj -c ../NDPluginROIStat.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginStdArrays.obj -c ../NDPluginStdArrays.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginStats.obj -c ../NDPluginStats.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginTimeSeries.obj -c ../NDPluginTimeSeries.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginAttrPlot.obj -c ../NDPluginAttrPlot.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginCodec.obj -c ../NDPluginCodec.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPosPlugin.obj -c ../NDPosPlugin.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPosPluginFileReader.obj -c ../NDPosPluginFileReader.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginTransform.obj -c ../NDPluginTransform.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginFile.obj -c ../NDPluginFile.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileNull.obj -c ../NDFileNull.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileMagick.obj -c ../NDFileMagick.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5Dataset.obj -c ../NDFileHDF5Dataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5AttributeDataset.obj -c ../NDFileHDF5AttributeDataset.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5LayoutXML.obj -c ../NDFileHDF5LayoutXML.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5.obj -c ../NDFileHDF5.cpp -../NDFileHDF5.cpp: In member function ‘char* NDFileHDF5::getDimsReport()’: -../NDFileHDF5.cpp:3572:46: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 3572 | epicsSnprintf(strdims+c, maxlen-c, "%6lli,", dimsizes[i].dimsize[j]); - | ^ -../NDFileHDF5.cpp:3572:42: warning: too many arguments for format [-Wformat-extra-args] - 3572 | epicsSnprintf(strdims+c, maxlen-c, "%6lli,", dimsizes[i].dimsize[j]); - | ^~~~~~~~ -In file included from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynStandardInterfaces.h:20, - from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynPortDriver.h:11, - from ../../../include/asynNDArrayDriver.h:7, - from ../NDPluginDriver.h:12, - from ../NDPluginFile.h:7, - from ../NDFileHDF5.h:13, - from ../NDFileHDF5.cpp:28: -../NDFileHDF5.cpp: In member function ‘asynStatus NDFileHDF5::createNewFile(const char*)’: -../NDFileHDF5.cpp:3774:11: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 3774 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynDriver.h:281:70: note: in definition of macro ‘asynPrint’ - 281 | ? pasynTrace->printSource((pasynUser),(reason),__FILE__,__LINE__,__VA_ARGS__) \ - | ^~~~~~~~~~~ -../NDFileHDF5.cpp:3774:60: note: format string is defined here - 3774 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", - | ^ -In file included from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynStandardInterfaces.h:20, - from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynPortDriver.h:11, - from ../../../include/asynNDArrayDriver.h:7, - from ../NDPluginDriver.h:12, - from ../NDPluginFile.h:7, - from ../NDFileHDF5.h:13, - from ../NDFileHDF5.cpp:28: -../NDFileHDF5.cpp:3774:11: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 3774 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynDriver.h:281:70: note: in definition of macro ‘asynPrint’ - 281 | ? pasynTrace->printSource((pasynUser),(reason),__FILE__,__LINE__,__VA_ARGS__) \ - | ^~~~~~~~~~~ -../NDFileHDF5.cpp:3774:79: note: format string is defined here - 3774 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", - | ^ -In file included from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynStandardInterfaces.h:20, - from /builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynPortDriver.h:11, - from ../../../include/asynNDArrayDriver.h:7, - from ../NDPluginDriver.h:12, - from ../NDPluginFile.h:7, - from ../NDFileHDF5.h:13, - from ../NDFileHDF5.cpp:28: -../NDFileHDF5.cpp:3774:11: warning: too many arguments for format [-Wformat-extra-args] - 3774 | "%s%s Warning: failed to set boundary threshod=%llu and alignment=%llu bytes\n", - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/builds/DATAnet/adurl/.cache/asyn-R4-41/include/asynDriver.h:281:70: note: in definition of macro ‘asynPrint’ - 281 | ? pasynTrace->printSource((pasynUser),(reason),__FILE__,__LINE__,__VA_ARGS__) \ - | ^~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileJPEG.obj -c ../NDFileJPEG.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileNetCDF.obj -c ../NDFileNetCDF.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileNexus.obj -c ../NDFileNexus.cpp -../NDFileNexus.cpp: In member function ‘void NDFileNexus::constTextToDataType(char*, int, void*)’: -../NDFileNexus.cpp:703:39: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 703 | sscanf((const char *)inText, "%lld", &i64val); - | ^ -../NDFileNexus.cpp:703:36: warning: too many arguments for format [-Wformat-extra-args] - 703 | sscanf((const char *)inText, "%lld", &i64val); - | ^~~~~~ -../NDFileNexus.cpp:703:39: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 703 | sscanf((const char *)inText, "%lld", &i64val); - | ^ -../NDFileNexus.cpp:703:36: warning: too many arguments for format [-Wformat-extra-args] - 703 | sscanf((const char *)inText, "%lld", &i64val); - | ^~~~~~ -../NDFileNexus.cpp:707:39: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 707 | sscanf((const char *)inText, "%llu", &i64val); - | ^ -../NDFileNexus.cpp:707:36: warning: too many arguments for format [-Wformat-extra-args] - 707 | sscanf((const char *)inText, "%llu", &i64val); - | ^~~~~~ -../NDFileNexus.cpp:707:39: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 707 | sscanf((const char *)inText, "%llu", &i64val); - | ^ -../NDFileNexus.cpp:707:36: warning: too many arguments for format [-Wformat-extra-args] - 707 | sscanf((const char *)inText, "%llu", &i64val); - | ^~~~~~ -../NDFileNexus.cpp: In member function ‘int NDFileNexus::processNode(xmlNode*, NDArray*)’: -../NDFileNexus.cpp:423:36: warning: ‘sprintf’ may write a terminating nul past the end of the destination [-Wformat-overflow=] - 423 | sprintf(this->dataPath, "%c%s", '/', dPath); - | ^ -../NDFileNexus.cpp:423:14: note: ‘sprintf’ output between 2 and 129 bytes into a destination of size 128 - 423 | sprintf(this->dataPath, "%c%s", '/', dPath); - | ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileHDF5Layout.obj -c ../NDFileHDF5Layout.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDFileTIFF.obj -c ../NDFileTIFF.cpp -../NDFileTIFF.cpp: In member function ‘virtual asynStatus NDFileTIFF::openFile(const char*, NDFileOpenMode_t, NDArray*)’: -../NDFileTIFF.cpp:307:69: warning: unknown conversion type character ‘l’ in format [-Wformat=] - 307 | epicsSnprintf(tagString, sizeof(tagString)-1, "%s:%lld", attributeName, value.i64); - | ^ -../NDFileTIFF.cpp:307:63: warning: too many arguments for format [-Wformat-extra-args] - 307 | epicsSnprintf(tagString, sizeof(tagString)-1, "%s:%lld", attributeName, value.i64); - | ^~~~~~~~~ -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -DBUILDING_NDPlugin_API -D_MINGW -O3 -Wall -DPREFIX_MAGICK_SYMBOLS -DHAVE_JPEG -DHAVE_BLOSC -DH5_BUILT_AS_DYNAMIC_LIB -m64 -DEPICS_BUILD_DLL -DEPICS_CALL_DLL -I. -I../O.Common -I. -I. -I.. -I../../../include/compiler/gcc -I../../../include/os/WIN32 -I../../../include -I/builds/DATAnet/adurl/.cache/seq-R2-2-9/include -I/builds/DATAnet/adurl/.cache/sscan-R2-11-5/include -I/builds/DATAnet/adurl/.cache/calc-R3-7-3/include -I/builds/DATAnet/adurl/.cache/asyn-R4-41/include -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/autosave-R5-7-1/include -I/builds/DATAnet/adurl/.cache/busy-R1-7-1/include -I/builds/DATAnet/adurl/.cache/adsupport-master/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/adsupport-master/include -I/builds/DATAnet/adurl/.cache/adcore-R3-11/include -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/compiler/gcc -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include/os/WIN32 -I/builds/DATAnet/adurl/.cache/base-R7.0.3.1/include -o NDPluginPva.obj -c ../NDPluginPva.cpp -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[4]: Entering directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -/usr/bin/x86_64-w64-mingw32-g++ -o NDPlugin.dll -shared -Wl,--out-implib,libNDPlugin.dll.a -L/builds/DATAnet/adurl/.cache/adcore-R3-11/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/asyn-R4-41/lib/windows-x64-mingw -L/builds/DATAnet/adurl/.cache/base-R7.0.3.1/lib/windows-x64-mingw -m64 -static-libgcc -static-libstdc++ NDPluginDriver.obj throttler.obj NDPluginAttribute.obj NDPluginCircularBuff.obj NDArrayRing.obj NDPluginColorConvert.obj NDPluginFFT.obj fft.obj NDPluginGather.obj NDPluginOverlay.obj NDPluginOverlayTextFont.obj NDPluginProcess.obj NDPluginROI.obj NDPluginROIStat.obj NDPluginScatter.obj NDPluginStats.obj NDPluginStdArrays.obj NDPluginTimeSeries.obj NDPluginTransform.obj NDPluginAttrPlot.obj NDPluginCodec.obj NDPosPlugin.obj NDPosPluginFileReader.obj NDPluginFile.obj NDFileNull.obj NDFileMagick.obj NDFileHDF5.obj NDFileHDF5Dataset.obj NDFileHDF5AttributeDataset.obj NDFileHDF5LayoutXML.obj NDFileHDF5Layout.obj NDFileJPEG.obj NDFileNetCDF.obj NDFileNexus.obj NDFileTIFF.obj NDPluginPva.obj -lADBase -lasyn -lntndArrayConverter -lnt -lpvDatabase -lpvAccess -lpvData -lnetCDF -lnanohttp_stream -lMagick++ -lcoders -lMagick -ljbig -ljp2 -lbzlib -lpng -lwebp -llcms -lttf -lwmf -lfilters -ltiff -lxml2 -lNeXus -lhdf5 -lhdf5_hl -lblosc -lszip -lzlib -ljpeg -ldbRecStd -ldbCore -lca -lCom -lws2_32 -luser32 -lgdi32 -loleaut32 -lws2_32 -/usr/bin/x86_64-w64-mingw32-ld: /usr/lib/gcc/x86_64-w64-mingw32/9.3-posix/libgcc_eh.a(unwind-seh.o):(.text+0x3d0): multiple definition of `_Unwind_Resume'; /builds/DATAnet/adurl/.cache/adsupport-master/lib/windows-x64-mingw/libMagick++.dll.a(d000016.o):(.text+0x0): first defined here -collect2: error: ld returned 1 exit status -make[4]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_BUILD:298: NDPlugin.dll] Error 1 -make[4]: Leaving directory '/builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/O.windows-x64-mingw' -make[3]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_ARCHS:58: install.windows-x64-mingw] Error 2 -make[2]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: pluginSrc.install] Error 2 -make[1]: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: ADApp.install] Error 2 -make: *** [/builds/DATAnet/adurl/.cache/base-R7.0.3.1/configure/RULES_DIRS:84: /builds/DATAnet/adurl/.cache/adcore-R3-11.install] Error 2 -DEBUG:__main__:EXEC DONE From bf35aa8f22e743173f0afd2ecb4c8e8a8fe995a1 Mon Sep 17 00:00:00 2001 From: "Heesterman, Peter J" Date: Tue, 23 Aug 2022 16:58:25 +0100 Subject: [PATCH 4/4] Applied executable attribute to .sh scripts. --- .ci-local/adcore_hook.sh | 0 .ci-local/adsupport_hook.sh | 0 .ci-local/adurl_install.sh | 0 .ci-local/area_detector_hook.sh | 0 .ci-local/hackmake.sh | 4 ---- 5 files changed, 4 deletions(-) mode change 100644 => 100755 .ci-local/adcore_hook.sh mode change 100644 => 100755 .ci-local/adsupport_hook.sh mode change 100644 => 100755 .ci-local/adurl_install.sh mode change 100644 => 100755 .ci-local/area_detector_hook.sh delete mode 100644 .ci-local/hackmake.sh diff --git a/.ci-local/adcore_hook.sh b/.ci-local/adcore_hook.sh old mode 100644 new mode 100755 diff --git a/.ci-local/adsupport_hook.sh b/.ci-local/adsupport_hook.sh old mode 100644 new mode 100755 diff --git a/.ci-local/adurl_install.sh b/.ci-local/adurl_install.sh old mode 100644 new mode 100755 diff --git a/.ci-local/area_detector_hook.sh b/.ci-local/area_detector_hook.sh old mode 100644 new mode 100755 diff --git a/.ci-local/hackmake.sh b/.ci-local/hackmake.sh deleted file mode 100644 index 22af01f4..00000000 --- a/.ci-local/hackmake.sh +++ /dev/null @@ -1,4 +0,0 @@ -sed -i -e '/^include \$(TOP)\/ADApp\/commonLibraryMakefile/i ifeq (mingw, \$(findstring mingw, \$(T_A)))' /builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/Makefile -sed -i -e '/^include \$(TOP)\/ADApp\/commonLibraryMakefile/i \ \ USR_LDFLAGS += -Wl,-allow-multiple-definition' /builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/Makefile -sed -i -e '/^include \$(TOP)\/ADApp\/commonLibraryMakefile/i endif' /builds/DATAnet/adurl/.cache/adcore-R3-11/ADApp/pluginSrc/Makefile -